I am updating my database using the phpMyAdmin UI and the changes are not reflected on the WordPress blog. The reason for doing this is when some changes were made recently to the blog the site hanged and was looking at reverting the code changes from the database side.
When updating a blog using the WordPress admin dashboard i am able to update it. But not able to update it from the back-end database. I have disabled the plugins and ensured that there is no caching . The only caching entry in the wp-config.php
file is set as false .
define('WP_CACHE', false); //Added by WP-Cache Manager
Please guide who to add changes to the database and the same be reflected or reverted from a blog entry on WordPress.
I am updating my database using the phpMyAdmin UI and the changes are not reflected on the WordPress blog. The reason for doing this is when some changes were made recently to the blog the site hanged and was looking at reverting the code changes from the database side.
When updating a blog using the WordPress admin dashboard i am able to update it. But not able to update it from the back-end database. I have disabled the plugins and ensured that there is no caching . The only caching entry in the wp-config.php
file is set as false .
define('WP_CACHE', false); //Added by WP-Cache Manager
Please guide who to add changes to the database and the same be reflected or reverted from a blog entry on WordPress.
Try using the php error log to debug your issue. You can find the error log using this command in the terminal is you are using linux.
sudo su
cd /var/log/apache2/
sudo gedit error.log
Now if you debug properly you will get to know where the changes went wrong.