Okay, I'm adding this mod to my second website now, which is a sub-domain of zencrystals.com

To hopefully avoid a lot of headaches and save time I'd like to be sure I'm changing the right things in the configure.php files

Here's what I'm reading in the installation instructions

PHP Code:
define('HTTP_SERVER''http://www.site.com/subfolder');
 
define('HTTPS_SERVER''https://secure.site.com/~username/subfolder');

This may work in the normal ZC settingbut it will cause SSU to malfunctionYou need to set like this:

define('HTTP_SERVER''http://www.site.com');
 
define('HTTPS_SERVER''https://secure.site.com');
 
define('DIR_WS_CATALOG''/subfolder/');
 
define('DIR_WS_HTTPS_CATALOG''/~username/subfolder/');

So basicallythe http ones should contain only the domain nameno sub folders at all

And here is what is currently in my configure.php file

PHP Code:
define('HTTP_SERVER''http://www.craftmagick.com');
  
define('HTTPS_SERVER''https://www.zencrystals.com/craftmagick');

define('DIR_WS_CATALOG''/');
  
define('DIR_WS_HTTPS_CATALOG''/');

define('DIR_FS_SQL_CACHE''/home/zencryst/public_html/craftmagick/cache'); 

My questions is... would
define('HTTPS_SERVER', 'https://secure.site.com');
be

https://zencrystals.com

or

https://craftmagick.com

or

https://zencrystals.craftmagick.com


ALSO...

do I just leave
define('DIR_WS_HTTPS_CATALOG', '/');
as it is since it currently matches what is in my config.php file now?


ALSO....

in the .htaccess file would it be set to
REWRITE / craftmagick


I would just like to be sure before altering config.php files...

Thanks