I think I got it fixed (not sure whether it’s the right fix). But it worked for me.
I found that the URI segment was combining the suffix (.HTML) with the last argument
e.g
http://www.myhost.com/user/register.html
it is considered as
http://www.myhost.com/user/register_html
I modified the URI.php library file to remove the suffix and then it started working.
Now everything did work fine.
Please let me know if this is the right solution or is there a proper solution to it. Thank you very much for your help!
Chaleswa
If you don’t need suffix, you can just set in config:
app\frontend\config\config.php
app\admin\config\config.php
$config[‘url_suffix’] = “”; //leave this blank. By default codefight cms has .html but as it was causing issue, i have removed that for you.
Its more than 1am here in sydney so i am off to sleep now. I’ll have a look at this thread tomorrow. Please keep me update. Thanks and good night.
continue reading ...