[ Index ]
 

Code source de e107 0.7.8

Accédez au Source d'autres logiciels libresSoutenez Angelica Josefina !

title

Body

[fermer]

/e107_admin/ -> phpinfo.php (source)

   1  <?php
   2  /*
   3  + ----------------------------------------------------------------------------+
   4  |     e107 website system
   5  |
   6  |     ©Steve Dunstan 2001-2002
   7  |     http://e107.org
   8  |     jalist@e107.org
   9  |
  10  |     Released under the terms and conditions of the
  11  |     GNU General Public License (http://gnu.org).
  12  |
  13  |     $Source: /cvsroot/e107/e107_0.7/e107_admin/phpinfo.php,v $
  14  |     $Revision: 1.5 $
  15  |     $Date: 2005/08/23 20:57:49 $
  16  |     $Author: sweetas $
  17  +----------------------------------------------------------------------------+
  18  */
  19  require_once ("../class2.php");
  20  if (!getperms("0")) {
  21      header("location:".e_BASE."index.php");
  22      exit;
  23  }
  24  $e_sub_cat = 'phpinfo';
  25  require_once ("auth.php");
  26      
  27  ob_start();
  28  phpinfo();
  29  $phpinfo .= ob_get_contents();
  30  $phpinfo = preg_replace("#^.*<body>#is", "", $phpinfo);
  31  ob_end_clean();
  32  $ns->tablerender("PHPInfo", $phpinfo);
  33  require_once ("footer.php");
  34  ?>


Généré le : Sun Apr 1 01:23:32 2007 par Balluche grâce à PHPXref 0.7