Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

fusion_messages

Asked Modified Viewed 1,993 times
K
kailass
K
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 8 threads in the forums
  • Started this discussions
asked
Junior Member

hello, has anyone ever faced a problem like that :

Table 'fusion_messages' is marked as crashed and should be repaired


if yes, it would be very nice to share your information with me ;)

thank you
0 replies

5 posts

B
Bman
B
Bman 10
  • Newbie, joined since
  • Contributed 5 posts on the community forums.
answered
Newbie

Use whatever tool you have to run sql queries (phpmyadmin?)

run the following:

CHECK TABLE fusion_messages

then

REPAIR TABLE fusion_messages

And check the output.

** I Would backup your database before running the REPAIR TABLE function as it can cause data loss**

Good luck!!

Dave
0 replies
K
kailass
K
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 8 threads in the forums
  • Started this discussions
answered
Junior Member

guys, i dont understand anything about mysql databases... :| maybe there is some kind of script to run ?
0 replies
K
kailass
K
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 8 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

chankarwing wrote:
try what bman suggested if that doesn't help then ermmmm....drop the table and remake the table (NOT THE DATABASE).

Im guessing misuse of the PM system is to blame for this ;)


i' ve droped a table fusion_messages , and now i got an error :

Table 'muzika_1.fusion_messages' doesn't exist
0 replies
F
Falk
F
Falk 131
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 11 questions
answered
Super Admin

Go to admin => custom pges, preview this:

<?php
$result = dbquery("CREATE TABLE ".$db_prefix."messages (
message_id MEDIUMINT(8) UNSIGNED NOT NULL AUTO_INCREMENT,
message_to MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
message_from MEDIUMINT(8) UNSIGNED NOT NULL DEFAULT '0',
message_subject VARCHAR(100) NOT NULL DEFAULT '',
message_message TEXT NOT NULL,
message_smileys CHAR(1) NOT NULL DEFAULT '',
message_read TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
message_datestamp INT(10) UNSIGNED NOT NULL DEFAULT '0',
message_folder TINYINT(1) UNSIGNED NOT NULL DEFAULT  '0',
PRIMARY KEY (message_id)
) TYPE=MyISAM;");
echo "Messages table restored";
?>


//Moderator: fixed misplaced [ / code] tag
Edited by Sveinungs on 06-08-2007 18:37,
0 replies
K
kailass
K
  • Junior Member, joined since
  • Contributed 19 posts on the community forums.
  • Started 8 threads in the forums
  • Started this discussions
answered
Junior Member

thanks everybody for your help, i have reinstaled my fusion, and everything went good ;)
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 5 posts
  • Votes 0 votes
  • Topic users 3 members

0 participants

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet