WAMP 2.2e - phpmyadmin Fatal error: maximum run time exceeded 30 seconds

All services are running (wamp icon is green) when I try to enable phpmyadmin. I get this error. What seems to be the problem?

+5
source share
2 answers

You can set the maximum runtime, e.g. @HanhNghien specified in the comment, in php.ini .

max_execution_time = 120
max_input_time = 120

But I think the best question is why phpmyadmin needs so much time. Perhaps you should check your apache logs and check if there are any errors.

+7
source

I fixed this using the variable section in phpmyadmin by setting an insanely high number in timeout. He would not accept "0".

+2

All Articles