phpBB MySQL Error

MySQL, PostgreSQL, SQLite
Post Reply
[zdb]pennywise
Posts: 20
Joined: 2003-06-03 18:18
 

phpBB MySQL Error

Post by [zdb]pennywise »

Ich bin verwirrt. Wenn ich in unser phpBB-Forum gehe, kommt die Index-Seite mit allen Kategorien und UNterkategorien, aber wenn ich dann eine anklicke kommt:

Code: Select all

Couldn't obtain category list.

DEBUG MODE

SQL Error : 1030 Got error 28 from table handler

SELECT c.cat_id, c.cat_title, c.cat_order FROM phpbb_categories c, phpbb_forums f WHERE f.cat_id = c.cat_id GROUP BY c.cat_id, c.cat_title, c.cat_order ORDER BY c.cat_order

Line : 120
File : /home/www/web1/html/cfcforum/includes/functions.php
Weiß einer wie ich den Fehler beheben kann, oder erst überhaupt einmal was das genau bedeutet?
duergner
Posts: 923
Joined: 2003-08-20 11:30
Location: Pittsburgh, PA, USA
 

Re: phpBB MySQL Error

Post by duergner »

[ZDB]pennywise wrote:Ich bin verwirrt. Wenn ich in unser phpBB-Forum gehe, kommt die Index-Seite mit allen Kategorien und UNterkategorien, aber wenn ich dann eine anklicke kommt:

Code: Select all

Couldn't obtain category list.

DEBUG MODE

SQL Error : 1030 Got error 28 from table handler

SELECT c.cat_id, c.cat_title, c.cat_order FROM phpbb_categories c, phpbb_forums f WHERE f.cat_id = c.cat_id GROUP BY c.cat_id, c.cat_title, c.cat_order ORDER BY c.cat_order

Line : 120
File : /home/www/web1/html/cfcforum/includes/functions.php
Versuch mal obigen SQL-String direkt auf der Kommando von mysql auszuprobieren.

Weiß einer wie ich den Fehler beheben kann, oder erst überhaupt einmal was das genau bedeutet?
alexander newald
Posts: 1117
Joined: 2002-09-27 00:54
Location: Hannover
Contact:
 

Re: phpBB MySQL Error

Post by alexander newald »

Partition voll oder Quota überschritten
[zdb]pennywise
Posts: 20
Joined: 2003-06-03 18:18
 

Re: phpBB MySQL Error

Post by [zdb]pennywise »

tatsächlich :roll:

hast du da Erfahrung, oder kann man das aus der Fehlermeldung rauslesen?
alexander newald
Posts: 1117
Joined: 2002-09-27 00:54
Location: Hannover
Contact:
 

Re: phpBB MySQL Error

Post by alexander newald »

Sowohl als auch ;-)

man perror
robertw
Posts: 165
Joined: 2002-12-17 16:10
Location: Berlin
 

Re: phpBB MySQL Error

Post by robertw »

Genau, das Geheimnis heißt "perror":

Code: Select all

# perror 28
Error code  28:  No space left on device
Robert
[zdb]pennywise
Posts: 20
Joined: 2003-06-03 18:18
 

Re: phpBB MySQL Error

Post by [zdb]pennywise »

hui, gut zu wissen :D dankeschön
Post Reply