A layman's solution would be .. to increase the max. script execution time
To do this .. open "php.ini" located in "C:\Windows" folder in notepad.
Scroll down where you find the following text.
Code:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
Change
max_execution_time to 60 or 90 ..as you wish
-----
alibi