wieslawg Posted May 21, 2013 Share Posted May 21, 2013 Hello, We use Prestashop V.1.5.4.1. There is a problem with the module BANKWIRE. When I click on that payment can see completely blank page (Firefox) or Error (Chrome) - attached to the IMG. Previously, the module worked flawlessly. Regards, Link to comment Share on other sites More sharing options...
El Patron Posted May 21, 2013 Share Posted May 21, 2013 see if this article helps; http://www.prestashop.com/forums/topic/224525-how-to-get-debug-information-for-500-error-or-blank-page/ Link to comment Share on other sites More sharing options...
wieslawg Posted May 22, 2013 Author Share Posted May 22, 2013 Thank you very much eTiendas.co! I received this error: Fatal error: Call to undefined method BankWire::checkCurrency() in /home/www/domain.com/modules/bankwire/controllers/front/payment.php on line 43 and other warning Warning: Function addCSS() is deprecated in /home/www/ewangelizacja.com.pl/modules/blockadvertmulti/blockadvertmulti.php on line 260 in /home/www/domain.com/classes/Tools.php on line 1845 Best regards, Link to comment Share on other sites More sharing options...
vekia Posted May 22, 2013 Share Posted May 22, 2013 As far as i know blockadvertmulti isn't default prestashop module, am I right? the problem is with this module. what prestashop version you use? Link to comment Share on other sites More sharing options...
wieslawg Posted May 22, 2013 Author Share Posted May 22, 2013 I use latest PrestaShop™ 1.5.4.1. I did deactivate the module blockadvertmulti, no warning. But still there is: Fatal error: Call to undefined method BankWire::checkCurrency() in /home/www/domain.com/modules/bankwire/controllers/front/payment.php on line 43 Appearance that the problem is not the module blockadvertmulti but module bankwire. Regards, Link to comment Share on other sites More sharing options...
vekia Posted May 22, 2013 Share Posted May 22, 2013 yes yes, i just talked about issue with addCss() function which is deprecated. Im looking for source code of bankwire right now :-) Link to comment Share on other sites More sharing options...
vekia Posted May 22, 2013 Share Posted May 22, 2013 have you got in the bankwire.php (root dir of the module) this function: public function checkCurrency($cart) { $currency_order = new Currency($cart->id_currency); $currencies_module = $this->getCurrency($cart->id_currency); if (is_array($currencies_module)) foreach ($currencies_module as $currency_module) if ($currency_order->id == $currency_module['id_currency']) return true; return false; } ? Link to comment Share on other sites More sharing options...
wieslawg Posted May 22, 2013 Author Share Posted May 22, 2013 I don't see this function - "public function checkCurrency($cart)" Link to comment Share on other sites More sharing options...
vekia Posted May 22, 2013 Share Posted May 22, 2013 last question: what version of this module you've got? public function __construct() { ... $this->version = '0.5'; ... } Link to comment Share on other sites More sharing options...
wieslawg Posted May 22, 2013 Author Share Posted May 22, 2013 (edited) version 0.5 I updated original file bankwire.php from dist - now is OK. Thank you very much Vekia. Edited May 22, 2013 by wieslawg (see edit history) Link to comment Share on other sites More sharing options...
vekia Posted May 22, 2013 Share Posted May 22, 2013 you're welcome :-) something was wrong with your code, i marked this thread as solved regards Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now