3

I'm using Windows 7 64 bit OS.

While installing Opencart I have a error message.

Warning: CURL extension needs to be loaded for OpenCart to work!

This is what I tried:

wampmanager -> PHP -> PHP Extensions -> php_curl / restart wamp server,

and also tried to install curl form http://www.anindya.com/php-5-4-3-and-php-5-3-13-x64-64-bit-for-windows/ both versions "php-5.4.3-Win32-VC9-x64.zip" and "php-5.3.13-Win32-VC9-x64.zip" .

How can I solve this problem?

halfer
  • 19,824
  • 17
  • 99
  • 186
Manish
  • 61
  • 3
  • 7
  • 1
    Goto your `php.ini` file rather than checking through the WAMP UI, find the extensions list, uncomment & restart. use `phpinfo();` on a `test.php` page, and see the loaded extensions. – MackieeE Jan 30 '14 at 12:13
  • What version of WAMP are you using? Wamp 32bit or WAMP 64bit? The curl extension you download, if that is in fact necessary, should match the WAMP not necessarilly the OS's bits – RiggsFolly Jan 30 '14 at 12:38

2 Answers2

0

I´ve never worked with OpenCart but, I usually work with curl and I think you can try to write a simple PHP script outside your OpenCart project to figure out if the problem is with the curl extension installation or with OpenCart.

You can use this simple example to try CURL Example.

halfer
  • 19,824
  • 17
  • 99
  • 186
Tommy
  • 391
  • 1
  • 2
  • 20
0

you need to uncomment the curl extension..

path:-

wamp-->php-->php.ini

and uncomment extension=php_curl.dll

by default its commented e.g. ;extension=php_curl.dll

remove the semi colon from the starting and save file restart your wamp server hope it helps you

frost
  • 1
  • 1