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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: lai at norikosakai dot com
New email:
PHP Version: OS:

 

 [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

Pull Requests

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: Sun Dec 22 11:01:30 2024 UTC