Seite 1 von 1

Error in emailer

Verfasst: 19.12.2003 09:26
von jörg gierth
Hallo wenn ich eine Antwort auf eine PN erstellen will,
bekomme ich folgenden Fehler angezeigt.

Code: Alles auswählen

 
Could not find email template file :: privmsg_notify

DEBUG MODE

Line : 112
File : /usr/local/apache/www/web34/html/phpBB2/includes/emailer.php3 
und das steht an der Stelle:

Code: Alles auswählen

     if (trim($template_lang) == '')
      {
         $template_lang = $board_config['default_lang'];
      }

      if (empty($this->tpl_msg[$template_lang . $template_file]))
      {
         $tpl_file = $phpbb_root_path . 'language/lang_' . $template_lang . '/email/' . $template_file . '.tpl';

         if (!@file_exists(@phpbb_realpath($tpl_file)))
         {
            $tpl_file = $phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/email/' . $template_file . '.tpl';

            if (!@file_exists(@phpbb_realpath($tpl_file)))
            {
               message_die(GENERAL_ERROR, 'Could not find email template file :: ' . $template_file, '', __LINE__, __FILE__);
            }
         }

         if (!($fd = @fopen($tpl_file, 'r')))
         {
            message_die(GENERAL_ERROR, 'Failed opening template file :: ' . $tpl_file, '', __LINE__, __FILE__);
         }

         $this->tpl_msg[$template_lang . $template_file] = fread($fd, filesize($tpl_file));
         fclose($fd);
      }

      $this->msg = $this->tpl_msg[$template_lang . $template_file];
Mit diesem Part kann ich nichts anfangen wer kann mir hier evt. Helfen.


Gruß Jörg

Verfasst: 19.12.2003 10:59
von Acid
Es wird die privmsg_notify.tpl verlangt, welche aber nicht vorhanden ist.
(Sollte normalerweile im /email Ordner der installierten Sprache(n) zu finden sein.)

Verfasst: 19.12.2003 11:20
von jörg gierth
Danke Dir ,
auf das Verzeichnis kann über ftp:// nicht zugegriffen werden.
Da muß ich mal schauen warum dies so ist.

Gruß Jörg