Zen Cart Logo
Forums / All Other Contributions/Addons / Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

Views: 2,009

Results 1 to 5 of 5
8 Jun 2012, 4:23 PM
#1
looseshengji avatar

looseshengji

New Zenner

Join Date:
Jun 2012
Posts:
5
Plugin Contributions:
0

Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

Hi All,

I've been using the Customer Uploaded Files Plugin, and it has been great. It however does not work with when I assign another user with view and download uploaded files privilege, at least in my case. Whenever the other user tries to access "upload" under the "customers" menu, the system displays this message:

Sorry, your security clearance does not allow you to access this resource.
Please contact your site administrator if you believe this to be incorrect.
Sorry for any inconvenience.

I wonder if anyone else has experienced the same problem, more importantly, if anyone found the solution to this issue? Any suggestions, help is welcome and would be much appreciated.

Attachment 10589

8 Jun 2012, 7:30 PM
#2
webchills avatar

webchills

Zen Follower

Join Date:
Sep 2005
Location:
Austria
Posts:
99
Plugin Contributions:
1

Re: Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

Check how you defined the filenames, normally done in includes/extra_datafiles/xxxx.php
You problaby have defined the filename as xxxx.php in this file. Change the define to xxxx (without the .php)

9 Jun 2012, 6:44 AM
#3
webchills avatar

webchills

Zen Follower

Join Date:
Sep 2005
Location:
Austria
Posts:
99
Plugin Contributions:
1

Re: Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

To be a little more concrete change in YOURADMIN/includes/extra_datafiles/uploads_filenames.php:
from:

define('FILENAME_UPLOADS', 'uploads.php');

to:

define('FILENAME_UPLOADS', 'uploads');
19 Oct 2012, 3:30 AM
#4
gilby avatar

gilby

Totally Zenned

Join Date:
Aug 2005
Location:
Vic, Oz
Posts:
1,816
Plugin Contributions:
0

Re: Customer Uploaded Files Plugin: Sorry, your security clearance does not allow you...

Thank You!
This solved a problem I was having also.