Hiranthi
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] 330 Compression Error W3 Total Cache Pages Dont LoadI found out it’s a gzip issue. I had added the following code to my theme’s header.php:
<?php ini_set('zlib.output_compression','On'); ini_set('zlib.output_compression_level',3); if ( ini_get('zlib.output_compression') != 'On' ) ob_start('ob_gzhandler'); ?>Once I removed that the site started working again.
Apparently, for me, it was triggered by the PHP upgrade of my server. It used to work fine, until I had my provider upgrade it to PHP5.3
Forum: Plugins
In reply to: [Tools for Twitter] Twitter Tools no longer posts to TwitterI’m having the same issue on 2 blogs of mine (all part of one multisite install).
Same here. The Jetpack support page mentioned W3TC (which I have enabled) and that you’d have to disable Object cache’ing, but I don’t have that enabled.
Been trying for a couple of days now, but still no luck.
Forum: Themes and Templates
In reply to: Custom post types – comments not showing?Andy, thanks for that. Apparently the bulk-edit didn’t enable it for all posts here either..
Apparently there’s a setting in the WordPress SEO plugin with which you can enable/disable the use of vars in the URL.
Forum: Themes and Templates
In reply to: Custom post types – comments not showing?I am having the same issue, no idea what’s causing this. Did you have any luck?
Forum: Alpha/Beta/RC
In reply to: Users not displayed correctlyNever mind, I guess this has something to do with one of the Cimy plugins (tried to import users from a default WP site into this WPMS site).
Forum: Alpha/Beta/RC
In reply to: Fatal error when accessing postsIt means the function array_intersect_key is being used, but it doesn’t exist in your environment.
Since this function was introduced in PHP 5.1.0 this means that you’re running a version prior to that.
Forum: Alpha/Beta/RC
In reply to: HTTP Error on upload – 3.1RC3Hmm.. this is odd, apparently it’s the flash uploader but that worked in 3.0.4 without any problems..
Forum: Alpha/Beta/RC
In reply to: HTTP Error on upload – 3.1RC3I already installed a plugin for that and it didn’t help. I didn’t have this issue when the install was still at 3.0.4 (or earlier).
Forum: Plugins
In reply to: I need a WordPress Plugin that can accomplish this…That looks like nothing more than a div that has a fixed height and scroll set to visible (or auto) in the CSS.
That’s why you should copy the template-files to your theme’s folder and never edit files inside the plugin itself (the first method – within the theme – is update-proof).
Forum: Plugins
In reply to: [Plugin: WP Smush.it] Smushes exixting images but not newly uploadedA client of mine is getting this notice too, not on all images but a few.
No strange characters in the names btw.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Picture title in gallery mode??NextGen automatically takes the description of the image and uses that in the Lightbox (that’s also what you can see in the code that drinkits placed).
So, an easier way would be to just copy the title into the Description fields (depends on how many pictures you have to call this an ‘easier way’).
If you have a lot of pictures changing the file drinkits mentioned is the quickest, but if you don’t want to change that on every update of NextGen, you can do it in the way I described above.
Forum: Fixing WordPress
In reply to: Active class for taxomony, when showing the postAh, I had been looking for that function (for custom post types), but couldn’t find it. I’ll take a closer look at this later this afternoon.