MyBB.de Forum
mybb sessions - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-52.html)
+---- Thema: mybb sessions (/thread-21663.html)



mybb sessions - terra - 02.09.2009

Kann mir einer fix die Tabelle "mybb_sessions" exportieren (von seiner Datenbank) und zum Download anbieten. Meine ist beschädigt und ich möchte eine neue importieren, danke.


RE: mybb sessions - frostschutz - 02.09.2009

Code:
CREATE TABLE mybb_sessions (
  sid varchar(32) NOT NULL default '',
  uid int unsigned NOT NULL default '0',
  ip varchar(40) NOT NULL default '',
  time bigint(30) NOT NULL default '0',
  location varchar(150) NOT NULL default '',
  useragent varchar(100) NOT NULL default '',
  anonymous int(1) NOT NULL default '0',
  nopermission int(1) NOT NULL default '0',
  location1 int(10) NOT NULL default '0',
  location2 int(10) NOT NULL default '0',
  PRIMARY KEY(sid),
  KEY location1 (location1),
  KEY location2 (location2),
  KEY time (time),
  KEY uid (uid),
  KEY ip (ip)
) TYPE=MyISAM;



RE: mybb sessions - terra - 03.09.2009

Sorry das ich so spät erst antworte Smile

1000end Dank !