(Fixed) Wordpress: Lost Categories and Error Table
Oct 25th, 2009 | By Rio Yotto | Category: Configuration, Programming, Technology, Tips & Trickalmost 4 weeks i’m not checking my websites using wordpress, the posting are losts and also the categories. asking to uncle google but they said to check the wp_term_taxonomi tables, but after going to phpmyadmin to check the files, i’ve found that this table was error. i can’t open it at all. the error messages is
Can’t create/write to file /tmp/ (Errcode: 28)
so this is what i’m doing to fixed all of this things :
1. Create another directory example /var/lib/mysql
2. Open your my.cnf using vi editor
3. Add or Edit :
[mysqld]
tmpdir = /var/lib/mysql
4. Restart your Mysql Server
this my my.cnf :
[mysqld]
skip-bdb
skip-innodb
tmpdir=/var/lib/mysql
it’s work now …
~rio

