cimddwc
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-UserAgent] New DIV and custom outputThat was fast, thanks!
My stats are back now (without any action on my behalf), and the numbers are normal, so I assume no views are missing. Only the dashboard widget’s Top Posts and Most Active columns are still empty, but the full display (“View All” or via Global Dashboard) is complete.
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet 2.5.0 server/connection problemThanks for the reply. Well, Akismet successfully caught 44 spams over night but still displays this “…from checking 1 comment”.
I investigated a bit more: There’s this one “akismet_error” db entry which contains the very same comment_id as the “please moderate” comment I mentioned yesterday, which I deleted – so Akismet is indeed trying to re-check a comment that doesn’t exist anymore: function akismet_check_db_comment, which is called from akismet_cron_recheck, returns an empty result since $wpdb->get_row returns nothing from the comment table, and thus akismet_cron_recheck in its “else” section just reschedules the recheck.
Or in other words: akismet_check_db_comment (and thus akismet_cron_recheck) doesn’t distinguish between “comment doesn’t exist anymore” and “akismet_http_post, the communication with akismet.com, had an error and returned ””…
Forum: Plugins
In reply to: [Akismet Anti-spam: Spam Protection] Akismet 2.5.0 server/connection problemI got this “A server or network problem prevented Akismet from checking 1 comment…” message today, too. But it doesn’t seem to go away, i.e. after the displayed minutes, it just starts its countdown again. (While other spam comments still get successfully marked as spam, so it’s no permanent connection problem.)
Some hours ago, I had received a standard “please moderate” mail for a typical spam comment with many links – so seemingly just one that Akismet didn’t catch – and clicked the link to mark it as spam. Only after that I noticed this problem message for the first time (having installed 2.5.0 the day it was released). Some time later, I deleted all the spam that had accumulated with the “empty spam” button, but the problem message persists. Is Akismet trying to re-check a comment that no longer exists? And if so, how to turn this message off? (Even if it means editing a database entry.)
On another note, I noticed that my wp_commentmeta table is filling with hundreds of akismet_* entries, mostly akismet_history and akismet_result. That’s obviously related to the new features – but I hope those will be expired after a certain time and not flood the database with eventually tens of thousands of entries… will they?
Forum: Plugins
In reply to: wordpress stats not workingThe numbers seem to have almost(?) caught up by now, so I guess nothing was lost, or not much – thanks for that. 🙂
Forum: Plugins
In reply to: wordpress stats not working@richiedude:
Got no help, sorry, but you’re not alone: WP.com Stats stopped counting on both my blogs sometime early this morning (European time). (And no, I didn’t change anything then.)Just had almost the same problem (only “Argument #1”) when I just upgraded to 2.9.1, but only sometimes. It seems to be caused if there are GET or POST parameters (Argument #1 and #2, respectively) in the request but these are unset by a plugin, which in my case is a modification I made to better combine Language Switcher and WP Super Cache.
I added the line
if (!isset($_GET)) $_GET=array();
before thearray_mergeline 637, and my warnings are gone. For the “Argument #2” warning, a similar line would be needed for$_POST; however, this probably won’t help you with your new post problem – since the important post data is apparently missing from the request – and you’re gonna have to try esmi’s hints. It might help searching your plugin files forunset($_GET)andunset($_POST)(note that there might be additional blanks around the parentheses).(Edit: On a second thought and more investigation, I rather changed my aforementioned modification, since that was my only cause, so no core file mod needed for me…)
Forum: Fixing WordPress
In reply to: Get Moderation email, but mod Que is empty?I just received one of these myself (WP 2.3.2)… anyone have an idea if that’s a real problem?
I’d like to add that the Approve etc. links in the mail ended with c=0, and there was no new spam counted by Akismet at that time.
Forum: Plugins
In reply to: WP.com Stats not recognizing German AOL searchNever mind – thanks!