lookslikepat
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Super Cache] Manually delete the cacheCould there be a much easier solution for a non technical people.
wp-super-cache does try and offer options that lets you delete the cache whenever you make new post, a comment is made, or both. Check Settings -> WP-Super-Cache -> Advanced.
Or you could expand when it deleted the cache using
add_action
, check out this forum-thread.Forum: Plugins
In reply to: [WP Super Cache] Manually delete the cacheFor anyone that reads this I switched to an even better solution: moving the cache folder first, then deleting it. Should save you from any PHP collisions.
cd www/wordpress/wp-content # example folder mv ./cache ./cache_old && mkdir -p ./cache # move cache and if moved make new dir if [ -d ./cache_old ] && [[ "$PWD" =~ www/wordpress/wp-content ]]; then # if previous cmd was a success and # we're in the right folder rm -rf -- cache_old # the -- is a safeguard thing when using rm -rf fi
Forum: Plugins
In reply to: [WP Super Cache] Manually delete the cacheAfter trying it a few times I can’t find any errors popping up. I added *.meta files to be deleted as well.
Here’s my final ssh command:
ssh user@host "find /www/wp-content/cache/ \( -name '*.html' -or -name '*.html.gz' -or -name '*.meta' \) -delete"
Forum: Plugins
In reply to: [Simple Statistics for Feeds] Broken, database errorDon’t mention it, thank You for an (I’m assumimg) awesome plugin! ??
Forum: Plugins
In reply to: [Simple Statistics for Feeds] Broken, database errorI screwed up, forget those versions all together. I was trying this plugin on my local machine, not the online server.
My local installs are as follows:
PHP 5.4.6-1ubuntu1.1 (cli) (built: Nov 15 2012 01:23:47)
mysql Ver 14.14 Distrib 5.5.28, for debian-linux-gnu (i686) using readline 6.2
Forum: Plugins
In reply to: [Simple Statistics for Feeds] Broken, database errorThe MySQL version I entered wan’t all that correct ??
My PHP MySQL library version is 5.5.24, the MySQL server version is 5.1.62.Forum: Plugins
In reply to: [Simple Statistics for Feeds] Broken, database errorSorry I forgot to write those down ??
PHP v 5.4.8
MYSQL v 5.1.62
( mysqlnd/mysqli v 5.0.10 )Ttly understand, thank you ??