I have been using an older version of ChronoForms earlier and I have never been able to send the results via email. Now, I have decided to upgrade and try again - and: alas - it dues not even save in the database anymore...
Here my data: I am running Joomla 1.0.15, the latest version of Chrono forms for this version. Joomla is configured to use usr/sbin/sendmail
I have had my hosting service checking out the functionality of sendmail, and they claim it's allright.
When I turn debug on, it claims that the message has been sent, but it never arrives...
Unfortunately, as mentionaed above, even the data are not stored in the table anymore. BTW. does ver. 2.3.9 create the results table automatically?
I would appreciate your help,
Thanks
Manfred
This is the code of my form:
*****************************************************
<table border="0" width="90%" id="table1">
<tr>
<td width="14%" bgcolor="#CCCCCC">Name</td>
<td width="77%" bgcolor="#FFFFCC">
<input type="text" name="name" size="57"></td>
</tr>
<tr>
<td width="14%" bgcolor="#CCCCCC">Email</td>
<td width="77%" bgcolor="#FFFFCC">
<input type="text" name="email" size="39"></td>
</tr>
<tr>
<td width="14%" bgcolor="#CCCCCC">Must be received by</td>
<td width="77%" bgcolor="#FFFFCC">
<input type="text" name="received_by" size="20"></td>
</tr>
<tr>
<td width="14%" bgcolor="#CCCCCC">BOOK</td>
<td width="77%">
<table border="0" width="100%" id="table2">
<tr>
<td width="144" bgcolor="#CCCCCC">Author</td>
<td bgcolor="#FFFFCC">
<input type="text" name="book_author" size="45"></td>
</tr>
<tr>
<td width="144" bgcolor="#CCCCCC">Title</td>
<td bgcolor="#FFFFCC">
<input type="text" name="title" size="45"></td>
</tr>
<tr>
<td width="144" bgcolor="#CCCCCC">Place of Publication</td>
<td bgcolor="#FFFFCC">
<input type="text" name="place" size="45"></td>
</tr>
<tr>
<td width="144" bgcolor="#CCCCCC">Publisher</td>
<td bgcolor="#FFFFCC">
<input type="text" name="publisher" size="45"></td>
</tr>
<tr>
<td width="144" bgcolor="#CCCCCC">Year</td>
<td bgcolor="#FFFFCC">
<input type="text" name="book_year" size="5"></td>
</tr>
<tr>
<td width="144" bgcolor="#CCCCCC">ISBN</td>
<td bgcolor="#FFFFCC">
<input type="text" name="ISBN" size="15"></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="14%" bgcolor="#CCCCCC">JOURNAL</td>
<td width="77%">
<table border="0" width="100%" id="table3">
<tr>
<td width="18%" bgcolor="#CCCCCC">Journal Title</td>
<td bgcolor="#FFFFCC" width="80%">
<input type="text" name="journal_title" size="45"></td>
</tr>
<tr>
<td width="18%" bgcolor="#CCCCCC">Article or Essay Title</td>
<td bgcolor="#FFFFCC" width="80%">
<input type="text" name="aticle_title" size="45"></td>
</tr>
<tr>
<td width="18%" bgcolor="#CCCCCC">Author</td>
<td bgcolor="#FFFFCC" width="80%">
<input type="text" name="article_author" size="45"></td>
</tr>
<tr>
<td colspan="2">
<table border="1" width="100%" id="table4">
<tr>
<td bgcolor="#CCCCCC">Year </td>
<td bgcolor="#FFFFCC">
<input type="text" name="journal_year" size="5"></td>
<td bgcolor="#CCCCCC">Volume</td>
<td bgcolor="#FFFFCC">
<input type="text" name="journal_volume" size="5"></td>
<td bgcolor="#CCCCCC">Pages</td>
<td bgcolor="#FFFFCC">
<input type="text" name="journal_pages" size="5"></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<p><input type="submit" value="Submit" name="B1"></p>
*****************************