首页 > 网站 > 建站经验 > 正文

UCHome 错误提示 Incorrect file format uchome_log

2024-08-30 19:06:57
字体:
来源:转载
供稿:网友

在安装UChome出现Incorrect file format /'uchome_log/' 错误,下面我来介绍我在碰到这种问题的解决办法.

  1. MySQL Error 
  2. Message: MySQL Query Error 
  3. SQL: INSERT INTO uchome_log (`id`, `idtype`) VALUES ('6431''uid'
  4. Error: Incorrect file format 'uchome_log' 
  5. Errno.: 130 
  6. Click here to seek help.  

这个怎么解决,用tools修复不了啊,通过PHPMyadmin进入修复“uchome_log”表后仍然无效,该表一直处于使用中.

最终解决办法是先删除该表,再创建该表,创建的SQL语句如下:

  1. Create TABLE uchome_log ( 
  2. logid mediumint(8) unsigned NOT NULL auto_increment, 
  3. id mediumint(8) unsigned NOT NULL default '0'
  4. idtype char(20) NOT NULL default ''
  5. PRIMARY KEY (logid)--Vevb.com 
  6. ) ENGINE=MyISAM; 

注意:修复表也是没有用的,我们必须重新创建这个表哦.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表