<?
// ###################################################################
// 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($_GET["lang"]) $_SESSION["language"] = $_GET["lang"];
if(!$_SESSION["language"]) $_SESSION["language"] = 1;
// 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>";
}
}
?>