Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\wordpress\wp-includes\class-http.php on line 1610

寵の児 提交于 2019-11-27 12:11:19

问题


I am facing that error while installing Jet pack plugin on my WordPress localhost site. i have search on this site many answer but that not fulfill my requirement


回答1:


Please

  1. locate the file [XAMPP Installation Directory]\php\php.ini (e.g. C:\xampp\php\php.ini)
  2. open php.ini in Notepad or any Text editor
  3. locate the line containing max_execution_time and
  4. increase the value from 30 to some larger number (e.g. set: max_execution_time = 90)
  5. then restart Apache web server from the XAMPP control panel

If there will still be the same error after that, try to increase the value for the max_execution_time further more.




回答2:


@Raphael your solution does work. I encountered the same problem en solved it by increasing the maximum execution time to 180. There is an easier way to do it though:

  1. Open the Xampp control panel
  2. Click on 'config' behind 'Apache'
  3. Select 'PHP (php.ini)' from the dropdown -> A file should now open in your text editor
  4. Press ctrl+f and search for 'max_execution_time', you should fine a line which only says

    max_execution_time=30

  5. Change 30 to a bigger number (180 worked for me), like this:

    max_execution_time=180

  6. Save the file

  7. 'Stop' Apache server
  8. Close Xampp
  9. Restart Xampp
  10. 'Start' Apache server
  11. Update Wordpress from the Admin dashboard
  12. Enjoy ;)



回答3:


If you are simply testing a local dev version of WordPress as I was an hitting timeouts when WordPress tries to update itself you can always disable updates for your local version like so: https://www.wpbeginner.com/wp-tutorials/how-to-disable-automatic-updates-in-wordpress/

Don't do this for a production site!



来源:https://stackoverflow.com/questions/32198287/fatal-error-maximum-execution-time-of-30-seconds-exceeded-in-c-xampp-htdocs-wo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!