mod_impressum_0_1_6 fehler meim aufrufen ??
Forumsregeln
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
mod_impressum_0_1_6 fehler meim aufrufen ??
ich habe das Impressum installiert hoffe das alles richtig war aber nach dem aufrufen kommt folgende Fehlermeldung:
Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Table 'DB379732.rezeptparadiesphpbb_impressum' doesn't exist [1146]
SQL
SELECT * FROM rezeptparadiesphpbb_impressum ORDER BY name
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/acp/acp_impressum.php
LINE: 52
CALL: dbal_mysql->sql_query()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_impressum->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Kann mir jemand helfen ?? danke schon mal !!!!
Allgemeiner Fehler
SQL ERROR [ mysql4 ]
Table 'DB379732.rezeptparadiesphpbb_impressum' doesn't exist [1146]
SQL
SELECT * FROM rezeptparadiesphpbb_impressum ORDER BY name
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal_mysql->sql_error()
FILE: includes/acp/acp_impressum.php
LINE: 52
CALL: dbal_mysql->sql_query()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_impressum->main()
FILE: adm/index.php
LINE: 74
CALL: p_master->load_active()
Kann mir jemand helfen ?? danke schon mal !!!!
alles was da stand war zur sql
zum erstellen :
CREATE TABLE `phpbb_impressum` (
`name` smallint(2) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`aktiv` smallint(1) NOT NULL default '0'
) TYPE=MyISAM;
für die daten :
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES
(1, '', 1),
(2, '', 1),
(3, '', 1),
(4, '', 1),
(5, '', 1),
(6, '', 1),
(7, '', 1),
(8, '', 0),
(9, '', 1),
(10, '', 1),
(11, '', 1),
(12, '', 1),
(13, '', 1),
(14, '', 1),
(15, '', 1),
(16, '', 1),
(17, '', 1),
(18, '', 1),
(19, '', 1);
die habe ich jeweils rein kopiert und ausgeführt im phpmyadmin ??!!
zum erstellen :
CREATE TABLE `phpbb_impressum` (
`name` smallint(2) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`aktiv` smallint(1) NOT NULL default '0'
) TYPE=MyISAM;
für die daten :
INSERT INTO `phpbb_impressum` (`name`, `value`, `aktiv`) VALUES
(1, '', 1),
(2, '', 1),
(3, '', 1),
(4, '', 1),
(5, '', 1),
(6, '', 1),
(7, '', 1),
(8, '', 0),
(9, '', 1),
(10, '', 1),
(11, '', 1),
(12, '', 1),
(13, '', 1),
(14, '', 1),
(15, '', 1),
(16, '', 1),
(17, '', 1),
(18, '', 1),
(19, '', 1);
die habe ich jeweils rein kopiert und ausgeführt im phpmyadmin ??!!
- BaerchenHH
- Mitglied
- Beiträge: 1067
- Registriert: 29.02.2008 01:42
- Wohnort: Hamburg
Versuchs mal so:
Code: Alles auswählen
CREATE TABLE `rezeptparadiesphpbb_impressum` (
`name` smallint(2) NOT NULL default '0',
`value` varchar(255) NOT NULL default '',
`aktiv` smallint(1) NOT NULL default '0'
) TYPE=MyISAM;
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('1', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('2', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('3', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('4', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('5', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('6', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('7', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('8', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('9', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('10', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('11', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('12', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('13', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('14', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('15', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('16', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('17', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('18', '', 1);
INSERT INTO `rezeptparadiesphpbb_impressum` VALUES ('19', '', 1);
Meistens sitzt der Fehler nicht im Computer, sondern davor...

Das Diskussionsforum für Schule und Bildung: http://www.SchulBildungsForum.de


Das Diskussionsforum für Schule und Bildung: http://www.SchulBildungsForum.de
- BaerchenHH
- Mitglied
- Beiträge: 1067
- Registriert: 29.02.2008 01:42
- Wohnort: Hamburg
ACP -> System -> Modul-Konfiguration - Administrations-Bereich -> Modul auswählen und hinzufügen...
Meistens sitzt der Fehler nicht im Computer, sondern davor...

Das Diskussionsforum für Schule und Bildung: http://www.SchulBildungsForum.de


Das Diskussionsforum für Schule und Bildung: http://www.SchulBildungsForum.de