php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #12359 Error
Submitted: 2001-07-25 06:11 UTC Modified: 2001-11-11 12:25 UTC
From: lai at norikosakai dot com Assigned:
Status: Not a bug Package: IIS related
PHP Version: 4.0.6 OS: Win2000 adv. server
Private report: No CVE-ID: None
 [2001-07-25 06:11 UTC] lai at norikosakai dot com
This is my php file:

<?php
/* A You have been here... script
   By Neil Edwards
   neiled@clara.net
                                           */


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

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-11-11 12:25 UTC] sander@php.net
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).
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 20:01:28 2024 UTC