Seite 12 von 14

Verfasst: 21.07.2008 20:09
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.

Verfasst: 22.07.2008 10:30
von Shugo
Hat alles nichts gebracht!

Verfasst: 23.07.2008 07:26
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.

Verfasst: 23.07.2008 10:05
von Shugo
Ohje ich lass es einfach bau den Mod aus und fertig ist^^
Trotzdem danke! :D

Verfasst: 02.08.2008 00:41
von 4seven
bittschee. der mod bekommt demnächst ein acp-modul, in dem man die stündlichen nachrichten und deren smilies editieren kann etc.

Verfasst: 09.08.2008 19:02
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

Verfasst: 09.08.2008 21:18
von 4seven
achso, hab ich gemacht, weil images eh im root liegt.
wird ausgebessert.

Verfasst: 09.08.2008 21:24
von nickvergessen
images/ liegt im root/, aber nicht jeder Datei wo das Bild angezeigt wird/werden sollte.

Verfasst: 09.08.2008 21:27
von 4seven
?

sagte doch, das ich es ausbessere

Verfasst: 10.08.2008 16:47
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! :-)