Here are some fixes for this "Official" Moneybookers module
1)
On the payment_moneybookers page the breadcrumb navigation is showing NAVBAR_TITLE_1 and NAVBAR_TITLE_2
Solution:
Create a file called payment_moneybookers.php with the following content:
Code:
define('NAVBAR_TITLE_1', 'Checkout');
define('NAVBAR_TITLE_2', 'Skrill/Moneybookers');
and put it in includes/languages/english
If you have other languages active do the same for e.g. includes/languages/french
2)
The payment_moneybookers page is not SSL even if SSL is active in your store and properly configured.
Solution:
includes/modules/payment/moneybookers/moneybookers_payment.php
Change about line 60 from:
Code:
$this->_moneybookersUrl = zen_href_link('payment_moneybookers');
to
Code:
$this->_moneybookersUrl = zen_href_link('payment_moneybookers','','SSL');
3)
During checkout you get "PHP Fatal error: 1054:Unknown column 'orders_status' in 'field list'"
Solution:
includes/modules/payment/moneybookers/moneybookers_payment.php
Change about line 267 from:
Code:
`order_status` int(11) NOT NULL,
to
Code:
`orders_status` int(11) NOT NULL,
There is no need to use the UPDATE01.sql when fixing this bug as described above.
Would be great if Moneybookers could release an updated version including these fixes.
Bookmarks