Seite 2 von 2

Verfasst: 13.05.2004 18:27
von alfonz
also, so wie es aussieht nähern wir uns dem Fehler,

php-topics hat keine Inhalte!

wie jetzt weiter? :oops:

Verfasst: 13.05.2004 19:07
von alfonz
alfonz hat geschrieben:also, so wie es aussieht nähern wir uns dem Fehler,

php-topics hat keine Inhalte!

wie jetzt weiter? :oops:
allerdings bin ich mir nicht so sicher, was unter Inhalten zu verstehen ist!

die Datei sieht so aus:

# Tabellenstruktur für Tabelle `phpbb_topics`
#

CREATE TABLE `phpbb_topics` (
`topic_id` mediumint(8) unsigned NOT NULL auto_increment,
`forum_id` smallint(8) unsigned NOT NULL default '0',
`topic_title` char(60) NOT NULL default '',
`topic_poster` mediumint(8) NOT NULL default '0',
`topic_time` int(11) NOT NULL default '0',
`topic_views` mediumint(8) unsigned NOT NULL default '0',
`topic_replies` mediumint(8) unsigned NOT NULL default '0',
`topic_status` tinyint(3) NOT NULL default '0',
`topic_vote` tinyint(1) NOT NULL default '0',
`topic_type` tinyint(3) NOT NULL default '0',
`topic_first_post_id` mediumint(8) unsigned NOT NULL default '0',
`topic_last_post_id` mediumint(8) unsigned NOT NULL default '0',
`topic_moved_id` mediumint(8) unsigned NOT NULL default '0',
`topic_attachment` tinyint(1) NOT NULL default '0',
`topic_icon` tinyint(2) unsigned NOT NULL default '0',
`topic_calendar_time` int(11) default NULL,
`topic_calendar_duration` int(11) unsigned default NULL,
PRIMARY KEY (`topic_id`),
KEY `forum_id` (`forum_id`),
KEY `topic_moved_id` (`topic_moved_id`),
KEY `topic_status` (`topic_status`),
KEY `topic_type` (`topic_type`),
KEY `topic_calendar_time` (`topic_calendar_time`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

#
# Daten für Tabelle `phpbb_topics`
#

INSERT INTO `phpbb_topics` (`topic_id`, `forum_id`, `topic_title`, `topic_poster`, `topic_time`, `topic_views`, `topic_replies`, `topic_status`, `topic_vote`, `topic_type`, `topic_first_post_id`, `topic_last_post_id`, `topic_moved_id`, `topic_attachment`, `topic_icon`, `topic_calendar_time`, `topic_calendar_duration`) VALUES (1, 1, 'Welcome to phpBB2 Plus 1.3', 2, 972086460, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, NULL, NULL);