如何解决HTTP/1.1 302在PHP中获取表单内容时发现错误?[已关闭]

pxyaymoc  于 2022-11-21  发布在  PHP
关注(0)|答案(3)|浏览(175)

**已关闭。**此问题为not reproducible or was caused by typos。目前不接受答案。

这个问题是由一个打字错误或一个无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
昨天关门了。
Improve this question
我的应用程序中有一个错误,当我尝试提交一个包含大量信息的表单(POST方法)时,接收信息并重定向到我的索引的文件出现HTTP/1.1 302 Found错误
html代码和php都很简单,但是信息量很大。
表单的代码

<form name="resena" action="consultas/resena.php" method="post" enctype="multipart/form-data">
<fieldset>
    <legend><?php echo $titulo; ?> una reseña</legend>
    <br /><br /><label for="titulo">Título</label><input type="text" name="titulo" id="titulo" size="45" maxlength="100" value="<?php echo $con["titulo"]; ?>" placeholder="hasta 70-100 caracteres o menos" titulo="hasta 70-100 caracteres o menos" onkeyup="texto(titulo)" required />
    <br /><br /><label for="fecha">Fecha</label><input type="text" name="fecha" id="fecha" size="12" maxlength="10" value="<?php echo $con["fecha"]; ?>" placeholder="Fecha" required="required" readonly="readonly" /><input name="f_b" type="button" id="f_b" value="...">
    <br /><br /><label for="resumen">Resumen</label><textarea name="resumen" id="resumen" cols="60" rows="4" wrap="hard" onkeyup="texto_tarea(resumen);"><?php echo $con["resumen"]; ?></textarea>
    <br /><br /><label for="eventos">Evento relacionado</label><select name="eventos" title="eventos"><option value=""></option><?php $s_ev=mysql_query("SELECT * FROM eventos"); while($v_ev=mysql_fetch_array($s_ev)){?><option value="<?php echo $v_ev["id_prod"];?>" <?php if($evento==$v_ev["id_ev"]){?>selected="selected"<?php } ?>><?php echo $v_ev["titulo"]?></option><?php } ?></select>
    <br /><br /><input type="submit" name="Aceptar" value="Aceptar" class="bot" style="float:left;" />&nbsp;&nbsp;<input type="reset" name="Vaciar Formulario" value="Vaciar Formulario" class="bot" />
</fieldset>
</form>
<?php 
    include("ckeditor.php");
    $CKEditor = new CKEditor();
    $CKEditor->basePath = '/edicion/';
    $CKEditor->replaceAll();
?>
<script>Calendar.setup({inputField:"fecha", ifFormat:"%Y/%m/%d",button:"f_b"});</script>

接收器对数据库只有查询

jyztefdp

jyztefdp1#

302不是错误,而是重定向到临时位置。您可以将请求重新发送到在响应标头中收到的新位置。

k3fezbri

k3fezbri2#

你们是对的,伙计们,这是一个服务器配置错误modSecurity防火墙阻止了我的请求,并自动重定向(302)。
服务器的管理员提供了帮助,现在一切都运行良好
"非常感谢所有在这里帮助我的人"

8xiog9wr

8xiog9wr3#

我用IP地址而不是网址,它为我回答。

相关问题