View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0002177 | OXID eShop (all versions) | 1. ----- eShop frontend ----- | public | 2010-10-26 14:27 | 2012-12-10 14:37 |
Reporter | leofonic | Assigned To | |||
Priority | normal | Severity | minor | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 4.4.3 revision 30016 | ||||
Fixed in Version | 4.5.5 revision 40299 | ||||
Summary | 0002177: oxexceptionhandler redirects to offline.html without path information | ||||
Description | In oxexceptionhandler::_uncaughtException( oxException $oEx ) the following lines redirect to offline html: //simple safe redirect in productive mode $this->_safeShopRedirectAndExit( "offline.html" ); This only works in root directory of the shop. | ||||
Steps To Reproduce | - In demoshop, open detail view of any article - Set demoshop inactive - Reload article in Frontend | ||||
Tags | No tags attached. | ||||
Theme | |||||
Browser | All | ||||
PHP Version | any | ||||
Database Version | any | ||||
related to | 0003303 | resolved | Linas Kukulskis | bad redirection on throw exception |
related to | 0003334 | resolved | Linas Kukulskis | exception.tpl is missing in basic |
|
Reminder sent to: leofonic Hello, sorry, but i do not fully understand the problem you described. lets say, path to product details page looks like: http://shop/Gifts/Bar-Equipment/Bar-Butler-6-BOTTLES.html if shop goes offline, for this page we get: http://shop/Gifts/Bar-Equipment/offline.html so, path information is displayed there. could you please write, what path information you get after shop goes offline, and how it should look like? greetings, |
|
Hello Birute, The page http://shop/Gifts/Bar-Equipment/offline.html does not exist, so you will get 404 instead of offline.html The correct page where the redirect should point to is http://shop/offline.html This is because the shop uses: header("Location: offline.html"); but should use IMO: header("Location: http://shop/offline.html"); |
|
fixed redirection |