Okay, so this problem will seem a little convoluted at first, so try and keep up
I am running a PHP script which is doing some updating to our SQL database. Every so often this PHP script will output its status, and all-in-all it takes about 1 hour for this script to finish the work that it is does.
We have a test server and a production server.
When I run this particular script on our test server, it will run perfectly for about 45 minutes, and then suddenly it will give me an error stating:
"Fatal error: Maximum execution time of 30 seconds exceeded in importusers.php on line 235"
First of all, I didn't know that there was a maximum execution time for PHP scripts to run. Second of all, why would it give me this error saying that it had exceeded the 30 second limit if it is already 45 minutes into the process? It doesn't make much sense to me.
Anyways, I ran phpinfo() and checked where the php.ini file that it references is. It is in the "/etc/" directory. I went there and edited the max_execution_time variable to be 300. I then restarted the server and ran phpinfo() again. But according to phpinfo() the max_execution_time is still 30 seconds! How can that be? I know I edited the correct php.ini file, and I have it open in front of me right now. It says 300 seconds. How could the php.ini file and phpinfo() disagree?
Anyways, all of that is just the problems I am having on the test server.
Now we come to the production server:
Whenever I run this same script on the production server, I simply don't get any output. If you remember, I said that the script outputs its status every once in awhile so that I know how things are going. Well, running it on the production server it simply doesn't give me any output at all! However, when I place random "exit" statements throughout the PHP script to see what is going on, it will output stuff as it exits. Why is it doing this? How can I get it to do the output on the fly on the production server? (I am calling flush() after every echo and print statement.)
So, all in all, I need to somehow fix this 30 second issue on the test server (and possibly on the production server...I can't tell because there is no output) and the output on the production server. Any advice?