I am trying to make corrections to an MVC project that uses following as router.php:
session_start();
function autoloader($class){
if(file_exists('application/'.strtolower($class).'.php')){
//first check the application directory
include_once('application/'.strtolower($class).'.php');
}elseif(file_exists('application/controllers/'.strtolower($class).'.php')){
//then check the controller directory
include_once('application/controllers/'.strtolower($class).'.php');
}elseif(file_exists('application/models/'.strtolower($class).'.php')){
//finally check the models directory
include_once('application/models/'.strtolower($class).'.php');
}
}
require_once('application/config.php');
spl_autoload_register('autoloader');
//grab the path info and break it apart into separate variables
$paths= explode('/', $_SERVER['PATH_INFO']);
//check the view, if empty set to default view
if($paths[1] == ''){
$view = DEFAULT_VIEW;
}else{
$view = $paths[1];
}
//check to see if a method is being called and assign the $method variable
$method = $paths[2];
//check to see if any parameters are passed and assign the $parameters array
for($i=3;$i < count($paths);$i++){
$parameters[] = $paths[$i];
}
//uppercase the first variable name and append Controller to it. If none, the default controller will load
$controller = ucfirst($view).'Controller';
//instantiate our controller and pass in parameters
if (class_exists($controller)) {
new $controller($view, $method, $parameters);
} else {
new Controller('404');
}
and controller.php contains:
//run any task methods
if($method){
$this->runTask($method, $parameters);
}else{
$this->defaultTask();
}
//render the view
$this->load->view($view.'.php', $this->data);
public function runTask($method, $parameters = null){
if($method && method_exists($this, $method)) {
//the call_user_func_array expects an array so we create a null array if parameters is empty
if(!is_array($parameters)){
$parameters = array();
}
call_user_func_array(array($this, $method), $parameters);
}
}
and load.php of course:
class Load {
function view( $file_name, $data = null )
{
if( is_array($data) ) {
extract($data);
}
$u = new User();
include 'views/' . $file_name;
}
}
I dont see any errors there but i cannot run it on pc because of $_SERVER['PATH_INFO'] that is used for the url redirections. I have changed into php.ini the corresponding regulation to 1 as is advised and still the same issue. On live server problem is that when for example page www.somedomain.com/blogs is selected server retutns on the screen: No input file specified. I used also REQUEST_URI but then i had other problems too such as i have so many undefined variables that kill the execution. For example in view page member.php
if(is_array($user))
{
extract($user);
echo $first_name . ' ' . $last_name;
gives all 3 of them above as undefined. Any help is appreciated.
