Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
I had to set access for the users role for locations at [your path to ui]/Shell/ClientResources [your path to ui]/CMS/Javascript to get and add epifilebrowser as I describe in this blog post, http://barelysoftware.com/2011/06/tinymce-in-an-episerver-template-page/.
Hope that solves your problem!
Thanks for your answer :) Didn't work tho, tried the following. Added the paths in episerver-config as well. Any more ideas? Seems to be the exact same issue you had.
<location path="path/ui/CMS/ClientResources">
<system.web>
<authorization>
<allow roles="domain\editors, domain\admins" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="path/ui/CMS/Javascript">
<system.web>
<authorization>
<allow roles="domain\editors, domain\admins" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="path/ui/CMS/ClientResources">
<system.web>
<authorization>
<allow roles="domain\editors, domain\admins" />
<deny users="*" />
</authorization>
</system.web>
</location>
<location path="path/ui/CMS/ClientResources">
<system.web>
<authorization>
<allow roles="domain\editors, domain\admins" />
<deny users="*" />
</authorization>
</system.web>
</location>
You have put the location /path/ui/CMS/ClientResources but the one I put into my web.config is /path/ui/Shell/ClientResources, typo or just fast reading?
I've implemented a automatic login with the WindowsMembershipProvider. Everything works great, the right click-menu comes up, everyone in the domain\epiEditUsers and domain\epiAdminUsers can access /edit or /admin.
Tho, the image button seems to be missing from "Insert image". See below.
http://dl.dropbox.com/u/13492395/edit.jpg
It's probably a permission problem, but i've added the domain\groups everywhere. And also "All functions .. in EPiServer CMS".
Tried the following:
* Added the correct groups in the /ui/ etc
* I've added the virtual roles in EPiServerFramework
<add roles="WebAdmins, Administrators, domain\epiAdminGroup" mode="Any" name="CmsAdmins" type="EPiServer.Security.MappedRole, EPiServer.Framework" />
<add roles="WebEditors, domain\epiEditGroup" mode="Any" name="CmsEditors" type="EPiServer.Security.MappedRole, EPiServer.Framework" />
* Added the groups to "all functions in episerver cms editor"
NOTE: I've duplicated the site, and added forms-login. And then the button appears. Is there any script-path persmission missing or?