@snoopmore funktionieren die anderen BBCodes denn korrekt?Ich kann mir höchstens vorstellen das es an diesem EasyBBCode Mod liegt aber wo genau der fehler ist ka

esperitox
Daraus lässt sich schliessen das das Font-Verzeichnis nicht vorhanden ist.Warning: file_exists() [function.file-exists]: Unable to access in /home/www/web10/html/phpBB203/text2schild.php on line 36
Warning: file_exists() [function.file-exists]: Unable to access in /home/www/web10/html/phpBB203/text2schild.php on line 138
Code: Alles auswählen
if((!$gd_info["FreeType Support"]) || (!file_exists($schriftdatei))){
Code: Alles auswählen
if((!$gd_info["FreeType Support"]) || (!$schriftdatei)){
Code: Alles auswählen
Parse error: parse error, unexpected T_VARIABLE in C:\wampp2\htdocs\phpBB2\includes\bbcode.php on line 98
Fatal error: Call to undefined function: make_clickable() in C:\wampp2\htdocs\phpBB2\newsmod.php on line 326
Code: Alles auswählen
function load_bbcode_template()
{
global $template;
$tpl_filename = $template->make_filename('bbcode.tpl');
$tpl = fread(fopen($tpl_filename, 'r'), filesize($tpl_filename));
// replace \ with \\ and then ' with \'.
$tpl = str_replace('\\', '\\\\', $tpl);
$tpl = str_replace('\'', '\\\'', $tpl);
// strip newlines.
$tpl = str_replace("\n", '', $tpl);