Problems using Chrono for a registration form

digidigi 10 May, 2008
Hi,

I'm running Joomla 1.5 and the latest version of ChronoForms.

I've been reading through the forum posts to try and solve my problem, but so far I've had no luck.

I've got a custom contact form working fine, but I am also trying to get a custom registration form working, with many custom fields.

I've got the form made, I've filled in the Joomla registration plugin fields to match my form and I've created the database tables.

My Form seems to work when submitted, the data is added to the database but no new users are appearing in the Joomla User manager.

The one thing that I'm confused about is the Registration plugin option within the form config. I've ticked the box next to the plugin, but it then needs me to enter a numeric value - I don't know what to enter here.

Also I've read about neededing a 'en-GB.com_chronocontact.ini' file? As I'm in the UK, do I need this file? If so, where can I download it from?

Thanks in advance for any help.πŸ™‚
Max_admin 10 May, 2008
Hi,

Do you use the latest RC3.1 ? after you tick that box click the + sign to have a value of 1, assure also you configured all fields in the joomla_registration plugin!

Let me know

cheers

Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
digidigi 11 May, 2008
Thanks Max. I have the latest version RC3.1 and I have made sure that the form fields are entered correctly and I've put a value of 1 onto the plugin config section, but still it does not work.

The data goes into the database but a new user isn't added to the Joomla user manager.😟

Here is my form markup if it helps:
<p><strong>Name</strong><span class="style1">*</span></p>
<label>
<input name="name" type="text" class="omform" id="name" size="50" />
</label>
<p><strong>Company</strong></p>
<label>
<input name="company" type="text" class="omform" id="company" size="50" />
</label>
<p><strong>Your Industry</strong></p>
<label>
<input name="industry" type="text" class="omform" id="industry" size="50" />
</label>
<p><strong>Business Telephone</strong></p>
<label>
<input name="telephone" type="text" class="omform" id="telephone" size="50" />
</label>
<p><strong>Business Fax</strong></p>
<label>
<input name="fax" type="text" class="omform" id="fax" size="50" />
</label>
<p><strong>Email</strong><span class="style1">*</span></p>
<label>
<input name="email" type="text" class="omform" id="email" size="50" />
</label>
<p><strong>Job Title</strong><span class="style1">*</span></p>
<label>
<input name="title" type="text" class="omform" id="title" size="50" />
</label>
<p><strong>Job Role</strong><span class="style1">*</span></p>
<label>
<input name="role" type="text" class="omform" id="role" size="50" />
</label>
<p><strong>Country</strong></p>
<label>
<input name="country" type="text" class="omform" id="country" size="50" />
</label>
<p><strong>Your Address </strong><span class="style1">*</span></p>
<label>
<textarea name="address" cols="45" rows="6" class="omform" id="address"></textarea>
</label>
<p><strong>Which operating systems are you running? Which application would you like to protect?</strong></p>
<label>
<input name="os" type="text" class="omform" id="os" size="50" />
</label>
<p><strong>Username</strong></p>
<label>
<input name="username" type="text" class="omform" id="username" size="50" />
</label>
<p><strong>Password</strong></p>
<label>
<input name="password" type="text" class="omform" id="password" size="50" />
</label>
<p><strong>Verify Password</strong></p>
<label>
<input name="verifypassword" type="text" class="omform" id="verifypasswordpassword" size="50" />
</label>
<input name="Refferer" type="hidden" value="<?php echo $_SERVER["HTTP_REFERER"]; ?>" />
<p>
<label>
<input type="submit" name="Submit" value="Join Open Minds" />
</label>
</p>
ThanksπŸ™‚
aftab 20 May, 2008
Hello digidigi,

Though I am a noob in this excellent form creation component, but I think I have what you want. This was my HTML code
<table>
<tr>
<td colspan='2'>
Terms of agreement
</td>
</tr>
<tr>
<td colspan='2'>
<textarea name='txtAgreement' rows='4' cols='50' readonly>
Welcome to blah blah blah. Agree or get out of this site! :-D
</textarea>
<br />
<input type='checkbox' name='agreed'><label for='agreed'>I Agree</label>
</td>
</tr>
</table>
<table>
<tr>
<td>
Name
</td>
<td>
<input type='text' name='name'>
</td>
</tr>
<tr>
<td>
User name
</td>
<td>
<input type='text' name='uname'>
</td>
</tr>
<tr>
<td>
Email address
</td>
<td>
<input type='text' name='email'>
</td>
</tr>
<tr>
<td>
password
</td>
<td>
<input type='password' name='pass'>
</td>
</tr>
<tr>
<td>
confirm
</td>
<td>
<input type='password' name='cpass'>
</td>
</tr>
<tr>
<td>
Upload certificate
</td>
<td>
<input type='file' name='file1'>
</td>
</tr>
<tr>
<td>
Enter the letters exactly appears in the image
</td>
<td>
{imageverification}
</td>
</tr>
<tr>
<td colspan='2' align='right'>
<input type='submit'>
</td>
</tr>
</table>



and see the snaps in the attached zip file. [file name=screens-892321571d42d0e8cb21489a02363d6a.zip size=97485]http://www.chronoengine.com/images/fbfiles/files/screens-892321571d42d0e8cb21489a02363d6a.zip[/file]
GreyHead 20 May, 2008
Hi aftab,

Nice, thank you.

Bob
This topic is locked and no more replies can be posted.