Suche werbe freinen kostenlosen Web server

    • Werbung zur Unterstützung des Forums ( Bitte AddBlocker deaktivieren )

    • bei bplace kommen immer diese fehler beim erstelen und kann mich net einlogen in das forum dan

      kanstz auch hier nachlesen

      btmrf.bplaced.net/

      Deprecated: Function set_magic_quotes_runtime() is deprecated in /users/btmrf/www/inc/class_core.php on line 165
      The following warnings occurred: Warning [2] Cannot modify header information - headers already sent by (output started at /users/btmrf/www/inc/class_core.php:165) - Line: 1622 - File: inc/functions.php PHP 5.3.3 (Linux)
      File Line Function [code=php] errorHandler->error /inc/functions.php 1622 header /inc/class_session.php 360 my_setcookie /inc/class_session.php 98 session->load_guest /global.php 55 session->init /index.php 18 require_once Warning [2] Cannot modify header information - headers already sent by (output started at /users/btmrf/www/inc/class_core.php:165) - Line: 1622 - File: inc/functions.php PHP 5.3.3 (Linux)
      File Line Function [code=php] errorHandler->error /inc/functions.php 1622 header /inc/class_session.php 365 my_setcookie /inc/class_session.php 98 session->load_guest /global.php 55 session->init /index.php 18 require_once Warning [2] Cannot modify header information - headers already sent by (output started at /users/btmrf/www/inc/class_core.php:165) - Line: 1622 - File: inc/functions.php PHP 5.3.3 (Linux)
      File Line Function [code=php] errorHandler->error /inc/functions.php 1622 header /inc/class_session.php 106 my_setcookie /global.php 55 session->init /index.php 18 require_once
    • Das Problem kann man fixen. Hatte das auch.

      Du gehst zu der class_core.php udn suchst nach:

      // Determine Magic Quotes Status (< PHP 5.3)
      if(version_compare(PHP_VERSION, '5.3', '<'))
      {
      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);



      Das ersetzt du durch:

      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);