hallo zusammen,
ich habe das wohl komischste problem der typo3-welt für mich entdeckt:
ich wollte die extTables.php um ein paar zeilen erweitern, um mehrzeilige headerfelder zu bekommen.
da das nicht geklappt hat, habe ich die alte datei wieder auf den server gespielt.
doch seitdem habe ich einen zeichensatzfehler. typo3 zeigt mir links oben beim einloggen und in den frames diese zeichen an -->  <-- und lässt mich meine seiten nicht mehr bearbeiten. genauer gesagt die gesamte web-ansicht funktioniert nicht.
ändere ich die zeichenkodierung im firefox von iso-8859-1 zu UTF-8 klappt alles. die zeichen sind zwar noch im quellcode, aber typo3 lässt mich die seiten editieren.
weiß da irgendjemand rat? so sieht jedenfalls mein extTables.php jetzt aus:
PHP-Code:
<?php
/**
* Overriding $TCA
*
* The TYPO3 Configuration Array (TCA) is defined by the distributed tables.php and ext_tables.php files.
* If you want to extend and/or modify its content, you can do so with scripts like this.
* Or BETTER yet - with extensions like those found in the typo3conf/ext/ or typo3/ext/ folder.
* Extensions are movable to other TYPO3 installations and provides a much better division between things! Use them!
*
* Information on how to set up tables is found in the document "Inside TYPO3" available as a PDF from where you downloaded TYPO3.
*
* Usage:
* Just put this file to the location typo3conf/extTables.php and add this line to your typo3conf/localconf.php:
* $typo_db_extTableDef_script = 'extTables.php';
*/
// Rotate loginbox images from this directory
# $GLOBALS['TBE_STYLES']['loginBoxImage_rotationFolder'] = '../fileadmin/loginimg/';
// Raise upload limit for images in 'image' content-elements to 10*1024 bytes = 1MB
# $GLOBALS['TCA']['tt_content']['columns']['image']['config']['max_size'] = 10*1024;
// Changes date fields to datetime fields in pages and tt_content
# $GLOBALS['TCA']['tt_content']['columns']['starttime']['config']['eval'] = 'datetime';
# $GLOBALS['TCA']['tt_content']['columns']['endtime']['config']['eval'] = 'datetime';
# $GLOBALS['TCA']['pages']['columns']['starttime']['config']['eval'] = 'datetime';
# $GLOBALS['TCA']['pages']['columns']['endtime']['config']['eval'] = 'datetime';
?>
würd mich freuen, wenn jemand mir helfen könnte! witzigerweise tritt dieses problem im internet explorer nicht auf...