when the widget controls are set to "5"?
I'm guessing this is controlled by a time window -- where can I edit that?
Fred
when the widget controls are set to "5"?
I'm guessing this is controlled by a time window -- where can I edit that?
Fred
May be you haven't enough recent searches (in the last 24 hours)?
I have the same issue - Recent Searches and Referer entries will appear in the widget, but then after a minute or two they no longer appear. It appears if there aren't new searches or referers for some arbitrary amount of time, the widget sections no longer show.
Is it possible to have the widget show the most recent X searches and most recent Y referrers regardless of how long ago they were recorded? So, for example, if there are no new searches for 24 hours, the widget would still show the most recent X searches from however long ago they occurred.
Thanks, and love the plugin!!
No, it's a real problem. I get a lot more than 1 or 2 searches in the last 24 hours. EngineerBoy suggests the right fix.
Ok, there is an easy fix (although it requires customizing wassup.php).
the problem is that wassup creates a tmp database and empties the records every 3 minutes.
there is a line where these records are deleted every 3 minutes.
if you have a light traffic blog, simply set the delete to a larger value (i used 120 minutes). note typo in "delete records older thEn 3 minutes"
Obviously, this is a bad idea if you have a busy blog, or are constrained on db size or performance.
// Delete records older then 3 minutes
$wpdb->query("DELETE FROM $table_tmp_name WHERE timestamp<'".strtotime("-120 minutes", $timestamp)."'");
@wfzimmerman you are right. The problem is just that. I decided to limit the widget query to only the tmp table to speed up the blog's pages load.
You must log in to post.