I installed zencart on a domain but decided I needed it to be under a different domain. I found documentation on how to modify the two configure.php files in includes/ and admin/includes/ folders to reflect the new domain. See instructions I followed below. I made a copy of all the zencart folders and placed them inside the folder where the new domain resides. so the new path www.(newdomain.com)/zencart worked with my zencart coming up. The problem I'm encountering is now when I try to add a product and upload a image file, the image file is being uploaded to the old folder location not the new location where the zencart files were copied and the image is not found. Have tried to find solution but haven't. Hopefully someone out there can help me. Thank you.

Below are the instructions I followed to change the zencart domain. It came from this site: http://kb.siteground.com/article/How...ew_domain.html

In order to configure Zen Cart to work properly with another domain, you should modify the two configure.php files in includes/ and admin/includes/ folders to reflect the new domain.

The settings that should be changed in includes/configure.php are:

HTTP_SERVER - you should change this to your new domain name, e.g. http://newdomain.com:
define('HTTP_SERVER', 'http://newdomain.com');

If you are using SSL you should also modify:

HTTPS_SERVER - change this to:
define('HTTPS_SERVER', 'https://newdomain.com');

In admin/includes/configure.php you should modify:

HTTP_SERVER - you should change this to your new domain name, e.g. http://newdomain.com:
define('HTTP_SERVER', 'http://newdomain.com');
HTTP_CATALOG_SERVER - again, this should be changed to your new domain name:
define('HTTP_CATALOG_SERVER', 'http://newdomain.com');

If you are using SSL, you should also change:

HTTPS_SERVER - change this to:
define('HTTPS_SERVER', 'https://newdomain.com');
HTTPS_CATALOG_SERVER - change this to:
define('HTTPS_CATALOG_SERVER', 'https://newdomain.com');