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

前端 未结 5 870
离开以前
离开以前 2020-12-13 18:44

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

5条回答
  •  心在旅途
    2020-12-13 19:25

    @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 ;)

提交回复
热议问题