Buenas tardes, estaba armando un MVC que tengo que hacer un proyecto para la facultad. Pero tengo un problema al incluir un archivo. Arme un index.php (default) al cual le estoy insertando un header.php (default) y un footer.php (default), esto mismo ira incluido en todas las vistas. Al momento de incluirlo tengo un error de que no se puede abrir el archivo. Leí por todos lados la manera de solucionarlo pero no la encuentro. No me deja abrir el archivo, no se porque. Leí que hay que modificar el PHP.ini la linea de
Pero tampoco logro hacerlo andar.
ERROR
Gracias de antemano !
Código [Seleccionar]
; Windows: "\path1;\path2"
include_path=".;C:\xampp\php\PEAR"
Pero tampoco logro hacerlo andar.
Código [Seleccionar]
public function renderizar($vista, $item = false)
{
$rutaView = ROOT . 'views' . DS . $this->_controlador . DS . $vista . '.phtml' ;
$header = ROOT . 'views'. DS . 'layout' . DS . DEFAULT_LAYOUT . DS . 'header.php';
$footer = ROOT . 'views'. DS . 'layout' . DS . DEFAULT_LAYOUT . DS . 'footer.php';
if(is_readable($rutaView)){
include_once $header;
include_once $rutaView;
include_once $footer;
}
}
ERROR
Código [Seleccionar]
[b]Warning[/b]: include_once(C:\xampp\htdocs\gestoria\views\layout\default\header.php): failed to open stream: No such file or directory in [b]C:\xampp\htdocs\gestoria\application\view.php[/b] on line [b]21[/b]
[b]Warning[/b]: include_once(): Failed opening
'C:\xampp\htdocs\gestoria\views\layout\default\header.php' for inclusion
(include_path='.;C:\xampp\php\PEAR') in [b]C:\xampp\htdocs\gestoria\application\view.php[/b] on line [b]21[/b]
Vista Index...
Warning: include_once(C:\xampp\htdocs\gestoria\views\layout\default\footer.php): failed to open stream: No such file or directory in C:\xampp\htdocs\gestoria\application\view.php on line 23
Warning: include_once(): Failed opening
'C:\xampp\htdocs\gestoria\views\layout\default\footer.php' for inclusion
(include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\gestoria\application\view.php on line 23
Gracias de antemano !