bitgus Posted November 27, 2009 Posted November 27, 2009 when I click on create an account I get redirected to https: / / well. i have configured. the config.php of includes .. and admin incluides.. to false.. ssl.. only redirect me.. in create account or checkout_shipping, not it catalogs.. or cotact us.. what can i do ? Thanks..
germ Posted November 27, 2009 Posted November 27, 2009 when I click on create an account I get redirected to https: / / well. i have configured. the config.php of includes .. and admin incluides.. to false.. ssl.. only redirect me.. in create account or checkout_shipping, not it catalogs.. or cotact us.. what can i do ? Thanks.. In the includes FOLDER (catalog and admin) where the normal configure.php files are there is a FOLDER named local On some installs there may be a configure.php inside the local FOLDER (catalog and admin) If there is, anything in it overrides anything in the normal configure.php files. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
bitgus Posted November 27, 2009 Author Posted November 27, 2009 In the includes FOLDER (catalog and admin) where the normal configure.php files are there is a FOLDER named local On some installs there may be a configure.php inside the local FOLDER (catalog and admin) If there is, anything in it overrides anything in the normal configure.php files. isn't the file :( only readme.. i check php.. one for one, and i dont know why is this :(.. some idea?
germ Posted November 27, 2009 Posted November 27, 2009 Unless you have an improperly coded template it won't use HTTPS unless enabled in the configure file (usually). I have seen a time or two when the server told osC that SSL was "on" when it wasn't. In the configure file make these two entries the same: define('HTTP_SERVER', 'http://www.YOUR_DOMAIN.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'http://www.YOUR_DOMAIN.com'); // eg, https://localhost - should not be empty for productive servers (an example). Note that the second entry uses http:// and NOT https:// If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
bitgus Posted November 27, 2009 Author Posted November 27, 2009 YEAH!!! U RIGHT, SO THANKSS!!!! :D:D:D:D
germ Posted November 27, 2009 Posted November 27, 2009 You may also need to make these identical if they are not: define('HTTP_COOKIE_DOMAIN', '.YOUR_DOMAIN.com'); define('HTTPS_COOKIE_DOMAIN', '.YOUR_DOMAIN.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); YOUR SETTINGS MAY BE DIFFERENT. Just make the HTTPS settings the same as the HTTP ones. If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
Recommended Posts
Archived
This topic is now archived and is closed to further replies.