forked from arndta/TinyFileManager.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWeb.config
More file actions
60 lines (55 loc) · 2.77 KB
/
Copy pathWeb.config
File metadata and controls
60 lines (55 loc) · 2.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<configSections>
<section name="TFMProfiles" type="TinyFileManager.NET.ConfigProfiles, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" allowDefinition="Everywhere" allowExeDefinition="MachineToApplication" restartOnExternalChanges="true" />
</configSections>
<system.web>
<compilation debug="true" targetFramework="4.0" />
<!--<customErrors mode="Off"/>-->
</system.web>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
<TFMProfiles>
<profile name="Default">
<AllowedImageExtensions>'jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff'</AllowedImageExtensions>
<AllowedFileExtensions>'doc', 'docx', 'pdf', 'xls', 'xlsx', 'txt', 'csv','html','psd','sql','log','fla','xml','ade','adp','ppt','pptx','zip','rar'</AllowedFileExtensions>
<AllowedVideoExtensions>'mov', 'mpeg', 'mp4', 'avi', 'mpg','wma'</AllowedVideoExtensions>
<AllowedMusicExtensions>'mp3', 'm4a', 'ac3', 'aiff', 'mid'</AllowedMusicExtensions>
<AllowedMiscExtensions></AllowedMiscExtensions>
<UploadPath>resources\files</UploadPath>
<ThumbPath>resources\thumbs</ThumbPath>
<AllowUploadFile>True</AllowUploadFile>
<AllowDeleteFile>True</AllowDeleteFile>
<AllowCreateFolder>True</AllowCreateFolder>
<AllowDeleteFolder>True</AllowDeleteFolder>
<MaxUploadSizeMb>100</MaxUploadSizeMb>
<RootPath></RootPath>
<RootURL></RootURL>
<FillSelector></FillSelector>
<PopupCloseCode></PopupCloseCode>
</profile>
<profile name="NoTinyMCE">
<AllowedImageExtensions>'jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff'</AllowedImageExtensions>
<AllowedFileExtensions>'doc', 'docx', 'pdf', 'xls', 'xlsx', 'txt', 'csv','html','psd','sql','log','fla','xml','ade','adp','ppt','pptx','zip','rar'</AllowedFileExtensions>
<AllowedVideoExtensions>'mov', 'mpeg', 'mp4', 'avi', 'mpg','wma'</AllowedVideoExtensions>
<AllowedMusicExtensions>'mp3', 'm4a', 'ac3', 'aiff', 'mid'</AllowedMusicExtensions>
<AllowedMiscExtensions></AllowedMiscExtensions>
<UploadPath>resources\files</UploadPath>
<ThumbPath>resources\thumbs</ThumbPath>
<AllowUploadFile>True</AllowUploadFile>
<AllowDeleteFile>True</AllowDeleteFile>
<AllowCreateFolder>True</AllowCreateFolder>
<AllowDeleteFolder>True</AllowDeleteFolder>
<MaxUploadSizeMb>100</MaxUploadSizeMb>
<RootPath></RootPath>
<RootURL></RootURL>
<FillSelector>'#demotextbox', window.opener.document</FillSelector>
<PopupCloseCode>window.close();</PopupCloseCode>
</profile>
</TFMProfiles>
</configuration>