When I am trying to do this:
$txt = file_get_contents('http://stats.pingdom.com/file');
file_put_contents('/stats/file.html',$txt);
I am getting following error:
Warning: file_put_contents(stats/stats.html) [function.file-put-contents]: failed to open stream: Permission denied in /home/jtf/public_html/index.php on line 2
the folder stats is 777
what am I doing wrong?
thanks