My client has an existing static website. I have set up a new account for this client on my dedicated server and installed zencart. But, I don't want to change the DNS to point to the new server until the site is ready. Prior to changing the DNS, the new site can be access with the IP address.
I changed includes/configure.php like this:
define('HTTP_SERVER', 'http://74.52.125.242/~tealeave');
define('HTTPS_SERVER', 'https://74.52.125.242/~tealeave');
I changed admin/includes/configure.php like this:
define('HTTP_SERVER', 'http://74.52.125.242/~tealeave');
define('HTTPS_SERVER', 'https://74.52.125.242/~tealeave');
define('HTTP_CATALOG_SERVER', 'http://74.52.125.242/~tealeave');
define('HTTPS_CATALOG_SERVER', 'https://74.52.125.242/~tealeave');
The Admin page works fine. But on the main page, the CCS link still points to the Domain Name which, of course, resides on another server. How can I get this to work before I'm ready to change the DNS?
Go to http://74.52.125.242/~tealeave/ you will see what I mean.



