Possible Whitespace/Error in Configuration File - Aborting. Output so far follows:
string(2) " "
(so sieht die config_inc.php aus)
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = **********;
?>
Ich benutze:
einen iss 7.5
Php Version 5.3
Mantis 1.2.7
Danke im Vorraus.
(Kodierung is utf-8 von der config_inc.php)
Whitespace/Error in Configuration File (bei Mantis 1.2.7)
Moderators: Developer, Contributor
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
1. diese Zeile Am Ende der Datei entfernen
2. Speichern als UTF-8 ohne BOM
Code: Select all
?>
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
Pkt.2 ist erledigt
Pkt.1 versteh ich leider net ganz
Pkt.1 versteh ich leider net ganz

Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
Hat's was gebracht?Odnek wrote:Pkt.2 ist erledigt
wie soll ich es anders schreiben? Lösche die Zeile am Ende der Datei, die das Fragezeichen und das Größerzeichen enthält.Odnek wrote: Pkt.1 versteh ich leider net ganz
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = xxx ;
?>
beides erledigt
Ergebnis: Possible Whitespace/Error in Configuration File - Aborting. Output so far follows:
string(3) ""
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = xxx ;
?>
beides erledigt
Ergebnis: Possible Whitespace/Error in Configuration File - Aborting. Output so far follows:
string(3) ""
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
Wieso beides erledigt?Odnek wrote:<?php
$g_hostname = 'localhost';
$g_db_type = 'mysql';
$g_database_name = 'bugtracker';
$g_db_username = 'root';
$g_db_password = xxx ;
?>
beides erledigt
Da ist immer noch die Zeile mit "?>" zu sehen
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
Danke,
das Problem ist gelöst.
das Problem ist gelöst.
Re: Whitespace/Error in Configuration File (bei Mantis 1.2.7
Immer noch hilfreich, "UTF-8 ohne BDOM" hats bei mir dann gelöst.