wilef
Forum Replies Created
-
Latest version of chrome doesn’t seem to have the jumping problem, but the navigation arrows now jump the the extents of the browser window instead of staying put under the picture.
any help would be appreciated.
Same problem with Chrome 10.0.642.2
Latest update still doesn’t fix it. Please help.
Forum: Plugins
In reply to: [Plugin: Sociable] Email sends either Subject or Body not bothsame problem here, no luck trying to fix it. Any help?
Forum: Fixing WordPress
In reply to: WP-Cache & WP-Super Cache Increasing CPU UsageIt seems to be caching for awhile and then just stop. For instance, yesterday, I deactivated it, then reactivated it and it started caching nicely. Now, it’s showing 0 cached pages. I’m guessing the tmp folder might be filling up?
Any ideas?
Forum: Fixing WordPress
In reply to: WP-Cache & WP-Super Cache Increasing CPU UsageThanks Otto42,
Alright, so I’m on DreamHost P.S., I’ve got Super Cache set up, but I don’t know if it’s really serving up cached pages. Even after clearing my browser’s cache, the source doesn’t say it’s a cached page. I’ve got the latest version installed (0.8.1), I’ve changed the cache path in wp-cache-config.php to $cache_path = ‘/tmp/tpstart-wp-cache/’;
Can someone check if they’re seeing cached pages? https://www.2pstart.com/
I’d appreciate it!
Forum: Fixing WordPress
In reply to: WP-Cache & WP-Super Cache Increasing CPU UsageI’ve just signed up for DreamHost PS and want to use WP-Super Cache, but I’m afraid of having the same issues as described here. I see the fix described as changing the cache folder to ‘/tmp’, but when I look in my root folder, I don’t see a tmp folder, I just see a ‘domain.com’ folder, a ‘maildir’ folder, and a ‘logs’ folder. Could someone explain how I see the ‘tmp’ folder?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How can I tell if it has cached?Otto,
I did basically the same thing here as Mike. Could you clarify a bit? You say the line ‘<!– super cache –>’ means it came from the cache, but it also says ‘Dynamic Page’. Doesn’t that mean it’s NOT cached? I thought a cached page returns a different line like “Cached Page Served…”Thanks.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?Otto42,
Thanks for the clarification. The question still stands though, the site is definitely not serving cached pages at all and I’m wondering if there’s anything else you guys can think of that would be causing this. Thanks again.Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?thanks, got that now. but I’m afraid I still don’t see a difference (at least I’m still getting dynamic pages served).
I REALLY appreciate all your help. Let me know if you have any other ideas.
Is there anything I should be asking my host? Are there some settings that they may have turned off that would prevent the plugin from serving cached pages?
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?I’m not sure that did anything. Just so I’m understanding you right, I replaced DOCUMENT_ROOT in 2 places in the .htaccess file, and for syntax, it now looks like this:
RewriteCond %/home/___/public_html/wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html.gz -f
and
RewriteCond %/home/___/public_html/wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1/index.html -f
(where the blank is the folder name for my site on the server)Does that look right? If so, I’m still seeing dynamic pages, maybe someone else can check it out and tell me if they still look dynamic to you. Thanks again.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?htaccess file says:
ErrorDocument 401 “<p>Error 401</p><p>Authorization Required.</p>”
ErrorDocument 403 “<p>Error 403</p><p>Forbidden.</p>”
ErrorDocument 404 “<p>Error 404</p><p>Doocument Not Found.</p>”
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
AddDefaultCharset UTF-8
RewriteCond %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|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 %{REQUEST_METHOD} !=POST
RewriteCond %{QUERY_STRING} !.*s=.*
RewriteCond %{QUERY_STRING} !.*attachment_id=.*
RewriteCond %{QUERY_STRING} !.*wp-subscription-manager=.*
RewriteCond %{HTTP_COOKIE} !^.*(comment_author_|wordpress|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>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?I don’t have access to the server’s php.ini file as I am on shared hosting.
Forum: Plugins
In reply to: [Plugin: WP Super Cache] How do I know it’s really caching?I’m assuming you’re referring to the error_log file in my plugins directory. No errors there. I don’t see another error log file anywhere else.