lrastart
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] W3TC Documentation?Thanks for the direction, @frederick – after following your suggested procedure, I tried deleting the main stylesheet: wp-content/themes/bp-fun-child/style.css from the minify settings in order to get the site to display properly.
@frederick, are you sure this isn’t a bug in W3TC? I have a WP site that I just moved from an server running apache to a server running litespeed and I ran into the exact same problem. I was my main style.css that was causing the issue. The wierd thing is that I have 2 other wordpress installations that I moved to another litespeed server that had the exact same problem, and all were running W3TC with different themes.
Do you know what could be causing this?
Forum: Your WordPress
In reply to: Charity Gaming Marathon websiteAnyone?
Forum: Everything else WordPress
In reply to: Spammer eating too much bandwidthActually, I haven’t had 1 spam comment on any of my blogs since I activated CloudFlare. I used to have at least 100 a day on one of my blogs. It stops web spammers from even getting to your website, so in effect, it is a spam stopping tool (along with other perks).
Forum: Everything else WordPress
In reply to: SEO – wordpressI don’t even need any of those plugins because my theme has SEO features built in. WordPress has an advantage over a regular html website because it auto generates pages. The more pages in your website, the more likely it is for a search engine to notice you and possibly rank you higher.
[sig removed]
Forum: Everything else WordPress
In reply to: WordPress forums integration?I use SimplePress, but I heard Mingle has a nice forum too.
[sig removed]
Forum: Everything else WordPress
In reply to: How to use CDN to make site fasterYou don’t have to switch hosts! Hostgator offers built in CloudFlare support through cPanel. It cut my cpu and bandwidth usage by more than half, and it sped up my website. Seriously, look at it.
Forum: Everything else WordPress
In reply to: How to use CDN to make site fasterI suggest using W3TC for WordPress caching and optimization and use CloudFlare as a CDN. CloudFlare will protect your website from attacks and spam while speeding up your website by caching it and serving it from multiple data centers around the world. Their new, growing, and their basic service is free.
Forum: Everything else WordPress
In reply to: Spammer eating too much bandwidthDon’t use bad behavior. This is simpler and also speeds up your website. It’s free, too. Use CloudFlare. This will eliminate your spam and take load off your server by caching your website.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] redirect errorNo problem. I use elegant themes too… their themes are great:
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] redirect errorYou need to have a redirect, first of all. With what you have there, there isn’t a redirect. Here is the generic rule you need… put this in the WordPress htaccess rule:
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
If you need https (I haven’t tried this one):
RewriteCond %{HTTPS} off RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L] RewriteCond %{HTTPS} on RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
The problem is when you change a setting in W3TC, it diverts the WordPress rules back under the W3TC rules.
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] redirect errorI have the same problem as Dan.
Forum: Fixing WordPress
In reply to: WordPress login messed upI found the culprit: W3 Total Cache. I’m not sure why it’s doing this, but it’s messing up the login. Everything is fixed once I deactivated it. I really need this plugin, too. Does this problem happen often with W3 Total Cache?