Updating WordPress on local server (max execution time)
for temporarily increasing your max execution time you can use ini_set() in your php page
ini_set('max_execution_time', 300); //300 seconds = 5 minutes
otherwise, you will need to...