2 yabba Apr 26, 2006 10:31

blogs folder is already in public_html and i changed config.php
* @global string $baseurl
*/
$baseurl = 'http://www.fearlessbloger.com';
did not work but
the .htaccess file is empty in the public_html folder i think this has something to do with my problem
you can see it here http://www.fearlessbloger.com
ok, all of the files (and folders) that are inside your /blogs/ folder need to be moved up one level so that they are in your public_html/ folder instead ;)
¥
blogs folder is already in public_html
That's really cool, but, what you need to do is move all of the files that are inside of the blogs folder into the public html folder instead ;)
¥
ya lost me
:-/
You want to NOT have a blogs folder.
public_html/blogs/admin (and all the other files and folders)
BECOMES
public_html/admin (and all the other files and folders)
AFTER you move everything from the blogs folder to your root you can then delete your blogs folder. AFTER it is EMPTY of course.
Your blog is at http://www.fearlessbloger.com/blogs/
If you want it on http://www.fearlessbloger.com/ then you need to copy everything in the /blogs/ folder to /public_html/
Then you need to edit /public_html/conf/_config.php and change the line that reads something like :-
$baseurl = 'http://www.fearlessbloger.com/blogs';
to :-
$baseurl = 'http://www.fearlessbloger.com';
¥