MSV FM

dot.antimicrobial@66.96.161.157: ~ $
Path : /hermes/sb_web/b2920/gioalma.mobi/backend/
File Upload :
Current < : /hermes/sb_web/b2920/gioalma.mobi/backend/framework.php

<?
// ###################################################################
// phpEXelerator v.2.0
// (R) 2005-2009 Mauricio Giraldo Mutis <mgiraldo@gmail.com>
// ###################################################################
// Start session
session_save_path("/home/users/web/b120/sl.gioalmac/public_html/cgi-bin/tmp"); 
session_start();
if(!$_SESSION["id_user"] && $bypass != true) header("Location: login.php");
$_SESSION["debug"]="off";
// Declare where the application is located
global $path,$uploadto,$app;

$path = "../lib/";
// ###################################################################
// ################# FRAMEWORK #######################################
// ###################################################################
// Load all classes
$mydir = dir($path);
require_once $path."class.php";
while(($file = $mydir->read()))
{
	if(strpos($file,"php"))
	{
		if($_SESSION["debug"]=="on") print "Loading...\"".$file;
		require_once $path.$file;
		if($_SESSION["debug"]=="on") print "\"...loaded<br>";
	}
}
?>