Reputation: 3127
I have faced one problem when I have update wordpress to 3.8.1. When I am going to add post then category list at right side panel is blank and even when I am going to edit post then also not showing.
Please see attached screenshot.
Please help me to solve this.
Thanks
Upvotes: 2
Views: 1128
Reputation: 150
A couple of days ago I had the same problem when I updated my WordPress to 3.8.1: All of my categories disappeared, but they still existed in my database.
At first I thought it was a problem with the new version, but apparently it was not as I learned through this thread.
Apparently WordPress reacts to a full /tmp folder on your server with disappearing categories. So I did exactly as written there, clearing my /tmp folder with following command:
cd /tmp
find . -exec rm {} \;
Upvotes: 1