Categories and tags have vanished

The problem ended up being that system alerts had caused certain functions to shut down. One of the MySQL functions turned off affected my categories and tags. Bringing the system to a full stop, then restarting set things straight.

Solutions:
- Restarting the database sometimes fixes it

Solutions 2:
The /tmp folder on the server is filled up. When that's the case, the categories dissapear in wordpress. If you have root access to the server, then type:

df -h

This will give you the status of free space on your partitions. Make sure that /tmp isn't 100% used by deleting the files inside it. try these commands to empty the /tmp

Run:
rm -rf /tmp/* 1> /dev/null 2>&1


  • 0 Kunder som kunne bruge dette svar
Hjalp dette svar dig?

Relaterede artikler

Leverage Browser Caching

<IfModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 1 month"...

How to deactivate all plugins when not able to access the administrative menus?

Sometimes it may be necessary to deactivate all plugins, but you can't access the administrative...

How to Move a WordPress Website from HTTP to HTTPS/SSL

Configuring WordPress for SSL/HTTPS Links in WordPress (such as image attachments, themes CSS...

WordPress Security - Base64 and eval

WordFence has a scanner that can find base64 and eval code. You can use CPANEL file manager to...

How to disable WordPress maintenance mode after a failed update

You start an update and the update process fails at some point, leaving your WordPress website...