tigertiger
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Redirect Loop – htaccess conflict?By (lengthy) process of elimination it’s just the minify module that’s causing problems for me. I can’t seem to debug it. If anyone knows of a solution to this, please let me know. Thanks!
Everything else seems to be working fine – although the far-future expires still isn’t setting correctly for some files.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Redirect Loop – htaccess conflict?Okay… I’ve narrowed it down a little. When I look at the source code generated for the website, this code appears in the head :
https://css.tigercooke.com/wp-content/w3tc-tigercooke.com/min/9349ce/default.include.1368345474.css
But there’s no such file in that location. There IS a “default.include.css.id” file which contains just the number : 1368345474
Then it’s rewritten as :
https://css.tigercooke.com/wp-content/w3tc-tigercooke.com/min/9349ce/www.tigercooke.com
There is a .htaccess file in the “min” folder with rewrite rules in it. Could that be a source of the problem?
(There’s a similar error for the minified js file, but I figure if I sort the CSS problem out, it’ll fix the JS problem too.)
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Redirect Loop – htaccess conflict?Hmmm. That’s a puzzler then.
Is it possible that W3TC is causing the loop error then?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Redirect Loop – htaccess conflict?Thanks efikim.
I think my problem is related to this, rather than the domain rewrite :
/wp-content/w3tc-tigercooke.com/All I want to do is rewrite the domain, but I think when htaccess sees the /w3tc-tigercooke.com within the url it treats that in the same way as a domain, so I end up with https://www.tigercooke.com appended to the entire url.
I’ve experimented with a few rules using the ! operator and trying to get an IF/ELSE thing going, but I seem to be either generating server errors, creating loops or just not making any change whatsoever. Arg.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Redirect Loop – htaccess conflict?These are the ones I’m currently using :
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# to redirect tigercooke.com to https://www.tigercooke.com
RewriteCond %{HTTP_HOST} ^tigercooke\.com$ [NC]
RewriteRule ^(.*)$ https://www.tigercooke.com/$1 [R,L]# to redirect tadhgcooke.com to https://www.tigercooke.com
RewriteCond %{HTTP_HOST} ^tadhgcooke\.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www\.tadhgcooke\.com$ [NC]
RewriteRule ^(.*)$ https://www.tigercooke.com/$1 [R,L]There are also some rules left over from WP Super Cache which I don’t understand yet :
# uploaded files
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule . /index.php [L]Forum: Fixing WordPress
In reply to: Random, Transient 404s in wp-adminI’m getting a lot of 404 errors in the admin section.
Users : add-new.php
Tools : Tools
optimize-db (the plugin)
etc.The refresh isn’t helping me unfortunately.
I’m on A Small Orange though, not DreamHost.
I’m on PHP5 and WP 2.7.1Forum: Plugins
In reply to: [Plugin: WP Super Cache] php5 chmod issueMy hosting company fixed the issue for me.
Not sure what the problem was.
All seems to be functioning properly now.Forum: Plugins
In reply to: [Plugin: WP Super Cache] php5 chmod issueWhich directory do I need to ensure is writeable by me?
All the chmods are now set to 755 for folders and 644 for files in the public_html directory (recursing through subdirectories too). I’m still getting the above error though.