Go back to previous page
Forum URL: http://www.dombom.com/cgi-bin/dcforum/dcboard.cgi
Forum Name: FatBomb
Topic ID: 21
Message ID: 29
#29, RE: Fatbomb Support
Posted by Poker on Aug-04-04 at 09:16 PM
In response to message #28
LAST EDITED ON Aug-04-04 AT 09:21 PM (PST)
 
John & Gary,

Look in the "deafult-results.html" at the very end it should look like this:

{% else %}
<a href="/cgi-bin/fatbomb/fatbomb.cgi/?skin={% form.skin as url %}. . . . . . .]</a>{% end %}

Obviously replace /cgi-bin/fatbomb/fatbomb.cgi with the path to your file. And remember I put the "curly brackets" in above for the forum. They are really square brackets.

That is (most likely) the pain-in-your-butt right there. The script isn't understanding or diggin'on the bad parameter for skin=.

Gary, also, your skin value isn't filled in in your search form:

<form method="POST">
<input name="skin" type="hidden" value="">
<input name="length" type="hidden" value="">

The "default-box.html" will be as so:

<form method="POST">
<input name="skin" type="hidden" value="{% form.skin as html %}">
<input name="length" type="hidden" value="{% form.length as html %}">

Chris