Scott,

Just for future knowledge, you can limit the abilities of the user
based upon their role.

config.accessControl = arrayNew(1);

config.accessControl[1] = structNew();
config.accessControl[1].role = '*';
config.accessControl[1].resourceType = '*';
config.accessControl[1].folder = '/';
config.accessControl[1].folderView = true;
config.accessControl[1].folderCreate = true;
config.accessControl[1].folderRename = true;
config.accessControl[1].folderDelete = true;
config.accessControl[1].fileView = true;
config.accessControl[1].fileUpload = true;
config.accessControl[1].fileRename = true;
config.accessControl[1].fileDelete = true;

All you would have to do is change the fileUpload value to false to
prevent file uploads.

Dean

On Tue, Jan 3, 2012 at 2:35 PM, Terry Troxel <terry.tro...@gmail.com> wrote:
>
> Thanks Russ, But turning off the buttons did not satisfy the CF security
> updates.
> So since I had an abundance of time this weekend I installed, configured the
>
> Following and I am now a happy camper:
>
> CKEditor, latest version, CFFM latest version by Mr. Rick Root (Loud
> Applause),
> And I now have an image manager that I think puts CKFinder in the weeds and
> is
> Open source.
>
> Terry Troxel
>
>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:349303
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to