[TYPO3-german] Fehlermeldung nach Serverumzug
Jörg Bachmann
service at bachweb.de
Fri Mar 10 12:12:12 CET 2006
Liebe Kolleginnen und Kollegen,
ich bin mit Typo3 von einem Arbeitsserver auf den Webserver umgezogen.
fraureuth.gemeindearbeit.de --> www.kirchgemeinde-fraureuth.de
Beide haben die gleichen Parameter
Betriebssystem: Linux
PHP 4.4.1 fastcgi
Mysql: 3.23.55
Apache 1.3.27
Leider erhalte ich jetzt folgende Fehlermeldung und kann damit wenig
anfangen. Vielleicht kann mir da jemand einen Tip geben
xhtml' => 1) ); return $content; } /** * Processing all tags themselves *
(Some additions by Sacha Vorbeck) * * @param string Tag to process * @param
array Configuration array passing instructions for processing. If
count()==0, function will return value unprocessed. See source code for
details * @param boolean Is endtag, then set this. * @param boolean If set,
just return value straight away * @return string Processed value. * @access
private */ function processTag($value,$conf,$endTag,$protected=0) { //
Return immediately if protected or no parameters if ($protected ||
!count($conf)) return $value; // OK then, begin processing for XHTML output:
// STILL VERY EXPERIMENTAL!! if ($conf['xhtml']) { if ($endTag) { // Endtags
are just set lowercase right away $value = strtolower($value); } elseif
(substr($value,0,2)!=' list($tagName,$tagP)=split('[[:space:]]',$inValue,2);
// Separate attributes and tagname $tagName = strtolower($tagName); //
Process attributes $tagAttrib = $this->get_tag_attributes($tagP); if
(!strcmp($tagName,'img') && !isset($tagAttrib[0]['alt']))
$tagAttrib[0]['alt']=''; // Set alt attribute for all images (not XHTML
though...) if (!strcmp($tagName,'script') && !isset($tagAttrib[0]['type']))
$tagAttrib[0]['type']='text/javascript'; // Set type attribute for all
script-tags $outA=array(); reset($tagAttrib[0]);
while(list($attrib_name,$attrib_value)=each($tagAttrib[0])) { // Set
attributes: lowercase, always in quotes, with htmlspecialchars converted.
$outA[]=$attrib_name.'="'.$this->bidir_htmlspecialchars($attrib_value,2).'"'
; } $newTag='<'.trim($tagName.' '.implode(' ',$outA)); // All tags that are
standalone (not wrapping, not having endtags) should be ended with '/>' if
(t3lib_div::inList('img,br,hr,meta,link,base,area,input,param,col',$tagName)
|| substr($value,-2)=='/>') { $newTag.=' />'; } else { $newTag.='>'; }
$value = $newTag; } } return $value; } /** * Processing content between tags
for HTML_cleaner * * @param string The value * @param integer Direction,
either -1 or +1. 0 (zero) means no change to input value. * @param mixed Not
used, ignore. * @return string The processed value. * @access private */
function processContent($value,$dir,$conf) { if ($dir!=0) $value =
$this->bidir_htmlspecialchars($value,$dir); return $value; } } if
(defined('TYPO3_MODE') &&
$TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_parsehtml.php'])
{
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['t3lib/class.t3lib_parse
html.php']); } ?>
Warning: Cannot modify header information - headers already sent by (output
started at /www/htdocs/w00692d5/t3lib/class.t3lib_parsehtml.php:1323) in
/www/htdocs/w00692d5/tslib/class.tslib_fe.php on line 2614
Woran könnte das liegen?
Ich habe auch noch gleichzeitig ein Update von Typo3 3.8.0 nach 3.8.1
gemacht. Aber die Fehlermeldung kam auch schon vorher.
Viele Grüße
Jörg Bachmann
----------------------------------------------
Pfarrer Jörg Bachmann
Markt 7 - 08427 Fraureuth - Tel. 03761/2088
Email: service at bachweb.de
Internet: www.bachweb.de - www.gemeindearbeit.de
More information about the TYPO3-german
mailing list