Support Home Page › Forums › Joomla Software › Easy Flash Uploader Plugin › Upload folder : one per user ? › Re: Upload folder : one per user ?
April 29, 2011 at 8:42 am
#1065
simon6023
Participant
Hi Michael, I found out how to do this, thanks to the topic you indicated.
Here is the hack !
On line 307 of the easyflashuploader.php, replace
1 |
$destination = isset($local_params['destination']) ? $local_params['destination'] : $default_params['destination']; |
by
1 2 |
$user = & JFactory::getUser();<br /> $destination = "users/$user->username"; |
It works perfectly !
Automatically creates the user folder, by username (or whatever else you want, id, etc), and updates it when the folder already exists.
Thanks for helping !
Simon