Seite 1 von 2

Upload MOD, kleine Hilfe

Verfasst: 05.04.2006 15:58
von perikles
Mein Problem

Code: Alles auswählen

COPY phpbb2/upload/index.html TO upload/index.html
Ich find nirgends im normalen phpBB2 verzeichnis "upload"

Ich hoff mir kann geholfen werden :grin:
Also wohin muss diese datei:

Code: Alles auswählen

upload/index.html

greeu peri

Verfasst: 05.04.2006 16:01
von enymisc
Du erstellst einfach einen neuen Ordner namens upload und dann ladest du die Datei in den Ordner hoch, fertig :D :wink:

Verfasst: 05.04.2006 16:16
von perikles
Ok, dann passt as, gut nächste blöde frage:

Code: Alles auswählen

#
#-----[ SQL ]------------------------------------------
#

1.: RUN upload_mod_db_install.php AND DELETE IT AFTER THAT !!!
2.: Set the directory "upload" with FTP-CHMOD to 777 !!!

1.: FÜHRE DIE upload_mod_db_install.php AUS UND LÖSCHE SIE DANACH !!!
2.: Setze das Verzeichnis "upload" per FTP-CHMOD auf 777 !!!
ich hab

Code: Alles auswählen

RUN upload_mod_db_install.php
dann kommt:
phpBB : Kritischer Fehler

Could not connect to the database

Und nun?

Verfasst: 05.04.2006 16:39
von Peggy
Kommt die Meldung, wenn du die Datei ausführenm willst oder betrifft das jetzt dein gesamtes Forum (lädt der Foren-Index ganz normal)?

KB:131

Verfasst: 05.04.2006 16:48
von perikles
nur wenn ich das ausführen möchte

Verfasst: 05.04.2006 16:57
von Peggy
Dann würde ich die SQL-Befehle in die Datenbank kopieren ...

Hast du mal nen Link zu dem Mod? Download?

Verfasst: 05.04.2006 16:59
von perikles

Verfasst: 05.04.2006 17:12
von Peggy
Das hier habe ich in der upload_mod_db_install.php gefunden:
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_active', '1')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_dir', 'http://www.domain.de/phpBB2/')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_uploaddir', 'upload/')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_size', '512000')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_pixel', '700')"
Jetzt müsste nur noch jemand so nett sein, das in SQL umzuschreiben. Denn meiner einer kann das nicht.

@perikles: Zugang zur Datenbank (phpmyAdmin) hast du doch, oder?

Verfasst: 05.04.2006 17:17
von perikles
Ja klar...und dann? :oops:

Verfasst: 05.04.2006 17:22
von hagily
Peggy hat geschrieben:Das hier habe ich in der upload_mod_db_install.php gefunden:
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_active', '1')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_dir', 'http://www.domain.de/phpBB2/')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_uploaddir', 'upload/')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_size', '512000')",
"INSERT INTO " . $table_prefix . "config VALUES ('uploadmod_pixel', '700')"
Jetzt müsste nur noch jemand so nett sein, das in SQL umzuschreiben. Denn meiner einer kann das nicht.

@perikles: Zugang zur Datenbank (phpmyAdmin) hast du doch, oder?
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_active', '1');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_uploaddir', 'upload/');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_size', '512000');
Insert into phpbb_config ('config_name', 'config_value') VALUES ('uploadmod_pixel', '700');

hagily