Trying to Open A File On A Linux Box. The File is 190mb and I am getting the following error:
"File size limit exceeded"
I thought it wasnt an issue as long as the file was under 2gig?
Anyone have any clue what I might be doing wrong? Below is the code I am using to open the file.
$filepath = "/var/mail/tempFile.txt";
if (!($File = fopen($filepath, "r"))) exit("File Not Found.");
Thanks in advance.......