Seite 2 von 4
Verfasst: 18.03.2007 10:32
von DrPepper
Habe hier bei der Arbeit zwar keinen FTP-Zugriff, habe aber trotzdem rausgefunden,d ass die db_install.php zum Download Mod gehört. Wenn ich diese Datei aufrufe, kommt's zur folgender Fehlermeldung:
Warning: main(./extension.inc): failed to open stream: No such file or directory in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 23
Warning: main(./extension.inc): failed to open stream: No such file or directory in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 23
Warning: main(): Failed opening './extension.inc' for inclusion (include_path='.:/usr/share/php:..') in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 23
Warning: main(./common.): failed to open stream: No such file or directory in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 24
Warning: main(./common.): failed to open stream: No such file or directory in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 24
Warning: main(): Failed opening './common.' for inclusion (include_path='.:/usr/share/php:..') in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 24
Fatal error: Call to undefined function: session_pagestart() in /www/htdocs/w00608ca/intern/admin/mods/downloadmod/db_install.php on line 29
Was sagt mir das? Kann mir bitte jemand sagen,w as ich korrigieren muss?
Verfasst: 18.03.2007 10:42
von Mahony
Hallo
Lade die db_install.php in den Foren root (da wo die config.php liegt) hoch und rufe sie in deinem Browser auf.
Grüße: Mahony
Verfasst: 18.03.2007 10:50
von DrPepper
Mahony hat geschrieben:Hallo
Lade die db_install.php in den Foren root (da wo die config.php liegt) hoch und rufe sie in deinem Browser auf.
Schiete, das kann ich erst heute abend gegen 21 Uhr machen. Oder soll ich mal eben bei uns in der IT fragen, ob die mir hier in der FIrma paar Userrechte ändern?

)
Danke für die Info. Ich probiere es heute abend dann mal aus.
Verfasst: 18.03.2007 11:35
von DrPepper
Ein Bekannter von mir hat gerade von seinem Rechner zu hause die Datei db_install.php in das o.g. Verzeichnis kopiert. Nachdem ich nun die db_install.php aufrufe kommt die Fehlermedlung nicht mehr, dafür kommt jetzt eine neue

Nämlich diese:
phpBB : Kritischer Fehler
Could not query download mod configuration
DEBUG MODE
SQL Error : 1146 Table 'd0049d23.phpbb_dl_config' doesn't exist
SELECT config_value FROM phpbb_dl_config WHERE config_name = 'use_hacklist'
Line : 277
File : page_header.php
Wo hackst denn jetzt noch?

Verfasst: 18.03.2007 11:52
von Mahony
Hallo
Lies dir dazu bitte das hier durch
KB:130.
Ich nehme an die includes/
constants.php wurde nicht bearbeitet.
Siehe install.txt
Code: Alles auswählen
#-----[ FIND ]--------------------------------------------------
#
define('PAGE_GROUPCP', -11);
#
#-----[ AFTER, ADD ]--------------------------------------------------
#
// Download MOD 5
define('PAGE_DOWNLOADS', -1290);
define('PAGE_HACKSLIST', -1291);
#
#-----[ FIND ]--------------------------------------------------
#
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
#
#-----[ AFTER, ADD ]--------------------------------------------------
#
// Download MOD 5
define('DL_AUTH_TABLE', $table_prefix.'dl_auth');
define('DL_CAT_TABLE', $table_prefix.'downloads_cat');
define('DL_CONFIG_TABLE', $table_prefix.'dl_config');
define('DL_EXT_BLACKLIST', $table_prefix.'dl_ext_blacklist');
define('DL_RATING_TABLE', $table_prefix.'dl_ratings');
define('DOWNLOADS_TABLE', $table_prefix.'downloads');
define('DL_STATS_TABLE', $table_prefix.'dl_stats');
define('DL_COMMENTS_TABLE', $table_prefix.'dl_comments');
define('DL_BANLIST_TABLE', $table_prefix.'dl_banlist');
define('DL_FAVORITES_TABLE', $table_prefix.'dl_favorites');
define('DL_NOTRAF_TABLE', $table_prefix.'dl_notraf');
define('DL_HOTLINK_TABLE', $table_prefix.'dl_hotlink');
Grüße: Mahony
Verfasst: 18.03.2007 12:01
von DrPepper
Mahony hat geschrieben:Lies dir dazu bitte das hier durch KB:130.
Oha, also wieder 'nen manueller Eingriff? Na wenn das mal gut geht. Ich hab' doch von Datenbanken geschweige denn programmieren keine Ahnung
Mahony hat geschrieben:Ich nehme an die includes/constants.php wurde nicht bearbeitet. Siehe install.txt
Da magst du recht haben. Die install.txt ist von dem Download Mod, oder?
Verfasst: 19.03.2007 00:14
von DrPepper
Mahony hat geschrieben:Hallo
Lies dir dazu bitte das hier durch KB:130.
Ich nehme an die includes/constants.php wurde nicht bearbeitet.
Siehe install.txt
Ich habe mir das jetzt mal angeguckt und kann nur sagen "Installation = easy"???? Ich verstehe noch nicht mal Bahnhof. Ich verstehe nicht im Ansatz, was ich wo und wie ändern muss. Ich raffe ich nie.
Gibt's die Möglichkeit, dass mir das jemand zusammenbastelt? Ich weiß, dass es dafür ein Jobforum gibt, aber da ich das Forum mit einem Downloadbereich für die Feuerwehr, in der ich bin, erstellen soll, kann ich dafür nicht bezahlen. Erbarmt sich trotzdem jemand? Wäre super!
Gruß,
DrPepper
Verfasst: 19.03.2007 00:48
von Mahony
Hallo
Öffne die includes/
constants.php
Suche
und füge danach ein
Code: Alles auswählen
// Download MOD 5
define('PAGE_DOWNLOADS', -1290);
define('PAGE_HACKSLIST', -1291);
Suche nach
Code: Alles auswählen
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
und füge danach ein
Code: Alles auswählen
// Download MOD 5
define('DL_AUTH_TABLE', $table_prefix.'dl_auth');
define('DL_CAT_TABLE', $table_prefix.'downloads_cat');
define('DL_CONFIG_TABLE', $table_prefix.'dl_config');
define('DL_EXT_BLACKLIST', $table_prefix.'dl_ext_blacklist');
define('DL_RATING_TABLE', $table_prefix.'dl_ratings');
define('DOWNLOADS_TABLE', $table_prefix.'downloads');
define('DL_STATS_TABLE', $table_prefix.'dl_stats');
define('DL_COMMENTS_TABLE', $table_prefix.'dl_comments');
define('DL_BANLIST_TABLE', $table_prefix.'dl_banlist');
define('DL_FAVORITES_TABLE', $table_prefix.'dl_favorites');
define('DL_NOTRAF_TABLE', $table_prefix.'dl_notraf');
define('DL_HOTLINK_TABLE', $table_prefix.'dl_hotlink');
Grüße: Mahony
Verfasst: 19.03.2007 10:04
von DrPepper
Mahony hat geschrieben:Hallo
Öffne die includes/constants.php
Suche...
und füge danach ein...
Super, danke. Werde ich heute abend machen!
Verfasst: 19.03.2007 23:16
von DrPepper
Mahony hat geschrieben:Öffne die includes/
constants.php
Suche
und füge danach ein......
Suche nach
Code: Alles auswählen
define('VOTE_USERS_TABLE', $table_prefix.'vote_voters');
und füge danach ein.....
Ich habe in der o.g. Datei nachgeguckt. Dort sind diese Einträge bereits. Trotzdem erscheint nach wie vor diese Fehlermeldung:
phpBB : Kritischer Fehler
Could not query download mod configuration
DEBUG MODE
SQL Error : 1146 Table 'd0049d23.phpbb_dl_config' doesn't exist
SELECT config_value FROM phpbb_dl_config WHERE config_name = 'use_hacklist'
Line : 277
File : page_header.php
Hiiiiiiiiilfeeeeeeeeee
