Nach ein wenig friemeln fuktionierte die Installation. Allerdings erschein seit dem folgende Fehlermeldung "über" der eigentlchen Seite:
1 2 3 4 5 6 7 | Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /data/multiserv/users/1166906/projects/2567026/www/index.php:1) in /data/multiserv/users/1166906/projects/2567026/www/index.php on line 24 Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /data/multiserv/users/1166906/projects/2567026/www/index.php:1) in /data/multiserv/users/1166906/projects/2567026/www/index.php on line 24 Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/1166906/projects/2567026/www/index.php:1) in /data/multiserv/users/1166906/projects/2567026/www/include/includes/func/user.php on line 102 Warning: Cannot modify header information - headers already sent by (output started at /data/multiserv/users/1166906/projects/2567026/www/index.php:1) in /data/multiserv/users/1166906/projects/2567026/www/include/includes/class/design.php on line 23 |
nehme an da hat was mit dem Eintrag in der Index.php zu tun.
die sieht folgendermaßen aus:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | <?php # Copyright by: Manuel # Support: www.ilch.de define ( 'main' , TRUE ); //Konfiguration zur Anzeige von Fehlern //Auf http://www.php.net/manual/de/function.error-reporting.php sind die verfügbaren Modi aufgelistet //Seit php-5.3 ist eine Angabe der TimeZone Pflicht if (version_compare(phpversion(), '5.3' ) != -1) { if (E_ALL > E_DEPRECATED) { @ error_reporting (E_ALL ^ E_NOTICE ^ E_DEPRECATED); } else { @ error_reporting (E_ALL ^ E_NOTICE); } date_default_timezone_set( 'Europe/Berlin' ); } else { @ error_reporting (E_ALL ^ E_NOTICE); } @ ini_set ( 'display_errors' , 'On' ); session_name ( 'sid' ); session_start (); require_once ( 'include/includes/config.php' ); require_once ( 'include/includes/loader.php' ); db_connect(); $allgAr = getAllgAr (); $menu = new menu(); user_identification(); site_statistic(); if (is_admin()) { require_once ( 'include/contents/' . $menu ->get_url()); } // Auto-IP-Ban Start require_once ( 'include/includes/func/autoipban.php' ); autoipban(); // Auto-IP-Ban Ende if ( $allgAr [ 'wartung' ] == 1) { require_once ( 'include/contents/wartung.php' ); } else { require_once ( 'include/contents/' . $menu ->get_url()); } db_close(); if (false) { //debugging aktivieren debug( 'anzahl sql querys: ' . $count_query_xyzXYZ ); debug( '' ,1,true); } ?> |
betroffene Homepage: socclan.1x.de