I am trying to install plugin in Wordpress but this error occured Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\htdocs\wordpress\wp-includes\cl… on line 1078
to increase Maximum execution time, check the ‘php.ini’ on xampp folder. Here’s the path: C:\xampp\apache\bin\php.ini Edit line 244 (for editing, must use Notepad or any script editor available in your computer. Don’t use Office Word) max_execution_time = 30 ; Maximum execution time of each script, in seconds To max_execution_time = 300 ; Maximum execution time of each script, in seconds Then save the file (! important reminder: file should end in ‘ini’ extension) although this is a solution to the exact error, the issue still lies with the plugin not executing, so test it somewhere else and if it still does not work as expected go and ask the developer.
If you're hosted on someone else's server (IOW, not running this on your own computer) you probably can't get to php.ini, so put this at the top of index.php ini_set('max_execution_time', 300); PHP:
Unzip the plugin and copy it over to the plugins folder, then activate it from the wordpress backend.