!!Error! Table 'ubercow_bbshrine.smf_log_errors' doesn't exist

Started by Shadow03, February 11, 2009, 10:09:01 AM

Previous topic - Next topic

Shadow03

While trying to upgrade from Beta 4 to RC1, I got the following error:

!!Error!
Table 'ubercow_bbshrine.smf_log_errors' doesn't exist



How do I solve this?

karlbenson

It appears somehow that you've lost an default table of smf.

In PHPMYADMIN, inside your database, run the following query
(change smf_ to your forums prefix)


CREATE TABLE smf_log_errors (
  id_error mediumint(8) unsigned NOT NULL auto_increment,
  log_time int(10) unsigned NOT NULL default '0',
  id_member mediumint(8) unsigned NOT NULL default '0',
  ip char(16) NOT NULL default '                ',
  url text NOT NULL,
  message text NOT NULL,
  session char(32) NOT NULL default '                                ',
  error_type char(15) NOT NULL default 'general',
  file tinytext NOT NULL,
  line mediumint(8) unsigned NOT NULL default '0',
  PRIMARY KEY (id_error),
  KEY log_time (log_time),
  KEY id_member (id_member),
  KEY ip (ip(16))
) ENGINE=MyISAM;


Then try running upgrade again.

greyknight17

Shadow03, is this issue resolved after running the above query?

Shadow03


Advertisement: