Reputation: 1231
I used WAMP 3.0 for my local environment (Windows 7). I didn't change anything on the environment, and the "php artisan" command suddenly became very slow. The command would not return with a display within minutes.
I switched back and forth on PHP, 5.6.16 and 7.0.0, both supported in WAMP 3.0. And they are all the same. How can I solve this problem? Thanks!
Upvotes: 1
Views: 627
Reputation: 1124
There are a number of reasons why WAMP could be running slow. Please refer to this page on some things to try to correct that:
https://www.devside.net/wamp-server/wamp-is-running-very-slow
For me, what helped was disabling cgi_module in Apache. This can be done by:
Click the green "W" -> Apache -> Apache Modules -> Uncheck: cgi_module.
Upvotes: 2