10377 Posts in 2193 Topics by 1709 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1035 Views |
-
Can we define the upload directory in userforms?

10 June 2010 at 7:11am
What do I do to change the default upload location for the files uploaded through Userforms? Isn't there a config setting or a a file to modify?
The general "Uploads" directory can easily become a mess...
-
Re: Can we define the upload directory in userforms?

10 June 2010 at 6:04pm
Not yet. But this is on the roadmap http://open.silverstripe.org/ticket/5563
-
Re: Can we define the upload directory in userforms?

18 January 2011 at 3:46pm
If you want to change the directory that the file is uploaded to, in UserDefinedForms.php just add a third variable to the line
$upload->loadIntoFile($_FILES[$field->Name], $file);
with the directory that you want the files to go to. The directory is relative to the assets folder so
$upload->loadIntoFile($_FILES[$field->Name], $file, 'Uploads/folder');
will upload to 'assets/Uploads/folder'
| 1035 Views | ||
|
Page:
1
|
Go to Top |


