The plugin for uploading.com is not working. I think the uploading.com changes it code once again...
ERROR: No string between 'file_id:' and '.action:' was found.
FRD: 0.83u1
Plugin: uploading.com 1.5.3
example: [
uploading.com]
Here is piece of java script code from the page:
function get_link()
{
var button_label = $('#waitblock').html();
$('#waitblock').html('Loading...');
var r = function(resp)
{
$('#ajax_loading').hide();
$('#waitblock').html('Free Download');
if(resp && resp.link)
{
file_link = resp.link;
$('!waitblock').onclick = function(){download_file();}
}
}
do_request('files', 'get', {action: 'get_link', file_id: 7641000, pass: $('!pass').value}, r);
}