Quote Originally Posted by yellow1912 View Post
On a side note, I notice that when ZC is placed under subfolder, some of you set configure.php like this:

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 setting, but it will cause SSU to malfunction. You need to set like this:
Code:
  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 basically, the http ones should contain only the domain name, no sub folders at all.
Good information!

Also, wanted to give a quick reason why some of us set it up that way. I found the zen-cart tutorial that guided me toward that. It's found here, if that matters.

https://www.zen-cart.com/tutorials/index.php?article=14

I just have to say thanks a billion for spending hours on helping me out with all this. Seriously, amazing support on this.

cris