"Benedict" <[EMAIL PROTECTED]> wrote:

 
> I searched through all possible /var/log/ files and I can see no trace at
> all of any php logging activity.
> I turned all imaginable error logging options to ON in the /etc/php.ini but
> still no logging occurs.
> Here is the pertaining part of the file:
> 
> error_reporting  =  E_ALL & ~E_NOTICE

This is error reporting which is send either to browser either to log file.
 
> ; Log errors to specified file.
> error_log = /var/log/httpd/error_log

Error file should be here..... 
 
> ; Log errors to syslog (Event Log on NT, not valid in Windows 95).
> error_log = syslog

.....or here , You must decide Yourself.
 

OK, let's test if cookie is sent anyway:

create custom php file (let's say cookie.php)


<?php
setcookie("test_cookie",time(),time()+999999999,"/","$HTTP_HOST_VARS") ;

if (!$test_cookie) 
        {
        echo "qrteczka, nie ma ciacha!";
        }
        else
                {
                echo "I love cookie and OxyGen :)";
                }


?>

try to reload this page to get any information 
as $test_cookie will not be accessible with the first request.


Piotras






 









---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to