error 28 from table handler

Found a bug? Tell us!!
Post Reply
lasse
Posts: 2
Joined: Wed May 18, 2005 12:37 pm

error 28 from table handler

Post by lasse »

Hi

I "recently" installed the Serendipity blog (like an hour ago). After I created the 3 article I got an error. I hope someone can help me with this error:

Code: Select all

Query failed:

SELECT 
                    

                    e.id,
                    e.title,
                    e.timestamp,
                    e.comments,
                    e.exflag,
                    e.authorid,
                    e.trackbacks,
                    e.isdraft,
                    e.allow_comments,
                    e.last_modified,

                    a.realname AS author,
                    a.email

                    , e.body, e.extended
                    
                FROM
                    serendipity_entries AS e
                    LEFT JOIN serendipity_authors a
                        ON e.authorid = a.authorid
                    LEFT JOIN serendipity_entrycat ec
                        ON e.id = ec.entryid
                    LEFT JOIN serendipity_category c
                        ON ec.categoryid = c.categoryid
                    
                    WHERE isdraft = 'false' AND e.timestamp <= '1116412548'
                    GROUP BY e.id
                    ORDER BY timestamp DESC
                     LIMIT 15

/ Got error 28 from table handler
The blog can be found here http://www.vogelsang.dk/blog/
Last edited by lasse on Wed May 18, 2005 12:43 pm, edited 1 time in total.
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: error 28 from table handler

Post by garvinhicking »

Your harddrive/diskspace is all used up:

http://www.mysql.com/news-and-events/ne ... 00249.html

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
lasse
Posts: 2
Joined: Wed May 18, 2005 12:37 pm

Post by lasse »

Strange. Thanks for the help - I have a host to contact :)
Post Reply