michaelpark
Forum Replies Created
-
Forum: Plugins
In reply to: no super cached pages with WP Super Cache“/my/full/path/” should be something like “/home/username/public_html/”?
Forum: Plugins
In reply to: no super cached pages with WP Super CacheThat doesn’t work for me unfortunately.
Forum: Installing WordPress
In reply to: No “SuperCache” DirectoryWhere does “$supercachedir” get set first? I don’t see it in the config.
And where do I put “error_log” function?
Thanks.
Forum: Installing WordPress
In reply to: No “SuperCache” DirectoryYes, it is.
define('WP_CACHE', true); define ('WPLANG', ''); define('ABSPATH', dirname(__FILE__).'/'); require_once(ABSPATH.'wp-settings.php');Forum: Installing WordPress
In reply to: How to make the wp-cache part workNo files in there for me…
Forum: Plugins
In reply to: no super cached pages with WP Super CacheIt’s not working for me, either. That directory is empty.
Forum: Installing WordPress
In reply to: No “SuperCache” DirectoryIt’s set to true.
$cache_compression = 1; //Added by WP-Cache Manager $cache_enabled = true; //Added by WP-Cache Manager $super_cache_enabled = true; //Added by WP-Cache Manager $cache_max_time = 3600; //in seconds //$use_flock = true; // Set it true or false if you know what to use $super_cache_max_time = 21600; // in seconds $cache_path = ABSPATH . 'wp-content/cache/';It’s still not caching even though the “cache” directory is set to 777.
And here’s my .htaccess:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{QUERY_STRING} !.*s=.* RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$ RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$ RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$ RewriteCond %{HTTP:Accept-Encoding} gzip RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz [L] RewriteCond %{QUERY_STRING} !.*s=.* RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$ RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$ RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$ RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html [L] <IfModule mod_rewrite.c> RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> </IfModule> # END WordPressBut the “supercache” directory is empty.
Forum: Plugins
In reply to: [Plugin Comment Quicktags ] never shown upIn comment_quicktags_plus.php, replace lines 75-76 with…
$scripturl = get_settings('siteurl') . '/wp-content/plugins/comment-quicktags/js_quicktags.js'; $thisurl = get_settings('siteurl') . '/wp-content/plugins/comment-quicktags/' . basename(__FILE__);Forum: Plugins
In reply to: Word Count JavaScriptForum: Plugins
In reply to: Word Count JavaScriptAnyone?
Forum: Everything else WordPress
In reply to: Scriptaculous Inclusion in Most PluginsInclusion is fine, but I think they should at least check to see if they are already included perhaps by checking the version of WordPress.
Forum: Everything else WordPress
In reply to: Scriptaculous Inclusion in Most PluginsEven the new plugins are written to use its own files instead of using included ones; e.g., AJAX Comments and Social Bookmarks.
Forum: Fixing WordPress
In reply to: Save Options Does Not Save (Google Sitemap Generator) — HELP!!!Solved it by adding the following to .htaccess:
SecFilterEngine Off
SecFilterScanPOST Off