1 epdady007 Apr 26, 2006 02:46
3 epdady007 Apr 26, 2006 22:22
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
4 yabba Apr 26, 2006 23:22
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 ;)
¥
5 epdady007 Apr 26, 2006 23:55
blogs folder is already in public_html
6 yabba Apr 27, 2006 00:06
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 ;)
¥
7 epdady007 Apr 27, 2006 00:53
ya lost me
:-/
8 edb Apr 27, 2006 06:49
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';
¥