Gossamer Forum
Home : Products : DBMan : Installation :

Message ID Field & Counter Empty

Quote Reply
Message ID Field & Counter Empty
    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!
Quote Reply
Re: [samurai-lupin] Message ID Field & Counter Empty In reply to
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.
Quote Reply
Re: [JPDeni] Message ID Field & Counter Empty In reply to
Thank you for your response. I see. But what could would I need to insert in the sub html_record_form then? Thank you!
Quote Reply
Re: [samurai-lupin] Message ID Field & Counter Empty In reply to
If you want the field to be visible, enter

Code:

<TR><TD ALIGN="Right" VALIGN="CENTER" NOWRAP><$font_color>ID:</FONT></TD>
<TD VALIGN="CENTER">&nbsp;<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.