That's it you are ssmart I had the /cart Direct/ define at the top level for https and not for http that I defined it at the Directory level I did them both at the top level and I no longer see error. You guys are GENIUS
Example If anyone has similar problem:
Old wrong way
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
** define('HTTP_SERVER', 'http://www.mysite.com');
define('HTTPS_SERVER', 'https://www.mysite.com/store);**
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
** define('DIR_WS_CATALOG', '/store');
define('DIR_WS_HTTPS_CATALOG', '/');**
Corrected to:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
** define('HTTP_SERVER', 'http://www.mysite.com/store');
define('HTTPS_SERVER', 'https://www.mysite.com/store');**
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
** define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');**
Thanks for your help.