Si GatorV ya me funciono habia olvidado postear que ya habia resuelto el problema, gracias por la ayuda, logre al parecer habilitar el layout tambien ahora me queda solo solucionar el problema con los frames que no logro hacer que se visualicen.
Este es el codigo del layout.phtml
Código PHP:
Ver original<?php echo $this->doctype() ?> <!-- This Line will output the doctype we set inside the bootstrap file -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Sistema Informatico Clinica</title>
<?php echo $this->headLink()->appendStylesheet('/css/global.css') ?>
<?php echo $this->headLink()->appendStylesheet('/css/frame_menu_clinica.css') ?>
</head>
<frameset rows="90,*" framespacing="0" frameborder="0" border="0">
<frame src="menu.phtml" name="encabezado" scrolling="NO" noresize target="principal">
<frame src="content.phtml" name="principal" target="_self" scrolling="auto">
<noframes>
<body>
</body>
</noframes>
</frameset>
<frameset>
</frameset>
</html>
menu.phtml y content.phtml estan en el mismo directorio que layout.phtml
Yo estoy colocando esta linea de codigo <?php echo $this->layout()->content; ?> en la pagina frame content.phtml. pero no me muestra nada. la pagina aparece en blanco.