[ABD] Time

In diesem Forum können Mod-Autoren ihre Mods vorstellen, die sich noch im Entwicklungsstatus befinden. Der Einbau in Foren im produktiven Betrieb wird nicht empfohlen.
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.
4seven
Mitglied
Beiträge: 5869
Registriert: 21.04.2007 06:18

Beitrag von 4seven »

Hallo Shugo,

normal ist das nicht. ich hatte das aber auch einmal, da lags am cache.
leere mal den foren-cache komplett, auch den style-cache und leere auch mal deinen browser-cache + F5.
wenn das auch nichts nützt, überprüfe mal die einträge in der functions.php.
Shugo
Mitglied
Beiträge: 642
Registriert: 05.02.2008 17:23

Beitrag von Shugo »

Hat alles nichts gebracht!
4seven
Mitglied
Beiträge: 5869
Registriert: 21.04.2007 06:18

Beitrag von 4seven »

plan a:
check mal das chmod des smilie-verzeichnisses und die install nochmals akribisch und verlinke bitte deine functions.php und lang_ti_ba_gr.php (möglicherweise wurde die lang-datei nicht mit dem richtigen editor bearbeitet (thema > utf8 ohne bom). dann würde es da evtl. auch probleme geben.

plan b:
zur not ersetze relevante dateien durch deine backups und baue den mod nochmal ein. ist ja einfach gestrickt. wenn das alles nichts bringt, weiß ich auch nicht weiter. der mod selbst ist x-fach erprobt und bis dato ist so ein problem nicht aufgetaucht. ich würde für den fall dann auf ein nicht standardkonformes board- oder provider-caching tippen.
Shugo
Mitglied
Beiträge: 642
Registriert: 05.02.2008 17:23

Beitrag von Shugo »

Ohje ich lass es einfach bau den Mod aus und fertig ist^^
Trotzdem danke! :D
4seven
Mitglied
Beiträge: 5869
Registriert: 21.04.2007 06:18

Beitrag von 4seven »

bittschee. der mod bekommt demnächst ein acp-modul, in dem man die stündlichen nachrichten und deren smilies editieren kann etc.
Benutzeravatar
nickvergessen
Ehrenadmin
Beiträge: 11559
Registriert: 09.10.2006 21:56
Wohnort: Stuttgart, Germany
Kontaktdaten:

Beitrag von nickvergessen »

kleiner Fehler

In der Sprachdatei ist ja folgendes zu finden:

Code: Alles auswählen

         '00' => '<img src="images/greetings/0.gif" alt="" />', 
         '01' => '<img src="images/greetings/1.gif" alt="" />', 
         '02' => '<img src="images/greetings/2.gif" alt="" />', 
         '03' => '<img src="images/greetings/3.gif" alt="" />', 
		 '04' => '<img src="images/greetings/4.gif" alt="" />', 
         '05' => '<img src="images/greetings/5.gif" alt="" />', 
         '06' => '<img src="images/greetings/6.gif" alt="" />', 
         '07' => '<img src="images/greetings/7.gif" alt="" />', 
		 '08' => '<img src="images/greetings/8.gif" alt="" />', 
		 '09' => '<img src="images/greetings/9.gif" alt="" />', 
         '10' => '<img src="images/greetings/10.gif" alt="" />', 
         '11' => '<img src="images/greetings/11.gif" alt="" />', 
         '12' => '<img src="images/greetings/12.gif" alt="" />', 
		 '13' => '<img src="images/greetings/13.gif" alt="" />', 
		 '14' => '<img src="images/greetings/14.gif" alt="" />', 
         '15' => '<img src="images/greetings/15.gif" alt="" />', 
         '16' => '<img src="images/greetings/16.gif" alt="" />', 
         '17' => '<img src="images/greetings/17.gif" alt="" />', 
		 '18' => '<img src="images/greetings/18.gif" alt="" />', 
		 '19' => '<img src="images/greetings/19.gif" alt="" />', 
		 '20' => '<img src="images/greetings/20.gif" alt="" />', 
         '21' => '<img src="images/greetings/21.gif" alt="" />', 
         '22' => '<img src="images/greetings/22.gif" alt="" />',
         '23' => '<img src="images/greetings/23.gif" alt="" />', 
Dabei fehlt der $phpbb_root_path:

Code: Alles auswählen

	'GREETINGZ_SMILIES' => array( 
         '00' => '<img src="' . $phpbb_root_path . 'images/greetings/0.gif" alt="" />', 
         '01' => '<img src="' . $phpbb_root_path . 'images/greetings/1.gif" alt="" />', 
         '02' => '<img src="' . $phpbb_root_path . 'images/greetings/2.gif" alt="" />', 
         '03' => '<img src="' . $phpbb_root_path . 'images/greetings/3.gif" alt="" />', 
		 '04' => '<img src="' . $phpbb_root_path . 'images/greetings/4.gif" alt="" />', 
         '05' => '<img src="' . $phpbb_root_path . 'images/greetings/5.gif" alt="" />', 
         '06' => '<img src="' . $phpbb_root_path . 'images/greetings/6.gif" alt="" />', 
         '07' => '<img src="' . $phpbb_root_path . 'images/greetings/7.gif" alt="" />', 
		 '08' => '<img src="' . $phpbb_root_path . 'images/greetings/8.gif" alt="" />', 
		 '09' => '<img src="' . $phpbb_root_path . 'images/greetings/9.gif" alt="" />', 
         '10' => '<img src="' . $phpbb_root_path . 'images/greetings/10.gif" alt="" />', 
         '11' => '<img src="' . $phpbb_root_path . 'images/greetings/11.gif" alt="" />', 
         '12' => '<img src="' . $phpbb_root_path . 'images/greetings/12.gif" alt="" />', 
		 '13' => '<img src="' . $phpbb_root_path . 'images/greetings/13.gif" alt="" />', 
		 '14' => '<img src="' . $phpbb_root_path . 'images/greetings/14.gif" alt="" />', 
         '15' => '<img src="' . $phpbb_root_path . 'images/greetings/15.gif" alt="" />', 
         '16' => '<img src="' . $phpbb_root_path . 'images/greetings/16.gif" alt="" />', 
         '17' => '<img src="' . $phpbb_root_path . 'images/greetings/17.gif" alt="" />', 
		 '18' => '<img src="' . $phpbb_root_path . 'images/greetings/18.gif" alt="" />', 
		 '19' => '<img src="' . $phpbb_root_path . 'images/greetings/19.gif" alt="" />', 
		 '20' => '<img src="' . $phpbb_root_path . 'images/greetings/20.gif" alt="" />', 
         '21' => '<img src="' . $phpbb_root_path . 'images/greetings/21.gif" alt="" />', 
         '22' => '<img src="' . $phpbb_root_path . 'images/greetings/22.gif" alt="" />',
         '23' => '<img src="' . $phpbb_root_path . 'images/greetings/23.gif" alt="" />', 
		 ),
noch besser wäre, dass ganze im Template mit

Code: Alles auswählen

T_IMAGES_PATH
zu machen
kein Support per PN
4seven
Mitglied
Beiträge: 5869
Registriert: 21.04.2007 06:18

Beitrag von 4seven »

achso, hab ich gemacht, weil images eh im root liegt.
wird ausgebessert.
Benutzeravatar
nickvergessen
Ehrenadmin
Beiträge: 11559
Registriert: 09.10.2006 21:56
Wohnort: Stuttgart, Germany
Kontaktdaten:

Beitrag von nickvergessen »

images/ liegt im root/, aber nicht jeder Datei wo das Bild angezeigt wird/werden sollte.
kein Support per PN
4seven
Mitglied
Beiträge: 5869
Registriert: 21.04.2007 06:18

Beitrag von 4seven »

?

sagte doch, das ich es ausbessere
Benutzeravatar
HEADLINE
Mitglied
Beiträge: 415
Registriert: 09.09.2007 17:23
Wohnort: Zweibrücken
Kontaktdaten:

Beitrag von HEADLINE »

4seven hat geschrieben:
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3487: Undefined index: GREETINGZ_STRONG_BEGIN
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3490: Undefined index: GREETINGZ_STRONG_END
Besagt, das die Variable in der Lang nicht gefüllt ist oder/und sich "ungenutzt" im Template befindet. Kommentiert man sie in der Lang aus und entfernt die "ungenutze" Variable aus dem Template, ist auch die Meldung verschwunden.
Danke @ 4seven für die schnelle Lösung!

Ich hatte den Befehl (Fettschrift) in der Lang auskommentiert, jedoch die Variablen im Template nicht entfernt!

Jetzt passt es....die Meldung ist weg! :-)
Antworten

Zurück zu „[3.0.x] Mods in Entwicklung“