Why does the DL Mod show the complete path to the file? Is there away to hide this?
Also, how do I hide the DL Button from Non Registerd users?
Thank for your support.
Randy
External File Names Shows Path?
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
External File Names Shows Path?
Du hast keine ausreichende Berechtigung, um die Dateianhänge dieses Beitrags anzusehen.
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
1. Wrong forum!
2. On external downloads the MOD will not filter anything, because the mod will ust the complete link to refer to the external file!
Just on internal downloads the mod will bere only display the needed filename.
To hide it here do this:
3. External downloads are not be controlled by the permission system from this MOD! To hide them for guests, change the permissions for viewing and download on the category settings on ACP.
2. On external downloads the MOD will not filter anything, because the mod will ust the complete link to refer to the external file!
Just on internal downloads the mod will bere only display the needed filename.
To hide it here do this:
Code: Alles auswählen
#
#-----[ OPEN ]-----
#
dl_mod/classes/class_dlmod.php
#
#-----[ FIND ]-----
#
$file_detail = $this->dl_file[$id]['file_name'];
#
#-----[ REPLACE WITH ]-----
#
$file_detail = ($this->dl_file[$id]['extern']) ? $lang['Dl_extern'] : $this->dl_file[$id]['file_name'];
Zuletzt geändert von oxpus am Fr 07.Jul, 2006 10:18, insgesamt 2-mal geändert.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!