我在我的项目中使用了elFiner
(使用elFinder连接器),并且在本地主机上工作得很好。
但是当我将它部署到服务器(在线托管)时,它给了我一个错误target dir not found or access denied
。这是我的配置;
<elFinder apiVersion="2.0"
localFSRootDirectoryPath="D:ProjectsEmaarEmaar.WebAreasEmaarAdminContentimages"
localFSThumbsDirectoryPath="D:ProjectsEmaarEmaar.WebAreasEmaarAdminContentimages.thumbs"
rootDirectoryName="Root"
uploadMaxSize="20M"
defaultVolumeName="LocalFileSystem"
baseUrl="http://localhost:4595/Areas/EmaarAdmin/Content/images/"
baseThumbsUrl="http://localhost:4595/Areas/EmaarAdmin/Content/images/.thumbs/"
duplicateFilePattern="Copy of {0}"
duplicateDirectoryPattern="Copy of {0}"
thumbsSize="48,48">
</elFinder>
我相信我的路径是不正确的在我的web.config。
我如何设置elFinder
工作也在线(在网络上)?
更新:我的在线设置看起来像这样;
<elFinder apiVersion="2.0" localFSRootDirectoryPath="AreasEmaarAdminContent"
localFSThumbsDirectoryPath="AreasEmaarAdminContent.thumbs"
rootDirectoryName="Root Main" uploadMaxSize="20M" defaultVolumeName="LocalFileSystem"
baseUrl="http://subdomain.domain.com/Areas/EmaarAdmin/Content/"
baseThumbsUrl="http://subdomain.domain.com/Areas/EmaarAdmin/Content/.thumbs/"
duplicateFilePattern="Copy of {0}" duplicateDirectoryPattern="Copy of {0}" thumbsSize="48,48">
我还设置了Read
和Write
的权限
我用一个简单的技巧解决了这个问题。首先,我编写了以下代码并将其放入_Layout
(razor)文件中。
@HttpContext.Current.Request.PhysicalApplicationPath
这给了我一个物理路径然后我复制它并粘贴到localFSRootDirectoryPath
和localFSThumbsDirectoryPath
中,它起作用了