it was working fine but since the update 2 days ago its nt working and lost a lot of data my clients sent because of that 🙁 nothing is shown in the entries in the file upload field and in the email its nt shown as a real file just as ex. Curriculum Vitae 1.doc
for me nothing was changed, guess i better downgrade
Nothing about the way files are uploaded has been changed in months.
me neither didnt change anything 🙁 i downgraded to 2.7 and nowi get this Warning: sprintf() [function.sprintf]: Too few arguments in /home/content/52/10701052/html/wp-content/plugins/visual-form-builder/includes/form-output.php on line 573
me neither i didnt change anything 🙁 now i downgraded to 2.7 and i got this Warning: sprintf() [function.sprintf]: Too few arguments in /home/content/52/10701052/html/wp-content/plugins/visual-form-builder/includes/form-output.php on line 573
downgraded to 2.7.1 all bugs r fixed now: files uploaded successfully and now errors
Same exact problem as dinaag, when someone uploads a file there is no file attached in the uploads folder on the server anymore there is on the ‘filename’. I checked to make sure it wasn’t going anywhere else on the server. I downgraded to 2.7.1 uploads worked again however now I cannot drag and drop the forms. I tried to remove 2.7.1 and reupload a fresh copy of 2.7.3 still no uploads.
**there is only the ‘filename
i just removed it and all it’s files and used 2.7.1, no drag and drop just by click but works fine
yeah but if i need to make changes in the future, i need to remove all the existing stuff to get it to where it needs to be without drag & drop.
Looks like this was caused by mangled code during an SVN commit. The form output that sets enctype="multipart/form-data" was actually 46="multipart/form-data".
Thus the $_FILES array wasn’t being passed because it wasn’t being told to. I’ll have this fixed in the next version.
yep that fixed it. thanks
Editing visual-form-builder/includes/form-output.php
change
$output = ‘<div class=”visual-form-builder-container”><form id=”‘ . $form->form_key . ‘” class=”visual-form-builder’ . $label_alignment . ‘” method=”post” 46=”multipart/form-data”>
to
$output = ‘<div class=”visual-form-builder-container”><form id=”‘ . $form->form_key . ‘” class=”visual-form-builder’ . $label_alignment . ‘” method=”post” enctype=”multipart/form-data”>