to fix the problem with users not being able to download files even though guests are allowed to ...
go to dl_files.php, search for
Code:
if ($bbuserinfo['userid']) {
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';
}
else {
$download = 'You must be logged in to download files';
}
replace with
Code:
if ($file['approved'])
$download = '<a href="./downloads.php?do=file&id='.$file['id'].'&act=down">Download Here</a>';
else
$download = 'This file must be approved before it can be downloaded';