Move CS-Cart Installation to Another Directory
Posting here after finding the CS-Cart instructions for moving v4.0.2 to be frustratingly incomplete. http://kb.cs-cart.com/move-to-another-directory Full steps – in my case moving from /testcart to / Open config.local.php
1 2 | edit: $config['http_path'] = '/testcart'; edit: $config['https_path'] = '/testcart'; |
My edit was like this:
1 2 | $config['http_path'] = '/testcart'; > $config['http_path'] = ''; $config['https_path'] = '/testcart'; > $config['https_path'] = ''; |
— […]