banwara / vinaget-script

Automatically exported from code.google.com/p/vinaget-script
0 stars 0 forks source link

download file not working #11

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
hi ,

i change index.php to dl.php in class.php 

copy this code to dl.php

<?php

ob_start();
error_reporting (E_ALL);
ob_implicit_flush (TRUE);
ignore_user_abort (0);
if( !ini_get('safe_mode') ){
            set_time_limit(30);
} 

include("class.php");
$obj = new stream_get(); 

if ($obj->Deny == false && isset($_POST['urllist'])) $obj->main();

ob_end_flush();
?>

but nothing work correct, its work fine with defualt index.php but not working 
with this code ? 

what im missing 

BEST REGARDS 

Original issue reported on code.google.com by r.spirid...@gmail.com on 2 Aug 2012 at 6:05