'How to increase request timeout in IIS7.0 by php script

How to increase script execution time. I have already use this function in my script.

ignore_user_abort(true);
set_time_limit (10800);
ini_set('max_execution_time', 10800);
ini_set('max_input_time', 10800);
ini_set('max_input_nesting_level', 10800);
ini_set('max_input_vars', 10800);

I have not server access for change anything and For your information my PHP script Running without safe mode. So what I do for increase script execution time. Any suggestion for me...



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source