Error In wordpress while installing Plugin or updating?

by 4 replies
5
I am trying to install plugin in Wordpress but this error occurred
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\wordpress\wp-includes\cl... on line 1078
#website design #error #installing #plugin #updating #wordpress
  • It could just be that the plugin takes a long time to install, and your host's max exec time is low. What plugin is it?
  • what type of plugin it is?
  • It looks you're on a local server - try changing the execution time limit. Look at max upload size limit also. Also this can happen if you try to upload a rar or a wrong package so check the install zip if it's ok.
  • You've got a few options here to increase the amount of time available for script execution.

    In php.ini
    Code:
    max_execution_time = 300
    or

    In php code
    Code:
    ini_set('max_execution_time', 300);

Next Topics on Trending Feed