I have a small website on a small companies hosting server. They have PHP Version 4.3.8 running on a SunOS system which I understand is an older text-based UNIX that runs on Sun SPARC (whatever all this means).
In testing out a simple guestbook which should write data to a guestbook.txt file, I keep getting an error message. My code on line 75 is:
$fp=fopen("guestbook.txt","a");
The error message I get on this line is:
Warning: fopen(guestbook.txt): failed to open stream: Permission denied in /u1/st/city/username/public_html/guestbook.php on line 75
The "guestbook.txt" file is on the server in the same directory as my "guestbook.php" file.
Any help would be appreciated.