The "curl" extension file must be loaded

Using XAMPP 1.6.7 I have installed the community version of Magento. But there seems to be a problem. I am getting the error "The extension file" curl "must be loaded." On the other computer, everything seems fine.

(other computer)
Intel (R) Pentium (R) Dual CPU, E2140 @ 1.60Hz,
1.60 GHz. 504MB RAM
and XP professional 2002 sp2

My computer is less powerful (Inet Pentium 4 1.6 GHz with sp2.)

Please help me, thanks.

+1


source to share


4 answers


From http://www.menyhart.net/blog/developer-stuff/enabling-curl-on-xampp/



In "xampp-win32-1.6.2-installer.exe" you will have 4 php files to edit:

C: \ XAMPP \ Apache \ Bin \ php.ini
C: \ XAMPP \ PHP \ php.ini
C: \ XAMPP \ PHP \ php4 \ php.ini
C: \ xampp \ php \ php4 \ php4.ini

Open the files one at a time. With Notepad ++ Press Ctrl F And search \ Find "cUrl", you will see "; extension = php_curl.dll" all you need to do is DELETE ";" from all 4 files Make them:
extension = php_curl.dll And restart the Xampp Server. Curl support will now be enabled.

+6


source


Change xampp / php / php.ini - change line:

;extension=php_curl.dll

      

to

extension=php_curl.dll

      



(just remove ;

before the line)

Remember to restart your server before trying to install Magento again.

See http://www.magentocommerce.com/wiki/general/installing_on_windows_with_xampp_and_wamp for details

+1


source


Thanks for the help,

I am using xampp 1.7.3 and just need to edit only C: \ xampp \ php \ php.ini and it works.

Don't forget to restart xmapp. :)

+1


source


For XAMPP 1.7x users only one file is required to edit. Just change the file php.ini

to uncomment ;extension=php_curl.dll

on extension=php_curl.dll

and save it. You also need to restart Apache server from XAMPP control panel.

+1


source







All Articles