Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
www.beatsinblack.com

mySQL fehler

Recommended Posts

Hallo erstmal,

ich habe ein problem das ab und zu auf meinem board auftaucht.

mySQL query error: SELECT id, member_id, running_time, location FROM ibf_sessions WHERE id='ceecbc0e1a2c196df6ca012ed78dabe1' and ip_address='80.145.116.253'

mySQL error: Can't open file: 'ibf_sessions.MYD'. (errno: 144)

mySQL error code:

Date: Wednesday 18th of February 2004 04:47:08 PM

Was könnte das sein, bitte um hilfe!

Mit freundlichen grüssen das beats in black team

Share this post


Link to post

Berichte mal deinem Hoster den Fehler, das liegt an der Datei 'ibf_sessions.MYD' - diese ist aber für dich nicht Zugänglich, es sei denn du hast einen Root Server ;)

Share this post


Link to post

Kann ich dir leider nicht so genau sagen. Ich weiß nur, das es wohl dadran liegt das die Datei ibf_sessions.MYD die falschen Rechte hat (glaube ich) oder das die Datei nicht mehr vorhanden ist.

Versuch mal alle MySQL Tabellen via PHPMyAdmin zu Reparieren. Ich glaube dann sollte es auch wieder gehen.

Share this post


Link to post

Kannst du die Tabelle denn löschen?

Da in der Tabelle nur temporäre Daten drin stehen, kannst du sie ohne Probleme löschen und dann neu anlegen.

CREATE TABLE ibf_sessions (
id varchar(32) NOT NULL default '0',
member_name varchar(64) default NULL,
member_id mediumint(8) NOT NULL default '0',
ip_address varchar(16) default NULL,
browser varchar(64) default NULL,
running_time int(10) default NULL,
login_type tinyint(1) default NULL,
location varchar(40) default NULL,
member_group smallint(3) default NULL,
in_forum smallint(5) NOT NULL default '0',
in_topic int(10) default NULL,
PRIMARY KEY (id),
KEY in_topic (in_topic),
KEY in_forum (in_forum)
) TYPE=MyISAM;

Share this post


Link to post

boah ich brauch nochmal eure Hilfe

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: Wednesday 18th of February 2004 10:43:10 PM

Könnt ihr mir sagen was jetzt ist ???

Share this post


Link to post

Diese Fehlermeldung bedeutet, das zuwenig Festplattenspeicher für die Datenbank vorhanden ist.

Folgendes hab ich dazu gefunden:

It means that your hard disk is full (probably in your MySQL database but it could be elsewhere and interfering with the free running of your database). Try clearing up some files, optimising or repairing your database. This problem can be serious as your MySQL is usually stored in a partition on your hard disk and this error usually means it is full - if it is you need to free up space or your data could become corrupt.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×