Hey habe nen ganz anders Problem wo ich jetzt mitlerweile 1 1/2 Stunden sitzt aber ich bekomme es einfach nicht hin
in der load.php steht ja folgendes:
Code
if ( $file_free == "1" OR ( $userdata['session_logged_in'] AND $user_traffic > $file_size ) )
{
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"$file_name\"");
readfile($download_dir . "" . $file_path . "/" . $file_name);
}
das habe ich so erweitern:
Code
if ( $file_free == "1" OR ( $userdata['session_logged_in'] AND $user_traffic > $file_size ) OR $userdata['session_logged_in'] AND $user_access > $file_size AND $file_access == "1" )
{
# header("Content-Type: application/octet-stream");
# header("Content-Disposition: attachment; filename=\"$file_name\"");
# readfile($download_dir . "" . $file_path . "/" . $file_name);
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".filesize($download_dir . "" . $file_path . "/" . $file_name));
}
else
{
echo"keine berechtung";
}
Alles anzeigen
doch er ladet die datei trotzdem noch obwohl beim user xyz 0 steht aber der DL eine berechtigung von 1 brauch.
kann mir da einer von euch helfen ?
PS: das ist ein Auszug aus dem Download Mod von Hotschi.