Thanks. My restore was going from 4.6.3 Service Pack 1 to 4.6.3, so it should be ok, then?
Thanks for your help.
If the version of the DB backup and restore are the same (other than the SP1) then you should be fine restoring.
Posted 22 November 2017 - 07:54 PM #21
Thanks. My restore was going from 4.6.3 Service Pack 1 to 4.6.3, so it should be ok, then?
Thanks for your help.
If the version of the DB backup and restore are the same (other than the SP1) then you should be fine restoring.
EZ Merchant Solutions: Custom (USA based) B2B Development, Consulting, Development and Special Projects (get a quote here).
Commercial addons, payment methods and modifications to meet your business and operations needs.
Posted 01 April 2018 - 12:00 AM #22
Guys, what if I have this on line 98
if (empty($server['HTTP_USER_AGENT'])) {
instead of advised
if (empty($server[‘REQUEST_METHOD’])) {
Would I still need to change it to
if (PHP_SAPI === ‘cli’) {
Many thanks
Vic
Posted 01 April 2018 - 06:11 PM #23
Line 98 of what file?
Note that SERVER variables are only set when PHP is launched from a web server (Apache, Ngix, etc.). However, some instances of a CLI might set some values. Easiest way is to let cs-cart tell you if it's running in CLI. If it is, then defined('CONSOLE') would be true.
EZ Merchant Solutions: Custom (USA based) B2B Development, Consulting, Development and Special Projects (get a quote here).
Commercial addons, payment methods and modifications to meet your business and operations needs.
Posted 02 April 2018 - 01:25 AM #24
Line 98 of what file?