<?php
include_once '../phppagestart.php';
//error_reporting( -1 );
//ini_set( 'display_errors', 1 );
// session_start();
// echo $_SESSION['username'];
$username= $_SESSION['username'];
// The following two lines MUST point to <WEBROOT>/config.inc.php
// first how we get back to webroot from ths user../
$webroot='../';
include_once($webroot.'config.inc.php');
include_once($webroot.'lang.php');
chdir ($root);
$_SESSION['fromuserfolder']='yes';
// $_SESSION['fromuserfilelister']='yes';
$now = time();
/*
if (($requireauth == 'yes') && ($_SESSION['loggedin'] != 'yes'))
{
include_once('deauthorize.php');
}
*/
if (($requireauth == 'yes') && ($_SESSION['loggedin'] == 'yes') && ($_SESSION['expire'] > $now))// && ($_SESSION['expire'] > $now))
{
include_once('filelister.php');
}
elseif ($requireauth != 'yes')
{
include_once('filelister.php');
}
/*
elseif (($requireauth == 'yes') && ($_SESSION['loggedin'] != 'yes'))
{
include_once('deauthorize.php');
}
elseif (($requireauth == 'yes') && ($_SESSION['expire'] <= $now))
{
include_once('deauthorize.php');
}
*/
?>
|