PDA

View Full Version : Front end URL problem, please help urgently (High Priorty)



Pamela Labelle
February 3, 2010, 09:11 PM
I just buy a new copy of Flynax, now problem is that, whenever I wanted to install at my localhost, it's fine but after installation I could not see my pages well, system generating automatically my folder URL twice, e.g:
The original URL is:

http://localhost/project/flynax/index.php

But the system generating the URL something kind of this:

http://localhost/project/flynax\project\flynax/index.php

which always follow wrong, resulting no page found, I even checked the configuration file and comment the this line and write instead:
//define( 'RL_ROOT', 'C:\xampp\xampp\htdocs\project/flynax . RL_DS . RL_DIR );
define( 'RL_ROOT', 'C:\xampp\xampp\htdocs\project/flynax' . RL_DS );

Front-End never works at all, only a white screen, I may be able to do work with admin but after removing the wrong URL and fixing it to correct one.

Please guide me as soon as possible, I'm really waiting for it.

Hope a kind and quick response,
Regards

John
February 5, 2010, 04:35 AM
Hello,
To resolve this problem you should to know the root directory, for example:
if your root directory is: /localhost/project/
and project folder is: flynax
in this case the path settings should be:

define( 'RL_DIR', 'flynax' . RL_DS );
define( 'RL_ROOT', 'C:\xampp\xampp\htdocs\project' . RL_DS . RL_DIR );
Try it and let me know about results.