Saludos
les agradeceria si alguien sabe que framework esta usando un site al cual necesito hacerle modificaciones, tiene la siguiente estructura de carpetas:
-controller
-library
-views
archivos:
config.php
index.php
menus.php
el config.php tiene estos datos:
$dbParams = array(
'host' => 'localhost',
'username' => 'username',
'password' => 'password',
'database' => 'com_db'
);
$usersTable = 'users';
$cookieTable = 'cookies';
$cookie = array(
'name' => 'red',
'expire' => 30,
);
$home = '/home/red';
$webRoot = $home.'/www';
$basedir = '';
$mainDir = $webRoot.$basedir.'/site';
$controllersPath = $mainDir.'/controllers/';
$viewsPath = $mainDir.'/views/';
$domain = 'www.red.com';
$preDomain = '';
$lang = '';
$notFound = '/pagina-no-encontrada/';
$charset = 'UTF-8';
$picUploadDir = $webRoot.$basedir.'/images/upload/';
$fontsDir = $webRoot.$basedir.'/fonts/';
$captchaDir = $webRoot.$basedir.'/captcha/';
$docUploadDir = $webRoot.$basedir.'/curriculum/';
$mailUser = '[email protected]';
$mailPass = 'mailpass';
$gzip = 'on';
$ip_restriction = 'off';
?>
el index.php:
include('library/Router.php');
if($gzip == 'on')
{
ob_start("ob_gzhandler");
}
session_start();
$router = new FW_Router();
//$lang = $router->getLang();
$controller = $router->getController();
$action = $router->getAction();
include('menus.php');
if(file_exists($controllersPath.$controller.'Contr oller.php'))
{
include('controllers/'.$controller.'Controller.php');
} else {
redirect($basedir.$lang.$notFound);
exit();
}
gracia de antemano por las respuestas