nhowarth
Forum Replies Created
-
After some investigation, there seems to be a clash between Relevanssi and the ‘cbnet Different Posts Per Page’ plugin.
Both work together OK on my XAMPP environment running PHP version 5.3.1, but on my live site which runs PHP version 5.2.10, I hit the problem.
As soon as I disable ‘cbnet Different Posts Per Page’ on my live site, Relevanssi works fine.
Thanks msaari,
My hosting services provider upgraded my server PHP 5.2.10 a couple of days ago – I guess there may be some problems with its setup.
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Latest version 0.9.9.8 ?Re: supercache directory – unfortunately I emptied the cache and deleted it when I uninstalled the plugin last evening.
Re: don’t cache pages for known users – I’m going to use the XAMPP setup on my PC to see if I can replicate the problem and install the earlier version of the plugin on my live site. (I don’t believe that the person who made me aware of the problem had ever submitted a comment).
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Latest version 0.9.9.8 ?Yes – I was using the mod_rewrite mode. I was not using legacy caching, the id=xxxxxx is something I added to my permalink structure to get posts on Google News.
The site has 892 posts and 9 pages.
I encountered the same problem when I was trying to diagnose an issue I reported yesterday – http://wordpress.org/support/topic/plugin-wp-super-cache-latest-version-0998
When visiting my homepage using my wife’s laptop, a ‘search results’ page was displayed. I didn’t take much notice at the time.
Perhaps the two issues are related?
Forum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] Latest version 0.9.9.8 ?Hi Donncha – thanks for getting back to me so quickly. No, I didn’t try PHP mode, I just did a straight update.
One of my site visitors took a screenshot of the page showing the problem.
Forum: Fixing WordPress
In reply to: Site visitor logged in as Administrator – security issue?Many thanks esmi, I believe I have found the plugin that was causing the problem.
Forum: Fixing WordPress
In reply to: Someone is posting on my blog as me – is my account hacked?I have had a similar problem – people were able to post comments under someone else’s name.
I suggest that you turn off your caching plugin and empty the cache – it did it for me.
Forum: Fixing WordPress
In reply to: Site visitor logged in as Administrator – security issue?Thanks for your prompt response esmi.
Unfortunately it seems to be an intermittent problem. I’ve tried replicating it myself by logging out and then visiting the site on my computer – and I’ve also tried visiting the site using my wife’s laptop. But as far as I can see, everything is working fine.
I don’t believe it’s the theme – I’ve been using it for almost two years without any problems.
It’s interesting to read what you said about plugins, is there any way I can check these out by some other means?
I can see what’s happening – it’s changing the smushed file’s permissions to #600
I tried using the “Widget Classes” Plugin today – WordPress 3.0.4. Unfortunately, it causes my Appearance/Widgets screen to freeze.
This problem has already been spotted – a couple of months ago.
Also, when viewing a page, a number of widgets fail to display.
It’s great Mikko,
I have just completed installing it on my live site Cyprus Property News.
Regards,
Nigel
Thanks Mikko for getting back to me so quickly.
I added
var_dump($order);as suggested and everything worked OK.I guess there must have been something in my cache that was causing the problem.
Thanks for your help.
Regards,
Here’s the one in the root directory of my site:
SetEnv DEFAULT_PHP_VERSION 5
Options -Indexes
SetEnv PHP_EXTENSION .html
AddType application/x-httpd-php .php .html .htmand the one from the WordPress directory:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressHi Frederick,
Here’s the .htaccess from the /wp-content/w3tc/min folder. Is this the one you want?
# BEGIN W3TC Minify
<IfModule mod_mime.c>
AddEncoding gzip .gzip
<Files *.css.gzip>
ForceType text/css
</Files>
<Files *.js.gzip>
ForceType application/x-javascript
</Files>
AddEncoding deflate .deflate
<Files *.css.deflate>
ForceType text/css
</Files>
<Files *.js.deflate>
ForceType application/x-javascript
</Files>
</IfModule>
<IfModule mod_setenvif.c>
SetEnvIfNoCase Accept-Encoding (gzip|deflate) APPEND_EXT=.$1
<IfModule mod_deflate.c>
SetEnvIfNoCase Request_URI \.(gzip|deflate)$ no-gzip
</IfModule>
</IfModule>
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css M86400
ExpiresByType application/x-javascript M86400
</IfModule>
<IfModule mod_headers.c>
Header set Pragma public
Header set X-Powered-By “W3 Total Cache/0.8.5.2”
Header set Vary “Accept-Encoding”
Header append Cache-Control “public, must-revalidate, proxy-revalidate”
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME}%{ENV:APPEND_EXT} -f
RewriteRule (.*) $1%{ENV:APPEND_EXT} [L]
RewriteRule ^([a-z0-9\-_]+)\.(include(-footer)?(-nb)?)\.(css|js)$ index.php?gg=$1&g=$2&t=$5 [L]
</IfModule>
# END W3TC MinifyRegards,
Nigel