Hi,
the file upload is on page 3.
This is what the debugger shows me on page 4:
But on page 5 [datei1] is empty!
All other data works correctly!
the file upload is on page 3.
This is what the debugger shows me on page 4:
Array
(
[datei1] => Array
(
[name] => 20121017164531_test.jpg
[original_name] => test.jpg
[path] => /Applications/MAMP/htdocs/25test/components/com_chronoforms/uploads/bewerbung/20121017164531_test.jpg
[size] => 40745
[link] => http://localhost/25test/components/com_chronoforms/uploads/bewerbung/20121017164531_test.jpg
)
)
But on page 5 [datei1] is empty!
Array
(
[datei1] =>
)
All other data works correctly!
Hi tobisagt,
Hmmm . . . I've never tried that. I'm a bit surprised that it isn't carried over. You could try using a custom code action to copy the item you need directly into the $form->data array
Bob
Hmmm . . . I've never tried that. I'm a bit surprised that it isn't carried over. You could try using a custom code action to copy the item you need directly into the $form->data array
<?php
$form->data['datei1_url'] = $form->data['datei1']['url'];
?>
Bob
Thx for your reply.
But it seems not to work too.
I uploaded my form, maybe it can help you to find a solution?!
Maybe i did something wrong?!
It would really nice if we can get this to work, because its really important to me!
THx, so far!
-Tobias
But it seems not to work too.
I uploaded my form, maybe it can help you to find a solution?!
Maybe i did something wrong?!
It would really nice if we can get this to work, because its really important to me!
THx, so far!
-Tobias
Hi Tobias,
On Page 4 if you move the MultiPage action down after the Upload Files action (and thus the Custom Code action) the value is carried forward OK. In fact the whole Upload Files array is carried forward.
Bob
On Page 4 if you move the MultiPage action down after the Upload Files action (and thus the Custom Code action) the value is carried forward OK. In fact the whole Upload Files array is carried forward.
Bob
This topic is locked and no more replies can be posted.