Issue Repeated

I am in the process of creating a form in Drupal 10 utilizing the Webform module. I can successfully add elements such as “Textfield” and “TextArea.” However, when I attempt to add the “File upload” field, it does not appear in the list of available options. Please refer to the attached screenshot for clarification. I would appreciate your assistance in resolving this issue and enabling the file upload field in the form.

2024-10-31T105905

Resolution Method

Simply add the following line in settings.php, and clear cache via drush cr:

1
2
$settings['file_private_path'] = 'sites/default/files/webform';
#P.S. You can replace the path with any directory of your choice

Then you should be able to see the following “file upload element” options in your webforms:

2024-10-31T105934

You may also verify the “File Upload Element” via visiting: http://example.com/admin/structure/webform/config/elements/

2024-10-31T105806

Resource