Main
Index
Search
Posts
Who's
Online
Log
In

Home: Products: CMS Builder:
My Account Error Message

 

 


4cdg
User

Dec 21, 2011, 9:38 AM

Post #1 of 4 (665 views)
Shortcut
My Account Error Message Can't Post

I have added several fields to the user accounts section of my cms. This feature is used to populate a members section on the website. One is a multiple image upload field. I have made this available in the my account section so users can edit their profile but not see the user account menu on the left. Users can upload images to this area fine but if they try to drag the uploads up or down in the upload list they get this error

Error: You don't have permission to access this menu.

I thought giving them account access may fix this and it does, but it lets them see all the user accounts and that will not work as we don't want people to be able to edit/erase/delete users or have the ability to change their section access levels.

Any suggestions


Jason
Staff / Moderator


Dec 21, 2011, 10:30 AM

Post #2 of 4 (663 views)
Shortcut
Re: [4cdg] My Account Error Message [In reply to] Can't Post

Hi,

I took a look into this and it is a bug. The error occurs because it is looking at permissions in the accounts section. We will be looking into a fix for this and will let you know what we find.

Thanks,
---------------------------------------------------
Jason Sauchuk - Programmer 
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/ 


Dave
Staff / Moderator


Dec 21, 2011, 1:04 PM

Post #3 of 4 (653 views)
Shortcut
Re: [4cdg] My Account Error Message [In reply to] Can't Post

Hi 4cdg,

Good find! We've fixed that for the next release.

If you are comfortable modifying PHP and you'd like to apply the fix yourself here are the instructions:
- Edit /cmsAdmin/lib/menus/default/uploadList_functions.js
- Search for #tableName
- Replace this line:

Code
menu:          $('#tableName').val(),

- With this line:

Code
menu:          $('#menu').val(),


Then refresh your browser (and clear your cache if needed).

Let me know if that works for you. Thanks!

Dave Edis - Senior Developer
interactivetools.com
 


4cdg
User

Dec 21, 2011, 1:09 PM

Post #4 of 4 (650 views)
Shortcut
Re: [Dave] My Account Error Message [In reply to] Can't Post

That fixed it.

Thanks guys