malo by to byt na ic.cz
Kód: Vybrať všetko
<?php
$log=fopen("log1.html","a");
if( !$log ) {
or die("couldnt open log");
} else {
fwrite($log, "Date of visit " .date('l dS \of F Y h:i:s A') . ", IP:" . $REMOTE_ADDR .
"<br>");
fclose($log);
}
?>
Kód: Vybrať všetko
Parse error: parse error, unexpected T_LOGICAL_OR in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 4
Kód: Vybrať všetko
<?php
$logfile= '/full_path_to/log.html';
$IP = $_SERVER['REMOTE_ADDR'];
$logdetails= date("F j, Y, g:i a") . ': ' . '<a href=http://dnsstuff.com/tools/city.ch?ip='.$_SERVER['REMOTE_ADDR'].'>'.$_SERVER['REMOTE_ADDR'].'</a>';
$fp = fopen($logfile, "a");
fwrite($fp, $logdetails);
fwrite($fp, "<br>");
fclose($fp);
?>
Kód: Vybrať všetko
Warning: fopen() [function.fopen.php]: open_basedir restriction in effect. File(/full_path_to/log.html) is not within the allowed path(s): (/home/ic/:/home/free/:/disk1/home/ic/:/disk1/home/free/:/tmp:/home/yousers/:/usr/share/php/:/usr/share/fpdf/:/usr/share/fonts/:/usr/share/php/jpgraph/:/usr/share/php/) in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 5
Warning: fopen(/full_path_to/log.html) [function.fopen.php]: failed to open stream: Operation not permitted in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 5
Warning: fwrite(): supplied argument is not a valid stream resource in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 6
Warning: fwrite(): supplied argument is not a valid stream resource in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 7
Warning: fclose(): supplied argument is not a valid stream resource in /home/free/ic.cz/l/laboratorium/root/www/php/ip.php on line 8