سلام دوستان.این قطعه کد داخل localhost اجرا میشه ولی وقتی رو فضایه سایتم قرار میدم کار نمیکنه.کسی هست منو راهنمایی کنه؟
PHP:
<?php
set_time_limit(0);
define('BUFSIZ', 4096);
$url = 'http://sample.com/file.zip';
$rfile = fopen($url, 'r');
$lfile = fopen(basename($url), 'w');
while(!feof($rfile))
fwrite($lfile, fread($rfile, BUFSIZ), BUFSIZ);
fclose($rfile);
fclose($lfile);
?>