Nach dem Update des Attachment Mod auf Version 2.4 wird im ACP bei "Downloads" im AWSW Portal diese Fehlermeldung ausgegeben:
Nichts desto trotz funktioniert das Intro + Portal - Downloads Addon mit Attachmod v.2.4.Fehlerhafte Attachment Mod Version von www.opentools.de. Du musst mindestens die Version 2.2.4 installiert haben.
Damit die Fehlermeldung nicht mehr ausgegeben wird, muß man in der admin/admin_introportalmoddownloads.php folgende Änderung vornehmen:
suche:
Code: Alles auswählen
//Wrong Attachment Version detected.<br />Please update your Attachment Mod (V' . $attachment_version . ') to at least Version 2.2.4.
if ( ( $attachment_version != '2.2.4') && (!strstr($attachment_version, '2.3.')) )
Code: Alles auswählen
//Wrong Attachment Version detected.<br />Please update your Attachment Mod (V' . $attachment_version . ') to at least Version 2.2.4.
if ( ( $attachment_version != '2.2.4') && (!strstr($attachment_version, '2.3.') && (!strstr($attachment_version, '2.4.'))) )
öffne language/lang_german/lang_introportal.php
suche:
Code: Alles auswählen
$lang['PortalDownloads_explain'] = 'Hier kannst Du Downloads bestimmen, die im Portal angezeigt werden sollen.<br><br>Vorraussetzung dafür ist ein installierter Attachment MOD von www.opentools.de in Version 2.3.x. <br><br>Als Download-ID muss die ID des Downloads angegeben werden. Also die Zahl, die hinter <b>download.php?id=</b> beim Anklicken des Downloadlinks im Beitrag angezeigt wird.<br><br>Sinnvoller Weise sollten hier nur Downloads aufgelistet werden, die auch für Gäste zugänglich sind, da diese Liste auch Gästen gezeigt wird...';
Code: Alles auswählen
$lang['PortalDownloads_explain'] = 'Hier kannst Du Downloads bestimmen, die im Portal angezeigt werden sollen.<br><br>Vorraussetzung dafür ist ein installierter Attachment MOD von www.opentools.de in Version 2.3.x oder höher. <br><br>Als Download-ID muss die ID des Downloads angegeben werden. Also die Zahl, die hinter <b>download.php?id=</b> beim Anklicken des Downloadlinks im Beitrag angezeigt wird.<br><br>Sinnvoller Weise sollten hier nur Downloads aufgelistet werden, die auch für Gäste zugänglich sind, da diese Liste auch Gästen gezeigt wird...';
suche:
Code: Alles auswählen
$lang['PortalDownloads_explain'] = 'Here you can enter attachments, wich will be diplayed in the portal.<br><br>A condition for the function is an installed Attachment MOD from www.opentools.de in Version 2.3.x. <br><br>You have to enter the Download-ID from the attachment. This is the number after <b>download.php?id=</b> wich is displayed in the link in the topic if you move the mouse ofer the downloadlink.<br><br>You should only enter attachments, that can be downloaded from guests too, because the downloadlist will be displayed to them too...';
Code: Alles auswählen
$lang['PortalDownloads_explain'] = 'Here you can enter attachments, wich will be diplayed in the portal.<br><br>A condition for the function is an installed Attachment MOD from www.opentools.de in at least Version 2.3.x. <br><br>You have to enter the Download-ID from the attachment. This is the number after <b>download.php?id=</b> wich is displayed in the link in the topic if you move the mouse ofer the downloadlink.<br><br>You should only enter attachments, that can be downloaded from guests too, because the downloadlist will be displayed to them too...';

Grüße und schönes Wochenende
Saint