Hi
I managed to create an entry form that besides other fields has also 3 "upload file" boxes. I am testing it and made it work, however there's a small issue:
- after filling in all the fields and emailing it I receive the following error followed by the "thank you!" message:
In the mentioned file, I have the following code on the mentioned lines
- the email arrives well, but only contains 2 out of 3 attached files
- in the uploads folder I have all 3 files
However I must do something so that the error message won't show and also to make sure all 3 files arrive by email, as after the form will be online and running there will be another person that will receive the email with the form and I won't be around for each email she will get
Thank you in advance for any help!
I managed to create an entry form that besides other fields has also 3 "upload file" boxes. I am testing it and made it work, however there's a small issue:
- after filling in all the fields and emailing it I receive the following error followed by the "thank you!" message:
Warning: array_values() expects parameter 1 to be array, null given in /home/achifro/public_html/joomla/administrator/components/com_chronoforms/form_actions/email/email.php on line 205
Warning: Invalid argument supplied for foreach() in /home/achifro/public_html/joomla/administrator/components/com_chronoforms/form_actions/email/email.php on line 206
Multumim pentru inscriere! Thank you for your entry!
In the mentioned file, I have the following code on the mentioned lines
if($form->files[$attachment] === array_values($form->files[$attachment])){
foreach($form->files[$attachment] as $m_file){
- the email arrives well, but only contains 2 out of 3 attached files
- in the uploads folder I have all 3 files
However I must do something so that the error message won't show and also to make sure all 3 files arrive by email, as after the form will be online and running there will be another person that will receive the email with the form and I won't be around for each email she will get
Thank you in advance for any help!