Error installing eCommerce - Mollie iDEAL Payments

Permalink
Hello,

I have got the following error when I try to install. I also posted this in support, but just in case someone had the same thing.

Catchable fatal error: Object of class CoreCommerceIdealPackage could not be converted to string in /home/sites/site44808/web/concrete/libraries/3rdparty/adodb/adodb.inc.php on line 1015


It looks like it is installed but I cannot select it in Payement Methods.

 
studio4graphics replied on at Permalink Reply
I have tried to fix it by manually placing the files in the "models" and "libraries".

In "payement & sales taxes" I then saw the Mollie Ideal method and could install it. Now I can select it. So it seems to work now.
NUL76 replied on at Permalink Reply
NUL76
For anyone having this issue, it's a small fix in the install function of the controller. The static add method for the CoreCommercePaymentMethods needs 5 parameters. It's missing one.

public function install() {
  $pkg = parent::install();
  Loader::model('payment/method','core_commerce');
  CoreCommercePaymentMethod::add('ideal', 'Mollie iDeal', false, NULL, $pkg);
}