Hi all,
I'm working on a PHP script that takes a long time to run, I set up my PHP.ini with the following lines:

max_execution_time = 3000 ; Maximum execution time of each script, in seconds
max_input_time = 3000 ; Maximum amount of time each script may spend parsing request data
memory_limit = 208M ; Maximum amount of memory a script may consume (8MB)

I then restart Apache, but it still seems to time out well before the limit I set. Any ideas?