Some time I found some issues with Drupal site. When we make changes in javascript or in PHP code we need to clear the cache from Drupal site. One time I got really weird issue. I am not able to access my druapl admin also.
Then I found only one option which is I need to clear the cache from Drupal. Using Drupal admin panel we can easily delete the drupal cache but how can I delete the drupal cache manually. We can delete the Drupal cache through mysql also.
For that you need to use following mysql commands in phpmyadmin or through mysql command line.
[mysql]
DELETE FROM cache;
DELETE FROM cache_filters;
DELETE FROM cache_menu;
DELETE FROM cache_page;
DELETE FROM watchdog;
[/mysql]
above mysql commands will clear all the cache from drupal.
Incoming search terms:
- drupal 6 clear cache via phpmyadmin
- drupal clear cache mysql
- drupal clear cache manually
- how to clear drupal cache
- how to clear drupal cache manually
- command line clear drupal cache
- clear drupal cache admin login
- mysql command to clear cache
- drupal mysql cache table empty
- drupal manualy clear cache
- drupal manually flush cache
- drupal manual cache flush
- drupal how to delete cache from tables manually
- drupal flush all caches connection was reset
- wordpress Clear cache by xmlrpc
- wordpress manually clear cache
- drupal clearing cache table via phpmyadmin
- drupal mysql clear cache
- drupal mysql delete cache
- mysql clear drupal cache






Pingback: Tweets that mention How to delete drupal cache manually through mysql | Techie Go -- Topsy.com
Pingback: How to delete drupal cache manually through mysql | Techie Go « cache
Actually, I believe it would be:
DELETE FROM cache_filter;