Seite 5 von 6

Verfasst: 02.06.2003 14:16
von oliver12345
Habt ihr immer noch keinen Plan?

Verfasst: 05.06.2003 18:39
von oliver12345
:cry: :( :-? :cry: :( :-? :cry: :( :-?

Verfasst: 08.06.2003 12:53
von oliver12345
Ich warte schon ewig auf 'ne Antwort. :cry:

Verfasst: 08.06.2003 13:06
von Tuxman
Acid hat geschrieben:Schauen tun sicherlich viele, nur wenn´s keine Antwort gibt... hmm, woran wird das liegen ?
;)

Verfasst: 08.06.2003 17:07
von oliver12345
Könnte es vielleicht daran liegen, dass ich nichts in der Datei "includes/template.php" geändert habe? In der Anleitung stand nämlich Folgendes:

Code: Alles auswählen

#-------------------------------------------------------------
# NOTE: THIS STEP IS ONLY NEEDED IF YOU USE THE FILE-BASED CACHED TEMPLATE.PHP FILE
#
# If you are using the template cache system (only file-based is mentioned here), 
# please adjust your template.php as followed (This will NOT disable the Template Caching)
# It is a little tweak to let the template use the non-cached output if no cached template 
# file could be found.
#-------------------------------------------------------------

# 
#-----[ OPEN ]--------------------------------------------- 
# 
includes/template.php

#
#-----[ FIND ]---------------------------------------------
# around line 144
			$fp = fopen($cache_file, 'w+');
			fwrite ($fp, '<?php' . "\n" . $this->compiled_code[$handle] . "\n?" . '>');

# 
#-----[ REPLACE WITH ]-------------------------------------- 
# 
			$fp = @fopen($cache_file, 'w+');
			if (!$fp)
			{
				eval($this->compiled_code[$handle]);
				return true;
			}
			fwrite ($fp, '<?php' . "\n" . $this->compiled_code[$handle] . "\n?" . '>');

#
#-----[ FIND ]---------------------------------------------
# around line 188
			$fp = fopen($cache_file, 'w+');
			fwrite ($fp, '<?php' . "\n" . $code . "\n?" . '>');

# 
#-----[ REPLACE WITH ]-------------------------------------- 
# 
			$fp = @fopen($cache_file, 'w+');
			if (!$fp)
			{
				$_str = '';
				eval($code);
				$this->assign_var($varname, $_str);
				return true;
			}
			fwrite ($fp, '<?php' . "\n" . $code . "\n?" . '>');


# EoM
Ich kann aber diese Zeilen nicht in meiner template.php finden. Sonst habe ich alles, was nötig war, installiert. Oder liegt es vielleicht doch an einer anderen Datei?

Verfasst: 10.06.2003 16:06
von oliver12345
Könnte das möglich sein? :-? :cry:

Verfasst: 15.06.2003 11:26
von oliver12345
:roll: :cry: :roll: :cry:

Verfasst: 19.06.2003 16:45
von oliver12345
Ich hab' jetzt phpBB 2.0.5 und es klappt immer noch nicht. :cry: :roll: