Hi Andrew, do you remember the download allowance problem I mentioned before?
I edited local_links.php file, moved these codes
PHP Code:
// Use filesize recorded in database to check that user has sufficient allowance to complete the download
$allow = check_user_allowances($linksize, $linkid);
if (!$allow['can_download']) {
eval(standard_error($allow['errormessage']));
exit;
}
before these codes
PHP Code:
if (!$links_permissions["can_access_link"]) {
ldmjump_access_error();
exit;
}
now everything goes OK.