Welcome Guest. Please Login or Register  


You are here: Index > Softaculous Auto Installer > Bugs > Topic : Magento - pdo_mysql/CURL extension not loaded

1


Threaded Mode | Print  

 Magento - pdo_mysql/CURL extension not loaded (51 Replies, Read 91864 times)
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
When trying to install Magento we get the following errors:

The following Errors were found :
           
  • The pdo_mysql extension is not loaded!
  • The CURL extension is not loaded!
That's fair enough but both extensions are loaded and even the Magento system requirements test script works fine.

Any ideas?
IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
Sir please try installing Magento by uploading the Package.
It shouldnt install.
Magento has a long problem of pdo_mysql not working.

Also there might be possibilites of your PHP configuaration being deifferent for cPanel compared to your Accounts PHP configuration though this is not the issue here that appears to me.

Please try installing without Softaculous, my guesses are that it will not install.

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Managed to get a manual install to work OK but Softaculous still brings up the same error. Hmm...
IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
Ok sir.
Can I please have a dummy account.
Softaculous installs Magento on many servers including ours:
http://demo.softaculous.com/enduser/index.php?act=software&soft=67

Our PHP functions that checks the required extensions are as follows:
PHP Code

 //Check whether the Minimum Software configuration matches
function __requirements(){

global 
$__settings$error$software;

//Check the php version
if(version_compare(PHP_VERSION'5.2.0') < 0){
$error[] = '{{err_php}}';
}

//pdo String functions
if(!extension_loaded('pdo_mysql')){
$error[] = '{{err_pdo}}';
}

//iconv Functions
if(!function_exists('iconv')){
$error[] = '{{err_no_iconv}}';
}

if(!
function_exists('imagecreate')){
$error[] = '{{err_gd}}';
}

//CURL String functions
if(!extension_loaded('curl')){
$error[] = '{{err_curl}}';
}

return 
true;





These are standard PHP functions to check the extensions.
I think your cPanel backend PHP is running a different PHP.INI

Could you please confirm the same by checking PHP configuration in the backend.

Edited by alons : July 16, 2009, 3:23 pm

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Sent PM. Thanks for looking in to this :)
IP: --   

Magento - pdo_mysql/CURL extension not loaded
r.fluttaz
Group: Member
Post Group: Newbie
Posts: 5
Status:

boTux.fr
How could we make the softaculous admin use the good php.ini ? via whm ? i can't find this option ... Maybe you can edit softaculous script to check php.ini of the cpanel account, and not the admin one ...

Any ideas to make it works ?

Thanks


-----------------------
</r.fluttaz> @ boTux.fr
IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
Sir it will be fixed in the upcoming update.

Regard,
Alons

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
Updated on 31st July
Please let us know if it fails now.

We have tested it and chaged certain things.

Regards,
Alons

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Sorry for the delay in getting back to you, I've been on holiday.

I just upgraded softalicous and all scripts and went to do another test install but it now fails on:

  • The CURL extension is not loaded!


IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
We had changed the extensions_loaded function to :
PHP Code

 if(!function_exists('curl_init')){
        
$error[] = '{{err_curl}}';
    } 




I will check into it

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
Fluccs
Group: NOC
Post Group: Newbie
Posts: 30
Status:
Ive had this same error reported now too
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Upgraded to 1.9, still getting error

    * The CURL extension is not loaded!
IP: --   

Magento - pdo_mysql/CURL extension not loaded
alons
Group: Administrator
Post Group: Super Member
Posts: 2280
Status:
willdash the Dummy account you sent to me doesnt have permissions to create MySQL accounts as its limit is ZERO - 0

-----------------------
For immediate support please email us at our Support email address. PMs sent to any Softaculous Team member or posting in the forums is not the official way to get support.

Virtualizor - The Next Generation VPS Panel
Webuzo - It is Softaculous Standalone for Enterprises, SMB, Developers. Deploy it on Dedicated Servers, VPS, Virtual Appliances or the Cloud
Pinguzo - Server and Domain Monitoring tool
PopularFX - Marketplace of WordPress, Drupal, Joomla, Bootstrap themes
Remote Installer - Use Softaculous over FTP/FTPS/SFTP
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Sorry, I've just modified the account so it has database support now.
IP: --   

Magento - pdo_mysql/CURL extension not loaded
willdashwood
Group: Member
Post Group: Newbie
Posts: 27
Status:
Still get...

The following Errors were found :
           
  • The CURL extension is not loaded!

:squi:
IP: --   

« Previous    Next »

Threaded Mode | Print  

1


Jump To :


Users viewing this topic
1 guests, 0 users.


All times are GMT. The time now is March 28, 2024, 10:36 am.

  Powered By AEF 1.0.8 © 2007-2008 Electron Inc.Queries: 11  |  Page Created In:0.043