Problema Include MXI
Meu Site esta dando esse problema com o include !
a pagina index e essa
<?php
// Require the MXI classes
require_once ('includes/mxi/MXI.php');
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>
<?php
mxi_includes_start("template/topo.php");
require(basename("template/topo.php"));
mxi_includes_end();
?>
</p>
<p>
<?php
mxi_includes_start("template/menu.php");
require(basename("template/menu.php"));
mxi_includes_end();
?>
</p> oii
<p>
<?php
mxi_includes_start("template/rodape.php");
require(basename("template/rodape.php"));
mxi_includes_end();
?>
</p>
<p> </p>
</body>
</html>
Ta dando o seguinte erro...
( ! ) Warning: require_once(includes/mxi/MXI.php) [function.require-once]: failed to open stream: No such file or directory in E:\wamp\www\projeto\template\topo.php on line 3
Call Stack
# Time Memory Function Location
1 0.0009 370392 {main}( ) ..\index.php:0
2 0.0249 1393224 require( 'E:\wamp\www\projeto\template\topo.php' ) ..\index.php:15
( ! ) Fatal error: require_once() [function.require]: Failed opening required 'includes/mxi/MXI.php' (include_path='.;C:\php\pear') in E:\wamp\www\projeto\template\topo.php on line 3
Call Stack
# Time Memory Function Location
1 0.0009 370392 {main}( ) ..\index.php:0
2 0.0249 1393224 require( 'E:\wamp\www\projeto\template\topo.php' ) ..\index.php:15
Por favor me ajudem muito obrigado.
Discussão (3)
Carregando comentários...