Registration not working.

bennychains 05 Jan, 2010
http://www.trustaffingpartners.com/site/resume-upload

i have set up a form in which accepts is supposed to email me an attachment, along with registering a user in joomla as well.

I have followed the tutorial explicitly, and for some reason it is not updating the user table with the new user when submit is clickd.

Everything is done properly, the email works with the attachment.

Do i have to activate the software, update a plugin, or disable the joomla standard login??

confused..

any help would be awesome.

thanks
GreyHead 05 Jan, 2010
Hi bennychains,

Are you using the Joomla Registration Plugin? If so then you need to enable the plugin in the Form Plugins tab.

Bob
bennychains 05 Jan, 2010
yes, my version of chronoform has the colorful layout of the plugins - i have ensured the line is red, and the checkbox is checked green. everyother plugin is disabled, i also moved the joomla to the first entry.

i have tested this several times, and i am not find the new user names in the user menu.

also, do the text boxes need to be named consecutively? text_0, text_12, text_3, and text_4 for instance, would that be a problem?

thanks
GreyHead 05 Jan, 2010
Hi bennychains,

The bar needs to be green for enabled (and the icon an X).

Awful interface design that hopefully will be changed in a future release.

Bob
udaydahale 15 May, 2010
sir,

my form is not works

can you check the form code

in html
<h1 class="componentheading"><span id="atrtitle">
  <label>Contribute </label>
  </span></h1>
<span class="head">We would like you to contribute to our magazine and website. Fill in the below form to contribute</span>
<table class="submit" width="100%" cellspacing="5" cellpadding="5">
  <tr>
    <td class="title1">Name* </td><td>:</td>
    <td><input class="cf_inputbox required validate-alpha" maxlength="20" size="30"  name="name" type="text">
    </td>
  </tr>
  <tr>
    <td class="title1">Email* </td><td>:</td>
    <td><input class="cf_inputbox required validate-email" maxlength="30" size="30" name="email" type="text">
    </td>
  </tr>
  <tr>
    <td class="title1">Address* </td><td>:</td>
    <td><input class="cf_inputbox required" maxlength="100" size="30" name="address" type="text">
    </td>
  </tr>
  <tr>
    <td class="title1">City* </td><td>:</td>
    <td><input class="cf_inputbox required" maxlength="15" size="30" name="city" type="text"></td>
    <td></td>
  </tr>
  <tr>
    <td class="title1">Phone* </td><td>:</td>
    <td><input class="cf_inputbox required" maxlength="13" size="13" name="phone" type="text">
       <span class="tip_bracket">(Direct Landline No.)</span></td>
  </tr>
  <tr>
    <td class="title1">Mobile* </td><td>:</td>
    <td><input class="cf_inputbox required" maxlength="10" size="10" name="mobile" type="text"></td>
  </tr>
  </table>
 
 
 <table class="submit1" width="100%" cellspacing="5" cellpadding="5">
  
  <tr>
    <td class="title2">Category to Post* :</td>
    <td>
<div style="visibility:hidden;height:0px;line-height:0px"><?php echo JHTML::_( 'list.section','section_id', '14', 'onChange="LoadCats()"') ; ?></div>
<div id="cats_div">
<?php echo JHTML::_('list.category', 'catid', 'id=cats_div'); ?>
</div>

</td>
  </tr>
    </table>
    
    
   <table class="submit2" width="100%" cellspacing="5" cellpadding="5">
  <tr>
    <td class="title3">Upload Pictures for your Article   :<br  />
      <span class="tip_bracket">(max 3 images less than 1MB each)</span></td>
    <td><input type="text" id="fileName1" class="file_input_textbox" readonly="readonly">
 
<div class="file_input_div">
  <input type="button" value="BROWSE" class="file_input_button" />
  <input type="file" id="upload1" class="file_input_hidden" onchange="javascript: document.getElementById('fileName1').value = this.value" />
  
</div></td>
  </tr>
  <tr>
    <td></td>
    <td><input type="text" id="fileName2" class="file_input_textbox" readonly="readonly">
 
<div class="file_input_div">
  <input type="button" value="BROWSE" class="file_input_button" />
  <input type="file" id="upload2" class="file_input_hidden" onchange="javascript: document.getElementById('fileName2').value = this.value" />
  
</div></td>
  </tr>
  <tr>
    <td></td>
    <td><input type="text" id="fileName3" class="file_input_textbox" readonly="readonly">
 
<div class="file_input_div">
  <input type="button" value="BROWSE" class="file_input_button" />
  <input type="file" id="upload3" class="file_input_hidden" onchange="javascript: document.getElementById('fileName3').value = this.value" />
  
</div></td>
  </tr>
  <tr>
    <td class="title3">Heading/Title for your article* :</td>
    <td><input id="article" class="cf_inputbox required" maxlength="50" size="30" name="title" type="text">
    </td>
  </tr></table>
  
   <table class="submit3" width="100%" cellspacing="5" cellpadding="5">
  <tr>
    <td class="title4" id="c1">Article* :</td>
    <td><div id="tt">
      <div class="form_element cf_textarea" style="width:100%;">
        <!-- <label class="cf_label">Article</label> -->
        <?php
	$editor		=& JFactory::getEditor();
echo $editor->display( 'introtext',  '' , '67%', '325', '60', '20', false ) ;
?>
        
        <span id="txt" class="tip_bracket">(Not more than 800 words)</span></div></td>
  </tr>
  <tr>
    <td> </td>
    <td class="title5"><div class="form_element cf_button">
        <input class="sub1" value="Submit" name="undefined" type="submit">
      </div></td>
  </tr>
  <tr>
    <td colspan="2">Fields mark with(*) are Compulsory.</td>
  </tr>
</table>
<?php echo "<script>LoadCats();</script>" ?>


in javascript
function LoadCats() {
           var url = "index2.php?option=com_chronocontact&chronoformname=submitContent&task=extra&format=raw§ionid=14"; 
           new Ajax(url, {
              method: 'get',
              update: $('cats_div')
           }).request();   
        }

please reply me😢😢😢
GreyHead 15 May, 2010
Hi udaydahale,

This line is not needed:
<?php echo "<script>LoadCats();</script>" ?>


And if you have PHP in your form you may need to add
<?php
if ( !$mainframe->isSite() ) { return; }
?>
before any other PHP.

Bob
udaydahale 15 May, 2010
thx for reply sir

thax again😀 😀 😀 😀
This topic is locked and no more replies can be posted.

VPS & Email Hosting 20% discount
hostinger