i am installing th paypal s开发者_C百科dk kit and getting an error
INSTALLATION ERROR: Missing required PHP extention(s) for WPS Toolkit: curl
you have to enable CURL with php.
uncomment the line ;extension=php_curl.dll
in php.ini and restart apache
Looks like you might not have CURL. Check your php.ini file and make sure this line is present
extension=php_curl.dll
Make sure there is no semicolon before it. Then restart Apache
EDIT
Create a new file and put it in your webroot. Put the following command in that file and load it
<?php
phpinfo();
This will show all the modules that are loaded for your installation. Search for the section curl
. If it doesn't show up then you're editing the wrong php.ini
.
The php.ini
path is listed at the top. Open that up and do the needful.
精彩评论