Support Home Page › Forums › Joomla Software › Easy Folder Listing Pro Plugin › Per User ? › Re: Per User ?
April 29, 2011 at 8:31 am
#1020
simon6023
Participant
In fact, I found out how to do this, thanks to the code you posted before.
Here is the hack, if someone wants to do that again…
On easyflashuploader.php, replace line 307
1 |
$destination = isset($local_params['destination']) ? $local_params['destination'] : $default_params['destination']; |
by
1 2 |
$user = & JFactory::getUser();<br /> $destination = "users/$user->username"; |
It creates a directory for each user.