1

On the Ubercart module, whenever I enable PayPal it gives me this error:

PayPal WPP requires the PHP cURL library. (Currently using cURL Not found)

I have no idea...
Can some one please tell me how to handle this problem...

Note: OS-windows 7, Drupal version:6

Kushal
  • 2,605
  • 4
  • 22
  • 23

4 Answers4

1
Enter
WampServer on your taskbar
PHP
Php Extentions
enable php_curl

It's work.
GIPSSTAR
  • 2,050
  • 1
  • 25
  • 20
0

PayPal requires an outside connection to the internet for the exchange of data. WAMP doesn't provide it ( referring to Ubercart website )

  • It works with XAMPP (tested by me, from Wamp exported same files and db to Xampp)

  • It should work when you upload to the real site(reported by some users).

edoni
  • 1
0

You need to enable curl in your PHP setting files.

If its a shared hosting, do it by contacting your webservice.

Depending upon what your software is, in Wamp, your do it by clicking on that task icon -> PHP settings -> Curl

linuxeasy
  • 6,269
  • 7
  • 33
  • 40
0

I had same problem yesterday. Solution (Worked for me):

1.- Uncomment the following line in php/php.ini

;extension=php_curl.dll

2.- Restart Apache

It's probably the step after TerryE's solution.

Ulises Layera
  • 874
  • 3
  • 9
  • 13