If you want to change the query execution timeout on dedicated server, then you will have to access the
dedicated server with root user via SSH.
In order to edit your php.ini file please execute the command mentioned below:
vim/user/local/lib/php.ini
Now you will have to find the following line in the php.ini file:
max_execution_time = 200
In this line the figure ‘200’ after the sign ‘=’ denotes the time period of 200 seconds. It should be noted that in order to set the desired timeout value you need to change the figure of 200 in above line so that the script will be executed. Suppose you wish to set the time out at 300 seconds, then the above value should be changed to 300. Thus the line will appear as:
max_execution_time = 300
It should be noted that once the change has been made, the file should be saved. It is now time to restart httpd service. In order to restart httpd service, execute that following command:
Service httpd graceful
You will now be able to see the effect of changes after restarting httpd service.
In case you are not able to carry out the above mentioned process, you can always get in touch with technical assistance.