pkirk
Forum Replies Created
-
Forum: Plugins
In reply to: [WebberZone Top 10 — Popular Posts] Today views more than Total viewsSeems casual to me. Today I have two new posts and the counting is OK: both “today” and “total” are the same number.
I don’t know how to check if a query goes wrong.
The server load is pretty low (less than 5%). I have 30K-40K pageview a day, but it’s nginx’s cached (not the JS that update the count!).Thanks,
—
P.Forum: Plugins
In reply to: [Co-Authors Plus] MultisitesI’m using it on a multisite network and it seems to work fine.
Forum: Plugins
In reply to: [Co-Authors Plus] Plugin adding ~ 8 seconds to Post updatesI think that the queries it produces are not optimized.
Right now I’m looking at the mysql slow query log and the slowest query is the author archive page (slowed by this plugin).I hope someone will optimize that.
Thanks,
—
PaoloForum: Plugins
In reply to: [Related Posts by Sovrn] Google Analytics and ZemantaThanks Ajay,
it works with a couple of small modifies: declaring $wpdb as global and adding a “return” in front of $where.I would suggest to put that as an option in the admin settings panel. Maybe in the “Popular post list options” panel.
Many thanks for your time,
—
PaoloForum: Plugins
In reply to: [mobble] Fatal error on wp-activate.phpHi, and thanks for your reply.
The plugin was active, that was the problem.
Seems like http://www.example.com/wp-activate.php doesn’t load the plugin or something like that.Thanks for your time.
Forum: Plugins
In reply to: [WP Super Cache] WP Super Cache is not working with FacebookI confirm the problem:
200 OK when no pages in cache.
206 Could not retrieve the page with the page already in cache.Disabling the compression resolved for me.
But I put “facebook” in the UserAgent list. And it works too.
Instead I’ve setup a cron job with a “rm -rf” command.
I hope that Donncha can help on that.Thanks,
Same problem here: Custom Post Type Archive is not getting deleted.
Tevya, did you managed to resolve?Thanks!
Forum: Plugins
In reply to: [Recently Popular] [Plugin: Recently Popular] Hundreds of select statementsebiven,
can you please write that down on the description of the plugin?I’m asking that because my hosting company a couple of hours ago suspended a website that only does 5-600 pageviews/day.
Thanks,
—
PaoloForum: Plugins
In reply to: [WP Super Cache] [Plugin: WP Super Cache] DISABLE_WP_CRON falseBut I created the cron job
that call /wp-cron.php?doing_wp_cron
but the plugin stopped clearing the cache nonetheless.Thanks,
As you can see in the right column, I’m using WordPress version: 3.0.5.
So I think that is my problem.Thanks.
Forum: Fixing WordPress
In reply to: Block free emails from registeringTry the Registration Blacklist plugin:
http://web-professor.net/scripts/
but you have to add by hand all those email services.Forum: Plugins
In reply to: Adding fields to Themed Login & RegistrationAh, and comment “$error = Array();” and put it as a “global” just after “function jk_do_login()”.
Should be all.Forum: Plugins
In reply to: Adding fields to Themed Login & RegistrationAs pointed in “Cimy User Extra Field” documentation:
edit the plug-in “Themed Login” and at line 871 (just before “A password will be emailed to you.”) add this (without space between “<“, “?” and “php”):
< ? php do_action(‘register_form’); ?>and then (as pointed out here by me 🙂 ), try to add
do_action(‘register_post’);
before
if ( 0 == count($errors) ) {
around line 812.
I don’t know if it works ’cause I’ve done others modifies in my installation. Let me know.