Firefox没有找到404错误的表单重定向页面。

时间:2013-11-20 20:08:33

标签: php firefox http-status-code-404 formmail

我使用tectite.com的Formmail.php作为处理表单的脚本,为网站创建了一个非常简单的联系表单。我已经使用它多年没有任何问题。

表单适用于所有浏览器。发送所有字段(包括照片上传)没有问题,除了在Firefox中服务器找不到重定向“谢谢”页面。我从服务器得到的回复是:

不可接受

在此服务器上找不到所请求资源/thankyouforstory.php的适当表示。

此外,尝试使用ErrorDocument处理请求时遇到404 Not Found错误。

同样,这只发生在Firefox中。在IE中工作得很好(通常与它的方式相反)。

表单中的代码:

<form action="http://www.mysite/formmail.php" method="post" name="SethStory" enctype="multipart/form-data">
                        <input type="hidden" name="env_report" value="REMOTE_HOST,REMOTE_ADDR,HTTP_USER_AGENT,AUTH_TYPE,REMOTE_USER" />
                        <input type="hidden" name="recipients" value="email_1,email_2" />
                        <input type="hidden" name="required" value="EmailAddr:Your email address,FullName:Your name" />
                        <input type="hidden" name="subject" value="Seth Story Submission" />
                        <input type="hidden" name="good_url" value="http://www.mysite_thankyoupage" />
                        <input type="hidden" name="derive_fields" value="email=EmailAddr,realname=FullName" />
                        <input type="hidden" name="mail_options" value="Exclude=email;realname,FromAddr=email_3" />

                        <p><strong>Please enter your Name and Email address:</strong></p>
                        <div class="formbox"><input name="FullName" type="text" size="60" maxlength="70" /></div><div class="formlabel">Name:</div>
                        <br class="clearfloat" /> 
                        <div class="formbox"><input name="EmailAddr" type="text" size="60" maxlength="70" /></div><div class="formlabel">Email:</div>
                        <br class="clearfloat" />
                        <p><label><strong>Your Seth Story:</strong></label></p>
                        <div class="formbox"><textarea cols="60" name="story" rows="10"></textarea></div>
                        <br class="clearfloat" />
                        <p><strong>Upload your photograph here:</strong></p>
                        <input type="file" name="first_file" />
                        <p><input type="submit" value="Submit Story" /></p>
                        <br class="clearfloat" />

                        </form>

1 个答案:

答案 0 :(得分:0)

如果这是确切的代码,那么您似乎有错误:

<input type="hidden" name="good_url" value="http://www.mysite_thankyoupage" />
                                                             ^ here

应该是:

<input type="hidden" name="good_url" value="http://www.mysite.com/thankyoupage.php" />

或类似的东西。