I get:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\classes\Session.php on line 189
In my php.ini
I have already set the maximum execution time to maximum.
How do I fix this error?
I get:
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\classes\Session.php on line 189
In my php.ini
I have already set the maximum execution time to maximum.
How do I fix this error?
What error? (missing information in question)
First check what limit You really have:
echo ini_get('max_execution_time');
Limit can be set in php.ini or .htaccess or in PHP code (set_time_limit(30)) - check all places.
Limit in .htaccess can block PHP code setting.
Clearing browser cache, local storage for site http://localhost/phpmyadmin/ was enough to resolve this issue for me. As I tested it first in incognito mode there was no issue in incognito mode.