WordPress database error: [Incorrect file format 'wp_comments']
SELECT ID, COUNT( comment_ID ) AS ccount FROM wp_posts LEFT JOIN wp_comments ON ( comment_post_ID = ID AND comment_approved = '1') WHERE post_status = 'publish' AND ID IN (55) GROUP BY ID

2006 January | TicTap Blog

Archive for January, 2006

PHP Session Fix

Thursday, January 12th, 2006

We’ve just changed the way session files are stored at TicTap.

Previously, we stored them all in one directory. But with more than 500,000 files, Damon was terrified something might go wrong.

So we used the “N;dir” option in session.save_path.

All looks good now, except that if you previously had items in your watchlist, it is […]

WordPress database error: [Incorrect file format 'wp_comments']
SELECT COUNT(comment_ID) FROM wp_comments WHERE comment_post_ID = 55 AND comment_approved = '1';

WordPress database error: [Incorrect file format 'wp_comments']
SELECT COUNT(*) FROM wp_comments WHERE comment_post_ID = '55' AND comment_approved = '1'

No Comments »