Hola buenas, tengo un formulario hecho con frontpage y subido a hostalia, donde no me activan las extensiones de frontpage por lo que mi formulario NO funciona. Lo hice con php, es decir desde el html llamo a otra página php, pero nada.....
les dejo el código por si alguien puede ayudarme.
De hostalia me contestan "-Puede emplear un formulario de PHP siempre que emplee la función -f."
me sale este error con el php
FastCGI Error
The FastCGI Handler was unable to process the request.
--------------------------------------------------------------------------------
Error Details:
•Unable to place a FastCGI process in a JobObject. Try disable the Application Pool CPU Limit feature
•Error Number: 5 (0x80070005).
•Error Description: Access is denied.
HTTP Error 500 - Server Error.
Internet Information Services (IIS)
- Pagina del formulario:
<form method="POST" action="enviar.php">
<p style="margin-top: 0; margin-bottom: 0">Nombre y Apellidos: <input type="text" name="nombre" size="20"></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">Teléfono de contacto: <input type="text" name="telefono" size="20"></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">Mail de contacto: <input type="text" name="correo" size="20"></p>
<p style="margin-top: 0; margin-bottom: 0"> </p>
<p style="margin-top: 0; margin-bottom: 0">Comentario:
<textarea rows="2" name="comentario" cols="94"></textarea></p>
<p><input type="submit" value="Enviar" name="B1"><input type="reset" value="Borrar" name="B2"></p>
</form>
- Pagina php (enviar.php)
<?php
$para = '
[email protected]';
$asunto = 'Consulta desde formulario';
$remitente = $correo ;
$mensaje = "
--- Datos de la consulta ---
Nombre y Apellidos: $nombre
Telefono: $telefono
Correo: $correo
Comentario: $comentario
";
mail($para, $asunto, $mensaje, "From: $remitente");
include("enviado.htm");
?>
MUCHAS GRACIAS !!!