Guest Posted August 17, 2006 Share Posted August 17, 2006 please help when ever i try to use my site it works great but when OSC is supposed to use SSL it does but it won't find the pages? I think i have my Config files set up right? any ides? Thanks in advace: define('HTTP_SERVER', 'http://www.tarojoenterprises.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.tarojoenterprises.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://www.tarojoenterprises.com'); define('HTTPS_COOKIE_DOMAIN', 'https://www.tarojoenterprises.com'); define('HTTP_COOKIE_PATH', '/store/'); define('HTTPS_COOKIE_PATH', '/store/'); define('DIR_WS_HTTP_CATALOG', '/store/'); define('DIR_WS_HTTPS_CATALOG', '/store/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/var/www/vhosts/tarojoenterprises.com/httpdocs/store/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // Define the webserver and path parameters// * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.tarojoenterprises.com'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.tarojoenterprises.com'); define('HTTPS_CATALOG_SERVER', 'http://www.tarojoenterpries.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/var/www/vhosts/tarojoenterprises.com/httpdocs/store/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/store/admin/'); // absolute path required define('DIR_FS_ADMIN', '/var/www/vhosts/tarojoenterprises.com/httpdocs/store/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/store/'); // absolute path required define('DIR_FS_CATALOG', '/var/www/vhosts/tarojoenterprises.com/httpdocs/store/'); // absolute path required define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/'); define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/'); define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/'); define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/'); If you want to you can try to see what im talking about at tarojoenterprises.com And yes my SSL cert is installed corectly and yes im on a dedicated server thanks!!! Link to comment Share on other sites More sharing options...
♥Vger Posted August 17, 2006 Share Posted August 17, 2006 define('HTTP_COOKIE_DOMAIN', 'www.tarojoenterprises.com'); define('HTTPS_COOKIE_DOMAIN', 'www.tarojoenterprises.com'); define('HTTPS_CATALOG_SERVER', 'https://www.tarojoenterpries.com'); Yes, you do have a full ssl cert correctly installed, but it also looks like your server uses one of those old two-folder systems (Plesk), one for httpdocs and another for httpsdocs. You'll either have to get your server administrators to symbolically link the httpsdocs folder to the httpdocs folder, or else you'll have to duplicate your httpdocs folders/files in the httpsdocs folder. Vger Link to comment Share on other sites More sharing options...
Guest Posted August 18, 2006 Share Posted August 18, 2006 define('HTTP_COOKIE_DOMAIN', 'www.tarojoenterprises.com');define('HTTPS_COOKIE_DOMAIN', 'www.tarojoenterprises.com'); define('HTTPS_CATALOG_SERVER', 'https://www.tarojoenterpries.com'); Yes, you do have a full ssl cert correctly installed, but it also looks like your server uses one of those old two-folder systems (Plesk), one for httpdocs and another for httpsdocs. You'll either have to get your server administrators to symbolically link the httpsdocs folder to the httpdocs folder, or else you'll have to duplicate your httpdocs folders/files in the httpsdocs folder. Vger Okay im the process of going ahead and copying my httpdocs into my httpsdocs, now since my configfiles are correct,will they still store in the same database? That is what i thought that i must do but i wasn't for sure... thanks vger Link to comment Share on other sites More sharing options...
locust13 Posted August 18, 2006 Share Posted August 18, 2006 I hate to intrude on here but I also ahve a quick questoin on this... So, if I download everything in my httpdocs folder and then upload all of it to the httpsdocs folder ssl should be installed correctly? I don't want to be risking anything by doing this though...is that all you need to do in this case? Link to comment Share on other sites More sharing options...
Guest Posted August 18, 2006 Share Posted August 18, 2006 I hate to intrude on here but I also ahve a quick questoin on this...So, if I download everything in my httpdocs folder and then upload all of it to the httpsdocs folder ssl should be installed correctly? I don't want to be risking anything by doing this though...is that all you need to do in this case? It would but you have to make sure your two config files are setup correct on both https and http in the admin/includes, and also the includes folder, make sure your paths are set and your SSL is set to ON not OFF don't forget to do this to both https and http Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.