Jump to content

[SOLVED] fopen Frustration


jays_rhino

Recommended Posts

Hello, I am having trouble with a ridiculously easy script, and I am hoping you can help. Here is the code I am having trouble with.

	if(!file_exists("Batch/TheReport.txt"))
{
	$Error = 1;
	$ErrorReason = "There is no file<br>";
}

if(!$file = fopen("Batch/TheReport.txt", "w"))
{
	$Error = 1;
	$ErrorReason .= "Can't Open The File<br>";
}

 

When I ran this on my local windows server it worked just fine, but when I uploaded it to our linux server, it passes the first test of recognizing the file is there, but it can't open it. I have made sure that the permissions are set properly so that I am able to write to the file but still no luck. Do any of you know what I might need to look at that would cause this to work diferrently from a windows server to a linux server? Thanks in advance.

Link to comment
https://forums.phpfreaks.com/topic/59139-solved-fopen-frustration/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.