Symptom: Authorize.net SIM module reporting error 99
Fix: http://www.zen-cart.com/showthread.p..._currency_code
Symptom: Authorize.net SIM module reporting error 99
Fix: http://www.zen-cart.com/showthread.p..._currency_code
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Symptom:
Error:
SOLUTION:PHP Warning: require_once(/home/user/public_html/site/../includes/classes/vendors/password_compat-master/lib/password.php): failed to open stream: No such file or directory in /......./includes/classes/class.zcPassword.php on line 52
Edit /zc_install/includes/functions/general.php
After the opening <?php line, add the following:Code:define('DIR_FS_CATALOG', zen_read_config_value('DIR_FS_CATALOG', FALSE)); define('DIR_WS_CLASSES', 'includes/classes/');
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
Another change which appears to help address the admin-password-rejected-during-database-upgrade issue is:
Edit /includes/classes/class.zcPassword.php
Around line 49 you have this:Change it to this:Code:if (version_compare($phpVersion, '5.3.7', '<')) { require_once (DIR_FS_CATALOG . DIR_WS_FUNCTIONS . 'password_compat.php'); } elseif (version_compare($phpVersion, '5.5.0', '<')) { require_once (DIR_FS_CATALOG . DIR_WS_CLASSES . 'vendors/password_compat-master/lib/password.php'); }Code:if (version_compare($phpVersion, '5.3.7', '<')) { require_once (realpath(dirname(__FILE__)) . '/../functions/password_compat.php'); } elseif (version_compare($phpVersion, '5.5.0', '<')) { require_once (realpath(dirname(__FILE__)) . '/vendors/password_compat-master/lib/password.php'); }
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.