narc
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error establishing a database connectionI have the same error on my blog (www.movienarc.com). My site has been working fine for months, then all of a sudden I got the same error you did.
Someone told me I could add some code to get a more informative error, so I did (to wp-includes/wp-db.php add echo mysql_error(); before $this->bail). Now I see the error is related to a user/password. So, going into mysql I notice the user, for whatever reason, was gone. I added the user back…but I still get the error.
I’m in the same boat as you now. Getting that error and don’t know how to fix it.
Forum: Everything else WordPress
In reply to: Help with conditional tags.I really just need help with how to make the title of a page to appear, I’ve got home, posts, and categories.
This is what I have so far:
<?phpif (is_home()) {
echo “TITLE” ;
} elseif (is_category()) {
single_cat_title(”);
} elseif (is_page()) {
;
} elseif (single_post_title()){
the_title(”);}
?>
Help is very much appreciated.
Thanks,
DanForum: Themes and Templates
In reply to: In IE: Categories indented beyond subcategories.Nevermind. I’m going to do it in html without pulling the categories from WordPress.
Forum: Fixing WordPress
In reply to: “Next Page” appears in a strange placeIt’s not a stupid hack if it works! And it does!
Thank for the replies people! Much appreciated.