Hi Everything just fine in PHPDug languages - except mine This is the error i get in header: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /XXX/XXXXXX/public_html/NAMEOFTHESITE/includes/lang/lang_mylanguage.php:1) in /XXXX/XXXXXXX/public_html/NAMEOFMYSITE/index.php on line 14 And i get some sort of different frame on top, and bellow the correct site. Any idea why this had to happen just with my language pack? Greenies ahead >
Not enough information. Actually, this error states that lang_mylanguage.php contains some string at line 1, which was outputted to browser. Ensure you have no text or whitespace before opening php tag (<?php).
To all interested: it was an UTF BOM (invisible chars) embedded at the beginning of file. So do not use Notepad for editing UTF-8 encoded php files on Windows. (Notepad2 is more suitable for example).