En la raiz:
index.php
conf.php
Dentro de la carpeta "plantilla"
head.php
Le paso el codigo de mis archivos:
index.php
Código PHP:
<?php
include("plantillas/head.php");
print("entre");
include("plantillas/foot.php");
?>
Código PHP:
<?php
require_once("../conf.php"); //AQUI DA EL ERROR
?>
Código PHP:
<?php
print("entre");
?>
Warning: require_once(../conf.php) [function.require-once.html]: failed to open stream: No such file or directory in C:\conalot\plantillas\head.php on line 9
Fatal error: require_once() [function.require.html]: Failed opening required '../conf.php' (include_path='C:\php\includes') in C:\conalot\plantillas\head.php on line 9
Evidentemente es un problema con la ruta, pero no veo el error. Gracias por su ayuda saludos.