After installing another DBMan script on my server I run into an error: The script does not write a value in the message 'ID' field in the default.db file nor any value into the default.count file. Thus pictures do not get displayed either. Otherwise everything works fine. I would be most happy to hear any hints what the problem might be. I am attaching the files in question. Thank you!
Jul 4, 2006, 7:09 AM
Veteran / Moderator (8669 posts)
Jul 4, 2006, 7:09 AM
Post #2 of 4
Views: 7855
There's no ID field in your html.pl sub html_record_form.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
Jul 4, 2006, 3:24 PM
Veteran / Moderator (8669 posts)
Jul 4, 2006, 3:24 PM
Post #4 of 4
Views: 7853
If you want the field to be visible, enter
<TR><TD ALIGN="Right" VALIGN="CENTER" NOWRAP><$font_color>ID:</FONT></TD>
<TD VALIGN="CENTER"> <INPUT TYPE="TEXT" NAME="ID" SIZE="20" VALUE="$rec{'ID'}" MAXLENGTH="100"></TD></TR>
If you don't want the field to be visible, enter
<INPUT TYPE="hidden" NAME="ID" VALUE="$rec{'ID'}">
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.
Code:
<TR><TD ALIGN="Right" VALIGN="CENTER" NOWRAP><$font_color>ID:</FONT></TD>
<TD VALIGN="CENTER"> <INPUT TYPE="TEXT" NAME="ID" SIZE="20" VALUE="$rec{'ID'}" MAXLENGTH="100"></TD></TR>
If you don't want the field to be visible, enter
Code:
<INPUT TYPE="hidden" NAME="ID" VALUE="$rec{'ID'}">
JPD
----------------------------------------------------
JPDeni's DBMan-ual
How to ask questions the smart way.