MyBB.de Forum
Header already sent und andere fehler - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.4.x (https://www.mybb.de/forum/forum-51.html)
+---- Forum: Installation/Aktualisierung (https://www.mybb.de/forum/forum-53.html)
+---- Thema: Header already sent und andere fehler (/thread-15237.html)

Seiten: Seiten: 1 2 3 4


RE: Header already sent und andere fehler - StefanT - 12.02.2010

Das heißt Semikolon und deine Vermutung ist total daneben.


RE: Header already sent und andere fehler - Sonic - 12.02.2010

Über das if(get_magic_quotes_gpc()) muss noch eine geschweife klammer? oda wo meins du

Wenn das net stimmt kannse ma kurz posten wie es aussehn soll?
Sry kenn mich damit net so gut aus xD


RE: Header already sent und andere fehler - Michael Malin - 12.02.2010

PHP-Code:
        if(defined("IGNORE_CLEAN_VARS"))
        {
            if(!
is_array(IGNORE_CLEAN_VARS))
            {
                
$this->ignore_clean_variables = array(IGNORE_CLEAN_VARS);
            }
            else
            {
                
$this->ignore_clean_variables IGNORE_CLEAN_VARS;
            }
        }
  if(
get_magic_quotes_gpc())
        {
            
$this->magicquotes 1;
            
$this->strip_slashes_array($_POST);
            
$this->strip_slashes_array($_GET);
            
$this->strip_slashes_array($_COOKIE);
        }
        @
set_magic_quotes_runtime(0);
        @
ini_set("magic_quotes_gpc"0);
        @
ini_set("magic_quotes_runtime"0); 

        
// Determine input
        
$this->parse_incoming($_GET);
        
$this->parse_incoming($_POST);
        
        if(
$_SERVER['REQUEST_METHOD'] == "POST")
        {
            
$this->request_method "post";
        }
        else if(
$_SERVER['REQUEST_METHOD'] == "GET")
        {
            
$this->request_method "get";
        } 



RE: Header already sent und andere fehler - Sonic - 12.02.2010

Vielen dank ich glaube jetzt geht wieder alle Wink