Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Submission Form Error

Quote Reply
Submission Form Error
After 3 mnths of running my link site I 'NOW' only realise that when an error occurs on the submission form, that a blank page comes up. ?? No page stating why the error occurrred. ???

Any ideas anyone ??

Quote Reply
Re: Submission Form Error In reply to
Checker add_error.html in your templates directory.

It should have the <%error%> tag inside it.

Until next time...

Ryan

http://links.innovationstudios.com/
Quote Reply
Re: Submission Form Error In reply to
Checked add_error.html template and the eror tag is already in it .. Here is the template :

<html>

<head>
<title>Submission Error<title>
<link rel=stylesheet href="<%css%>" type="text/css" title="style sheet">
</head>

<body>

<h1>Error Submitting Your Site</h1>



<p>There were the following errors trying to add your site :</p>
<p><strong class="error">
<%error%>
</strong></p>

<p>Please make any changes and try again!</p>
<div class="margin">
<table border="0" cellspacing="0" cellpadding="0">
<tr><td align="right" valign="top">Title:</td>
<td><input name="Title" value="<%Title%>" size="50"></td></tr>

<tr><td align="right" valign="top">URL:</td>
<td><input name="URL" value="<%URL%>" size="50"></td></tr>

<tr><td align="right" valign="top">Recip URL:</td>
<td><input name="recip" size="40" value="<%recip%>">

</td></tr>

<tr><td align="right" valign="top">Category:</td>
<td><%Category%>
<tr><td align="right" valign="top">Description:</td>
<td><textarea wrap="virtual" name="Description" rows="3" cols="42"><%Description%></text-area></td></tr>
<tr><td align="right" valign="top">Contact Name:</td>
<td><input name="Contact Name" value="<%Contact Name%>" size="40"></td></tr>
<tr><td align="right" valign="top">Contact Email:</td>
<td><input name="Contact Email" value="<%Contact Email%>" size="40"></td></tr>
<tr><td></td><td><input type="SUBMIT" value="Add Resource"></td></tr>
</table>
</div>
</form>


</body>
</html>

Any ideas ???