Ver Mensaje Individual
  #1 (permalink)  
Antiguo 07/05/2015, 15:03
daneco1720
 
Fecha de Ingreso: noviembre-2010
Mensajes: 105
Antigüedad: 13 años, 5 meses
Puntos: 0
Exclamación plantilla de php genera error al subir al servidor

Buenas tardes, estoy utilizando como hosting a godaddy, tengo un sitio que estoy creando en php con mysql yuso el dreamweaver, para realizar la plantilla hice un archivo llamado Inicio, el cual tiene lo que quiero que se vea en cada pagina que abro e codigo es el siguiente:

Código PHP:
<?php 
session_start
();
?>
<!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" />
<!-- TemplateBeginEditable name="doctitle" -->
<title>Sistema de inventarios</title>
<!-- TemplateEndEditable -->
<link rel="stylesheet" type="text/css" href="../Inventario/EstiloInicio.css"/>
<!-- TemplateBeginEditable name="head" -->
<!-- TemplateEndEditable -->
</head>

<body>
<div id="banner"></div>
<div id="contenidoizquierdo">
  <p class="etiqueta"><div class="bordes">Usuarios</div><div class="bordes">Categorias</div><div class="bordes">Productos</div><div class="bordes">Registro</div></p>
</div>
<!-- TemplateBeginEditable name="Contppal" -->



<!-- TemplateEndEditable -->

</body>
</html>
al hacer esto dreamweaver me convirtio el archivo en Inicio.dwt.php deduzco que es un tipo plantilla, por la region editable, luego realizo el archivo index.php que solo es una pagina de inicio asi:

Código PHP:
<?php 
session_start
();
?>
<!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>Inicio</title>
</head><div><?php include_once ("./Inventario/Inicio.dwt.php"); ?></div>
<body>
<?php 
include('conn.php');
?>
<img src="IMAGENES/E+_logo.gif" width="792" height="612" />
</body>
</html>
subo estos archivos al directorio principal de mi servidor, en una carpeta que se llama Inventario, y al ir a la ruta de mi pagina web me sale el siguiente error

Código HTML:
Warning: include_once(./Inventario/Inicio.dwt.php) [function.include-once]: failed to open stream: No such file or directory in /home/content/30/9372330/html/eventechcolombia/Inventario/Index.php on line 9

Warning: include_once() [function.include]: Failed opening './Inventario/Inicio.dwt.php' for inclusion (include_path='.:/usr/local/php5_3/lib/php') in /home/content/30/9372330/html/eventechcolombia/Inventario/Index.php on line 9
he intentado cambiar las rutas...pero no me ha servido, no tengo idea que podria ser...me urge la ayuda de alguien...gracias¡