This is a migrated thread and some comments may be shown as answers.

Permissions issues on production server

3 Answers 106 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Karl Wilkens
Top achievements
Rank 1
Karl Wilkens asked on 15 Dec 2009, 03:10 PM
Hi, we are using Q3 FileExplorer & .net 2 framework on a Windows 2003 server. We have the view, upload, delete paths set correctly, but the upload button is inactive. On the server, the security settings the Asp.net machine account, the Network and Network Service accounts have FULL CONTROL permissions applied at the root level of the site, with 'Allow inheritable permissions' Checked. I have verified that the sub folders where we are trying to upload files indeed have these permissions set as well. Does anyone know what would cause this and what I should do to get this working. I am puzzled as we have other sites on the same box configured the same way, and the file Explorer works fine (except those use Q2 Telerik rather than Q3 but I dont think this is the issue). Thanks in advance for any help on this.

3 Answers, 1 is accepted

Sort by
0
Fiko
Telerik team
answered on 18 Dec 2009, 11:54 AM
Hello Karl,

 Could you please paste the configuration of the RadFileExplorer's properties (ViewPaths, DeletePaths etc.). Once I have a better view over your setup I will do my best to provide a working solution as soon as possible.

Regards,
Fiko
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Aron
Top achievements
Rank 2
answered on 30 Dec 2009, 03:21 PM
Sorry to hi-jack the post, but I have the same issue:

I can view the folders without any problem.
However if I:
  • create a new folder
  • delete
  • rename
  • upload a file
I get a permission error. However the user has full rights (full trust) to the whole dir.
note: Normal RadUpload works fine only the FileExplorer has a permission issue.

Telerik.Web.UI 2009.3.1221.35
Telerik.Web.Design 2009.3.1221.35
enviro: .net 3.5, ii7, win 2k8

Here's my code:


  <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"
    </telerik:RadStyleSheetManager> 
    <telerik:RadFileExplorer ID="RadFileExplorer1" runat="server"  EnableOpenFile="true"  
        InitialPath="~/images/uploads" Height="500px" Width="710px"
        <Configuration SearchPatterns="*.*" MaxUploadFileSize="15000000" > 
        </Configuration> 
    </telerik:RadFileExplorer> 



 protected void Page_Load(object sender, EventArgs e) 
    { 
        //if (!Page.IsPostBack) 
        //{ 
            RadFileExplorer1.EnableOpenFile = true
            RadFileExplorer1.DisplayUpFolderItem = true
            RadFileExplorer1.VisibleControls = Telerik.Web.UI.FileExplorer.FileExplorerControls.All; 
 
            string[] thePaths = (string.Format("~/App_Themes/{0}/,~/images/media,~/images/uploads,~/images/documents", SiteSettings.Theme())).Split(','); 
 
            RadFileExplorer1.Configuration.ViewPaths = thePaths; 
            RadFileExplorer1.Configuration.UploadPaths = thePaths; 
            RadFileExplorer1.Configuration.DeletePaths = thePaths; 
        //} 
    } 

0
Fiko
Telerik team
answered on 04 Jan 2010, 03:30 PM
Hello Aron,

I have already answered your support ticket.

Greetings,
Fiko
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
FileExplorer
Asked by
Karl Wilkens
Top achievements
Rank 1
Answers by
Fiko
Telerik team
Aron
Top achievements
Rank 2
Share this question
or