-
- hengman

-
Total Posts: 30
Joined: 2008-07-21
|
Hello,
i found the error: The loadbalancer terminates https connection, magento is accessed with http protocoll. BaseURL is an https address and secured pages should be used in frontend. Through th termination by the loadbalancer, the request is unsecure(http), but should be secure. So, Magento redirects to the secure BaseURL(https). But this https session is terminated by the loadbalancer again and translated to http. Same case, redirect again, and so on until Redirect Error.
I found a method in app/code/code/Mage/Core/Controller/Varien/Router/Standard.php: _checkShouldBeSecure($request, $path=’’), which causes the error and try to override this method with my own extension, but i dont succeed.
Is it possible to override it with my own extension? I dont want to source out all methods in this Class.
|