First solution: Modify php.ini file and set as below: max_execution_time = 360 ; # Maximum execution time of each script, in seconds //360 seconds = 6 minutes Second solution: Add code line at the end of wp-config.php ini_set(’max_execution_time’, 360);
Browsing tag: wampserver
CURL is not enabled by default in WAMP. Every php programmer have to use CURL to make remote connection. The steps are as follows : 1) Close WAMP (if running) 2) Navigate to WAMP\bin\php\(your version of php)\ 3) edit php.ini 4) Search for curl, uncomment extension=php_curl.dll 5) Navigate to WAMP\bin\Apache\(your version of apache)\bin\ 6) edit
After run composer by command php composer.phar install I got in a console an error ” You must enable the openssl extension to download files via https„. Problem: ssl_module in my fresh WampServer installation was disabled. Solution: Find line ;extension=php_openssl.dll in wamp/bin/php/php#.#.##/php.ini and uncomment it, by removing „;”.