error code on homepage of WordPress blog

Status
Not open for further replies.

ubaidabcd

Banned
Dec 12, 2006
1,030
7
0
I'm getting this error on my homepage:

WordPress database error: [Table 'xxxxxx.wp_categories' doesn't exist]
SELECT cat_name FROM wp_categories ORDER BY cat_name ASC


I have wordpress 2.3 and went into manage/categories, and there isn't an option to order by name.


I haven't done anything to the blog today except for uploading an article.



Thanks
 


Make sure the "wp_categories" table does really exist. Either use phpMyAdmin or this little script:

Code:
$c = mysql_connect(....);
$tables = mysql_list_tables(..database name here..);
while($row = mysql_fetch_row($tables)) {
  echo $row[0].'<br />';
}
mysql_close($c);
 
actually the problem was with my "Add meta tags" plug-in and I was able to fix the problem.


Thanks
 
Status
Not open for further replies.