Reviews

Current Version

Review posted by jonghdesign on at

Does work after an adjustment

jonghdesign
On install the following error occures:

Catchable fatal error: Object of class CoreCommerceIdealPackage could not be converted to string in DOMAIN/public_html/concrete/libraries/3rdparty/adodb/adodb.inc.php on line 978.

The forum item on this helped me. Please do as followed:


Open the file "/packages/core_commerce_icepay/controller.php" and edit the following:

ORIGINAL

--------------------------
public function install() {
$pkg = parent::install();
Loader::model('payment/method','core_commerce');
CoreCommercePaymentMethod::add('icepay', 'ICEPAY Payment Gateway', false, $pkg);
}

---------------------------

CHANGE IT TO:

---------------------------
public function install() {
$pkg = parent::install();
Loader::model('payment/method','core_commerce');
CoreCommercePaymentMethod::add('icepay', 'ICEPAY Payment Gateway', false, NULL, $pkg);
}

---------------------------

Then it works fine! :)
Really easy to set with the Mollie account ID and reference code of the shop.

Filter Posts