2

I'm successfully debugging PHP from a remote machine. My only problem is the cgi timeout after 30 seconds.

What do I modify and where? I googled a little and found a config file everyone talking about but I don't have it in my system32.

How do I make this timeout be at least 10 minutes? Where is the cgi config?

1 Answer 1

1

You've set your max_execution_time in php.ini to more than 30?
http://www.php.net/manual/en/info.configuration.php#ini.max-execution-time

To find your php.ini file, you can create a php script containing

<?php
phpinfo()

Then search the results for "php.ini", you should get an idea of where PHP is looking to find the file.

From a quick google, IIS timeout is supposedly set to 5 minutes by default so that should not be the issue (unless it was changed at some point).

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.