ID: 12359
Updated by: sander
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Bogus
Bug Type: IIS related
Operating System: Win2000 adv. server
PHP Version: 4.0.6
New Comment:

The webserver probably hasn't sufficient permissions to read the file. 
Ask further support-questions on the appropriate mailinglist (see 
http://www.php.net/support.php).

Previous Comments:
------------------------------------------------------------------------

[2001-07-25 06:11:48] [EMAIL PROTECTED]

This is my php file:

<?php
/* A You have been here... script
   By Neil Edwards
   [EMAIL PROTECTED]
                                           */


if ($Test != '')   //if there is a cookie stored
{
$Test++;   //increase the value of $Test by 1
SetCookie("Test",$Test, time()+3600000);   //Set the cookie with the name
}
else  //else if the cookie does not exist
{
SetCookie("Test",1, time()+3600000);  //Create one with the value of 1
}
?>

<?php
// Put this somewhere else in your page
echo("You have been here ");  //Display You have been here
echo $Test;   //$Test
echo (" times");   //times. This is all on one line
?>

When I open any php file have this error:

Warning: Failed opening '\\laiserver\Web Space\Ronald\test.php' for inclusion 
(include_path='') in Unknown on line 0

Where can I fix the problem

------------------------------------------------------------------------



Edit this bug report at http://bugs.php.net/?id=12359&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to