Hey,
I just installed the current version of the Chronoforms Component (5.0 RC3.1).
I created a simple form (one checkbox, one textfield, submit button), HTML renderForm onLoad, onsubmit (email, dbsave and debug). I setup the e-mail with a static from, to and subject.
The email is not being sent. Here is the debug output (without my e-mail Adress):
Data Array
Array
(
[option] => com_chronoforms5
[chronoform] => Test
[event] => submit
[Itemid] =>
[checkbox1] => 1
[text3] => //My E-Mail Adress
[button4] => Submit
)
Array
(
)
Errors
Array
(
)
Debug Info
Array
(
)
What do I have to do?
Greetings & Thanks
Martin
I just installed the current version of the Chronoforms Component (5.0 RC3.1).
I created a simple form (one checkbox, one textfield, submit button), HTML renderForm onLoad, onsubmit (email, dbsave and debug). I setup the e-mail with a static from, to and subject.
The email is not being sent. Here is the debug output (without my e-mail Adress):
Data Array
Array
(
[option] => com_chronoforms5
[chronoform] => Test
[event] => submit
[Itemid] =>
[checkbox1] => 1
[text3] => //My E-Mail Adress
[button4] => Submit
)
Array
(
)
Errors
Array
(
)
Debug Info
Array
(
)
What do I have to do?
Greetings & Thanks
Martin
Hi SeniorDingDong,
There's no sign of an email in the Debug output - have you Enabled the Email action?
Bob
There's no sign of an email in the Debug output - have you Enabled the Email action?
Bob
Hey,
thanks for the quick reply.
According to the "Edit action settings" of the E-Mail Action I did enable it.
Is there anything else I have to enable?
Thanks,
Martin
thanks for the quick reply.
According to the "Edit action settings" of the E-Mail Action I did enable it.
Is there anything else I have to enable?
Thanks,
Martin
Hi Martin,
What's the order of the actions ? are you sure that the debug action is at the end of the list in the "on submit" ?
Regards,
Max
What's the order of the actions ? are you sure that the debug action is at the end of the list in the "on submit" ?
Regards,
Max
Hey Max,
you found my first mistake. Thanks. I moved the debugger to the end of the list. Data Array and Error stays the same.
Array
(
[0] => Array
(
[Email] => Array
(
[0] => An email with the details below was sent successfully:
[1] => To: myUSername@myurl.de
[2] => Subject:aasdasd
[3] => From name:Martin
[4] => From email:myusername@myUrl.de
[5] => Reply name:
[6] => Reply email:
[7] => Attachments:
[8] => Body:
<p>rwaasdasdadadsasd</p>
<p> </p>
)
)
)
Can you find another mistake? Thanks for the Help.
you found my first mistake. Thanks. I moved the debugger to the end of the list. Data Array and Error stays the same.
Array
(
[0] => Array
(
[Email] => Array
(
[0] => An email with the details below was sent successfully:
[1] => To: myUSername@myurl.de
[2] => Subject:aasdasd
[3] => From name:Martin
[4] => From email:myusername@myUrl.de
[5] => Reply name:
[6] => Reply email:
[7] => Attachments:
[8] => Body:
<p>rwaasdasdadadsasd</p>
<p> </p>
)
)
)
Can you find another mistake? Thanks for the Help.
Hi SeniorDingDong,
Please make sure that the To and From Email addresses are different. Please see this FAQ which has some other suggestions.
Bob
Please make sure that the To and From Email addresses are different. Please see this FAQ which has some other suggestions.
Bob
Hey,
it took me a while but you were right. Joomla was not able to send emails. I am sorry to have bothered you. Thanks for your help.
I now have another Problem. I saved the form, created a table, connected the table to the form, tested it and am now able to view the records. They are stored perfectly.
My problem is, that I get a page with no content when I click on "backup records". I can not save the records using chronoform. Can you help me again?
Thanks
Martin
it took me a while but you were right. Joomla was not able to send emails. I am sorry to have bothered you. Thanks for your help.
I now have another Problem. I saved the form, created a table, connected the table to the form, tested it and am now able to view the records. They are stored perfectly.
My problem is, that I get a page with no content when I click on "backup records". I can not save the records using chronoform. Can you help me again?
Thanks
Martin
Hi Martin,
Where or what is the 'BackUp Records' button/link you are clicking on?
Bob
Where or what is the 'BackUp Records' button/link you are clicking on?
Bob
In Data Listing. After I clicked on the Table unter "Coinnected Tables" in the Form Manager.
unfortunately this is a bug, and will need a code fix, you can do it yourself until we have the new version ready, in this file:
/administrator/components/com_chronoforms5/chronoforms/chronoforms.php
Change line 560:
To
Regards,
Max
/administrator/components/com_chronoforms5/chronoforms/chronoforms.php
Change line 560:
$form->actions_config[0] = array('tablename' => $this->data['table']);
To
$form->actions_config[0] = array('tablename' => $this->data['table'], 'enabled' => 1);
Regards,
Max
This topic is locked and no more replies can be posted.