Hola a todos,
Tengo un problemin :(
Os comento que tengo 3 archivos:
1- index.html
2- index.php
3- login.php
En mi sitio cuando accedo el primero que lee la solicitud es el index.html que tiene esto:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
hola hola
<title>Untitled Document</title>
<meta HTTP-EQUIV="REFRESH" content="0; url=index.php?p=login.html">
</head>
<body>
</body>
</html>
Luego el este lo redirecciona a index.php del cual me ayuda a mostrar en el centro el contenido de un formulario de login en el centro de la pagina embebido por asi decirlo, el codigo es este:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Xtreme Bank</title>
</head>
<frameset rows="*,60" frameborder="no" border="0" framespacing="0">
<frameset rows="100,*" frameborder="yes" border="5" framespacing="0" bordercolor="#FF0000">
<frame src="topFrame.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame"/>
<frame src="<? echo $_GET[p] ?>" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<frame src="bottomFrame.html" name="bottomFrame" scrolling="No" noresize="noresize" id="bottomFrame" title="bottomFrame" />
</frameset>
<noframes><body>
</body></noframes>
</html>
Y pues este es el del login:
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Login Page</title>
<link href="xapp.css" rel="stylesheet" type="text/css">
</head>
<body>
<p> </p>
<p> </p>
<p> </p>
<form name="frmLogin" method="post" action="verify_admin.php">
<table class="forti_table" width="60%" border="0" bordercolor="#000000" align="center">
<tr>
<td colspan="2"><table class="forti_table" width="100%" border="0">
<tr>
<td><label class="forti_label">Login</label></td>
<td><label for="txtUser"></label>
<input name="txtUser" type="text" class="forti_textbox" id="txtUser" size="45"></td>
</tr>
<tr>
<td><label class="forti_label">Password:</label> </td>
<td><label for="txtPassword"></label>
<input class="forti_textbox" type="password" name="txtPassword" id="txtPassword" size="45"></td>
</tr>
</table></td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td><label>
<input class="forti_button" type="submit" name="Submit" id="bntSubmit" value="Submit">
</label></td>
<td><input class="forti_button" type="reset" name="Reset" id="btnReset" value="Reset"></td>
</tr>
</table>
</form>
</body>
</html>
El problema es que antes en otro servidor mostraba bien tanto la cabecera como el cuerpo y el footer, pero ahora el LOGIN que aparecia en el centro no se muestra me sale un error de que no tnego permiso para acceder a el.
Antes usaba IIS y ahora con apache me da ese error :(
Alguna idea?