Gossamer Forum
Home : Products : DBMan : Customization :

private mail mod error message

Quote Reply
private mail mod error message
I have added the private mail mod to the user friendly short long display mod.



I have debug turned on, and get the following:










---------- start quoted material -------------------



CGI ERROR==========================================



Error Message : Error loading required libraries.Check that they exist, permissions are set correctly and that they compile.Reason: syntax error at ./html.pl line 598, near "Send email "syntax error at ./html.pl line 614, near "



------------------------ end quoted material ---------------------------








I have double checked that I have correctly coppied the material from the

mod into the appropriate files.



When I search in the DBMAN section of the posts for



private mail Error loading required libraries



I get no hits. Frown










Here are lines 598 through 614 of my html.pl:








---------- start quoted material -------------------




<a href="$db_script_link_url&$db_key=$rec{$db_key}&send_email_form=1">
Send email to this person</a>

# <-- End of record display -->}
sub html_send_email_form {
#----------------------------------------------------------
my ($message) = $_[0];
$in{$db_key} =~ s/<?.B>//g;
%rec = &get_record($in{$db_key});
&html_print_headers;
print qq|
<html><head><title>$html_title: Send an email</title></head>
<body bgcolor="#DDDDDD">
<center>




------------------------ end quoted material ---------------------------










Can someone tell me what key terms to use in the search form to find info

about this problem? David
Quote Reply
Re: [dlnyah00] private mail mod error message In reply to
I think the error may be from something above that portion of the code. Can you put a .txt copy of your html.pl file on your server and provide the url to where it can be viewed.

Unoffical DBMan FAQ
http://redundantcartridge.com/dbman/
Quote Reply
Re: [LoisC] private mail mod error message In reply to
http://ah.web2dave.com/htmlpl.com
Quote Reply
Re: [dlnyah00] private mail mod error message In reply to


Should be http://ah.web2dave.com/htmlpl.txt Tongue
Quote Reply
Re: [dlnyah00] private mail mod error message In reply to
Your link needs to be within a print command:


print qq|<a href="$db_script_link_url&$db_key=$rec{$db_key}&send_email_form=1">Send email to this person</a> |;

# <-- End of record display -->

Hope that helps



}

Unoffical DBMan FAQ
http://redundantcartridge.com/dbman/
Quote Reply
Re: [LoisC] private mail mod error message In reply to
In Reply To:
Your link needs to be within a print command:


print qq|<a href="$db_script_link_url&$db_key=$rec{$db_key}&send_email_form=1">Send email to this person</a> |;

# <-- End of record display -->

Hope that helps



DOOOH!!! Thanks David