php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #3343 Files on Win 98 Apache
Submitted: 2000-01-29 00:52 UTC Modified: 2002-10-01 14:06 UTC
From: Decoy_69s at hotmail dot com Assigned:
Status: Wont fix Package: Other
PHP Version: 3.0.14 OS: Windows 98
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 this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: Decoy_69s at hotmail dot com
New email:
PHP Version: OS:

 

 [2000-01-29 00:52 UTC] Decoy_69s at hotmail dot com
I programmed a webforum in PHP and ran it on my linux system in which it ran fine.  I then moved the system to win 98 without changing the code and am having problems with writing and reading to files.  I do not suspect the code.  To check this I created the following code to test it:
<html>
    <head>
        <title>PHP Test</title>
    </head>
<body>
<?php

$filePointer = fopen("test.txt","w")
echo "\$filePointer=$filePointer<br>";

if($filePointer)
{
    fwrite($filePointer,"this is a test");
    fclose($filePointer);
}
?>
</body>
</html>
I received the following error: 
Parse error: parse error in c:\program files\apache group\apache\htdocs\php\test.php3 on line 9

I suspect a configuration in apache that disallows the php code to write to files.  I'm using Apache 1.3.6.  Are there any known issues with it or is there a setting I have to change?  Any help is appreciated.  

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-10-01 14:06 UTC] hholzgra@php.net
We are sorry, but can not support PHP 3 related problems anymore.
Momentum is gathering for PHP 5, and we think supporting PHP 3 will
lead to a waste of resources which we want to put into getting PHP 5
ready. Ofcourse PHP 4 will will continue to be supported for the
forseeable future.

i'd guess some invisible windows control character slipped into that file that confuses the parser on unix ...
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Mar 28 17:01:29 2024 UTC