mfischer2
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 2 posts in limbo?Mine only shows Trash and Draft if I have one. I haven’t walked through them all since I have so many posts. Maybe I could just poke around the DB my mysqladmin
Forum: Fixing WordPress
In reply to: 2 posts in limbo?The menu doesn’t show any posts in either trash or drafts. Here’s what it looks like:
Forum: Fixing WordPress
In reply to: Publishing on a schedule not workingI did find some search references to WP-Cron, but it appeared to me that this functionality was built-in with WP 2.5, but if not, please let me know!
Forum: Plugins
In reply to: count by categoryWell, I have a solution, but it’s probably not the best one:
SELECT count FROM $wpdb->term_taxonomy WHERE term_id = 2
Forum: Fixing WordPress
In reply to: was I hacked?What logs specifically should I look at, anything inside wordpress I mean?
Forum: Fixing WordPress
In reply to: was I hacked?Well, at this point, I may have done all I can. I removed it and changed all my passwords. I will assume that it either came with a plugin, or I was compromised before 2.0.5.
Forum: Fixing WordPress
In reply to: was I hacked?I use the following plugins:
runPHP
Bad-Behavior
SpamKarma2
count_posts
Democracyand have the other default ones installed (but not being used).
Are there any known issues with these plugins?
Forum: Fixing WordPress
In reply to: was I hacked?Kubrick theme.
I’ve been using it since 1.2, I think, but now I am running 2.0.5.
Forum: Plugins
In reply to: “Star” (Favorite Mark or Vote) Posts plugin?Irv, did you ever get an answer?
I am looking for a plugin that will allow my users to vote on their favorite posts (recipes actually). I would prefer if they could vote on a 1-5 or 1-10 scale.
Forum: Fixing WordPress
In reply to: upgrade from 1.2 to 1.5.2 – no comment fieldsFIXED. Needed to copy single.php to my theme.
Forum: Fixing WordPress
In reply to: upgrade from 1.2 to 1.5.2 – no comment fieldsI also cannot see existing comments.
Forum: Plugins
In reply to: WP 1.3: Rating PostsWell, I made it work, but I have the poll in more places than is mentioned in the documentation. I never did get the drop-down form to work on the main page. (I also switched to the dev edition).
Forum: Plugins
In reply to: WP 1.3: Rating PostsEleanor, did you ever get it to work? I was able to get it to show up, but only when I added the field myself. Additionally I cannot get the entry form to display. I have contacted the author, but no response. If you did get it to work, please email me: matt at mattfischer com. Thanks!
Forum: Fixing WordPress
In reply to: Email when comments posted not workingFixed. Just goes to show that searching the archives before posting always helps.
The fix was that my “site admin” account did not have an email address associated with it. I added on and it works fine now.Forum: Plugins
In reply to: Anyone interested in a post count function?Clint & Carthik,
A minor correction in your code. You have hardcoded “daily_log” into the category name.
You need to change this portion (4th line down):
# get category id based on name
if (!empty($category)) {
$catid = $wpdb->get_var(“SELECT cat_id FROM $tablecategories
WHERE cat_name = ‘daily log’ “);
}
To This:
WHERE cat_name = ‘$category’ “);