short script for checking out who is checking me out
<?php
$addr= $_SERVER['REMOTE_ADDR'];
$today = date("m.d.y");
$fil=fopen("$today.log", "a+");
fputs($fil, "$addr\n");
fclose($fil);
?>
gives me :
Warning: fopen("01.10.03.log", "a+") - Permission denied
P.S. It doesnt create the file- if I create the file with that name manualy itworks fine, otherwise - error.
Is it some server settings that preventing it?