Comdev - PHP Scripts For Your Website
Fast Website Development with PHP Components

Back To List Troubleshooting Showing 22 Of 22 Prev

KB4201048 : I had checked on S.E.F option of respective module, it able perform , but the front end page display was out of layout setting , and some of the url was unable to perform.


2009-01-20

This issue is due to the reference path was incorrectly , especially for the code used parent path eg : ../

After user had checked on SEF url , it will convert the dynamic url to static url ,

for example

Front end view url path

Dynamic url as below

http://www.yourdomain.com?index.php?cat_id=2&photo=1

after convert it into Static url

http://www.yourdomain.com/2/1/index.html

 

Source code view

Dynamic url

<img src = "../img/pictures.jpg">

browser interpret --> http://www.yourdomain.com?index.php?cat_id=2&photo=1 (image able to display properly)

Static url

<img src = "../img/pictures.jpg">

browser interpret --> http://www.yourdomain.com/2/1/index.html (image unable to display , due to the extra slashes )





Printer Friendly Version
Tell A Friend

Related FAQs In This Category

Fatal error: Unable to read 4248 bytes in /www/sitename/oneadmin/index.php on line 0

KB4121038 : Why my website show this error message : Warning: session_start() [function.session-start]: open(/home/yourdomain/public_html/oneadmin/_files/session/sess_e765db36274a9cb9027a3cb7b379533d, O_RDWR) failed: Permission denied (13) in /home/yourdomain/public_html/oneadmin/common/session.php on line 0 , I had grant '_files' to permission 777