Hello telerik,
I use his code on IIS 7
in a aspx file under a folder with this webconfig
Problem is: when i click on any of image/document/... manager to upload an image, then
it redirects the iframe containing the manager to the login page.
Before that it IIS complained that the request url is too big, which you can see i have increased.
WHY does it redirect?
I use his code on IIS 7
<
telerik:RadEditor
ToolsFile
=
"~/Admin/FEHTools.xml"
Height
=
"355px"
Width
=
"433px"
ContentFilters
=
"RemoveScripts"
CssClass
=
"EditorCss"
EnableResize
=
"false"
ID
=
"radEditorWpContent"
runat
=
"server"
>
<
imagemanager
viewpaths
=
"~/editor/Images/"
uploadpaths
=
"~/editor/Images/"
deletepaths
=
"~/editor/Images/"
maxuploadfilesize
=
"100000000"
searchpatterns
=
"*.*"
enableimageeditor
=
"true"
/>
<
flashmanager
viewpaths
=
"~/editor/flash/"
uploadpaths
=
"~/editor/flash/"
deletepaths
=
"~/editor/flash/"
maxuploadfilesize
=
"100000000"
/>
<
mediamanager
viewpaths
=
"~/editor/media/"
uploadpaths
=
"~/editor/media/"
deletepaths
=
"~/editor/media/"
maxuploadfilesize
=
"100000000"
searchpatterns
=
"*.*"
/>
<
documentmanager
viewpaths
=
"~/editor/documents/"
uploadpaths
=
"~/editor/documents/"
deletepaths
=
"~/editor/documents/"
maxuploadfilesize
=
"100000000"
searchpatterns
=
"*.*"
/>
<
cssfiles
>
<
telerik:EditorCssFile
Value
=
"~/CSS/RadEditor2.css"
/>
</
cssfiles
>
</
telerik:RadEditor
>
in a aspx file under a folder with this webconfig
<
system.web
>
<
authorization
>
<
allow
roles
=
"admin"
></
allow
>
<
deny
users
=
"?"
/>
</
authorization
>
</
system.web
>
<
system.webServer
>
<
security
>
<
requestFiltering
>
<
requestLimits
maxUrl
=
"8192"
maxQueryString
=
"4096"
/>
</
requestFiltering
>
</
security
>
</
system.webServer
>
Problem is: when i click on any of image/document/... manager to upload an image, then
it redirects the iframe containing the manager to the login page.
Before that it IIS complained that the request url is too big, which you can see i have increased.
WHY does it redirect?