Hi Gang -

I moved my working Zen Cart v1.3.7.1 webpage to a new server where I have he files stored in a sub-directory compared to the former place where I had it right smack in the root folder:

Previous server location: /home/public_html/
Current server location: /home/public_html/mystore/

I am a little confuse about setting the correct paths for the current server location in the configure.php files (in includes and admin/includes too).

I see I had previously:

Code:
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_INCLUDES', 'includes/');

etc., etc.
according to the new location should these now look like:

Code:
define('DIR_WS_CATALOG', '/mystore/');
define('DIR_WS_HTTPS_CATALOG', '/mystore/');
define('DIR_WS_IMAGES', '/mystore/images/');
define('DIR_WS_INCLUDES', '/mystore/includes/');

etc., etc.
Am, I correct?
I think the confusing thing is - do I need to add a beginning slash at every "mystore/" directory?

Thanks!
gabstero