Dear all,
How to use multiplier with file upload? and save url of each file upload. I've been success with textbox but not work with fileupload.
Thanks you.
How to use multiplier with file upload? and save url of each file upload. I've been success with textbox but not work with fileupload.
Thanks you.
Hello Yudhizth,
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How do I use the Multi File Upload widget?
P.S: I'm just an automated service๐
I'm not a Chrono professional, but after checking your new post, I think that the following links may help:
How do I use the Multi File Upload widget?
P.S: I'm just an automated service๐
I found a clue, I change field name to file1[__N__] and put file1 on files config. So, when I submit the form. It show that file has been uploaded successfully. But I still have a problem with save the link of the file. I put this code on custom code before db save.
It's doesn't work๐
On db save i put fileupload as model id. Maybe I miss something?
Thank you.
<?php
foreach ($form->data["fileupload"] as $k => $v) {
$form->data["fileupload"][$k]["file1"] = $form->files["file1"][$k]["link"];
}
?>
It's doesn't work๐
On db save i put fileupload as model id. Maybe I miss something?
Thank you.
This topic is locked and no more replies can be posted.