Database problem with InVision forum

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
Rangfar
Forum Newbie
Posts: 1
Joined: Sun Oct 31, 2004 3:01 pm

Database problem with InVision forum

Post by Rangfar »

Hi people!

I have very little experience with PHP, and can only understand part of this error that I suddenly started getting (out of the blue) a few minutes ago on my InVision forum.

Code: Select all

mySQL query error: SELECT f.*, c.id as cat_id, c.position as cat_position, c.state as cat_state, c.name as cat_name, c.description as cat_desc,
        		   c.image, c.url, m.member_name as mod_name, m.member_id as mod_id, m.is_group, m.group_id, m.group_name, m.mid
        		   FROM ibf_forums f, ibf_categories c
        		     LEFT JOIN ibf_moderators m ON (f.id=m.forum_id)
        		   WHERE c.id=f.category
        		   ORDER BY c.position, f.position

mySQL error: Got error 28 from table handler
mySQL error code: 
Date: Monday 01st of November 2004 05:00:44 AM
Just curious if this makes any sense to any of you. I'll keep messing around; try to make it work. Any assistance that helps me sort out the problem would be indescribably appreciated.

Thanks!

Rangfar
User avatar
markl999
DevNet Resident
Posts: 1972
Joined: Thu Oct 16, 2003 5:49 pm
Location: Manchester (UK)

Post by markl999 »

Error code 28 means you've run out of space on the device.
Time to free up some room on your hard drive ;)
Post Reply