The explode() function uses a plain string as delimiter, not the regex syntax as preg_() functions do, so if
$sips_resp = split ( "!", $sips_resp );
worked before, you should use
$sips_resp = explode ( "!", $sips_resp );
Printable View
The explode() function uses a plain string as delimiter, not the regex syntax as preg_() functions do, so if
$sips_resp = split ( "!", $sips_resp );
worked before, you should use
$sips_resp = explode ( "!", $sips_resp );
still get the same issue, any other ideas ?
Without knowing the actual data received back from the gateway it's impossible to know whether there's a PHP error or whether the incoming data is not in the format expected by the original module because perhaps ATOS has changed their system.
after lots of try, it doesn't display errors anymore, but only 90% function of this module works
as i change from php5.3 to php5.2, everything works correctly
i guess this mod shoud be rewrited to make it compatable with php5.3
i found this mod for php5.3 from oscommerce site http://addons.oscommerce.com/info/893, but don't know how to modify an addon of oscommerce for zen cart,
if there's anyone could modify this new version oscommerce mod for zen cart, or rewrite that old version zencart mod for php5.3, that would be great !! :dontgetit
You can use this page http://www.zen-cart.com/wiki/index.p...dules_from_osC as a guide.