Reputation: 8705
All services are running (wamp icon is green) by when I try to turn on phpmyadmin I get this error. What seems to be a problem?
Upvotes: 5
Views: 11870
Reputation: 21
I fixed this with the variables section in phpmyadmin by setting an insanely high number to the timeout. It wouldn't accept '0'.
Upvotes: 2
Reputation: 27295
You can set set max execution time like @HanhNghien said in the comment with in your php.ini.
max_execution_time = 120
max_input_time = 120
But i think the better question is why need phpmyadmin so much time. Perhaps you should check your apache logs and check if there are some errors.
Upvotes: 8