Windows Server 2008 上的文件夹中可以存储的项目数量是否有最大限制?
我们有一个需求,将数十万个项目的 ftp 处理到一个文件夹,并处理文件夹中的项目。我听说有传言说它是 5000 件物品。有人想用证据支持这一点吗?我的 google fu 让我失望了。
我在 SDL Tridion 项目上使用 DD4T,并在存储配置中使用以下配置,以便将二进制文件(在这种情况下,二进制文件是多媒体组件中存储的任何内容)发布到文件系统,但将页面保留在内容交付数据库中。
我发现随着对所需二进制文件的要求发生变化,例如客户想要提供 Adobe Illustrator 文件以供下载,我需要通过更改配置并重新启动部署程序来将更多类型添加到列表中,这并不理想。
<ItemTypes defaultStorageId="defaultdb" cached="false">
<Item typeMapping="Page" cached="false" storageId="defaultFile"/>
<Publication Id="9" defaultStorageId="defaultdb" cached="true">
<Item typeMapping="Binary" itemExtension=".jpg" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".gif" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".pdf" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".doc" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".docx" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".xls" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".xlsx" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".xlsm" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".jpeg" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".png" storageId="defaultFile" cached="true"/>
<Item typeMapping="Binary" itemExtension=".ico" storageId="defaultFile" cached="true"/>
</Publication>
</ItemTypes>
Run Code Online (Sandbox Code Playgroud)
谁能告诉我是否有办法更改上述内容,以便给定出版物的所有多媒体组件的内容都转到文件系统?我似乎无法在文档中找到这个。
我的站点(测试环境)中有一个虚拟目录。它是一个 UNC 共享,也用作公共 FTP。
它被配置为作为域管理员帐户连接,并且“测试设置”表示一切似乎都在工作。但是,当我尝试连接到它时,我得到:
500 - “由于访问被拒绝,无法开始监视 \INTRANET\FTP\test\web.config 上的更改”
这是一个 ASP.NET YSOD。我不知道为什么 ASP.NET 会参与进来,因为它是我请求的静态 .jpg 文件。
我尝试打开失败的请求跟踪,这是特定错误:
如果我将“物理路径登录类型”从 ClearText 更改为 Network。我收到以下 IIS 错误:
HTTP 错误 500.19 - 内部服务器
错误无法访问请求的页面,因为该页面的相关配置数据无效。
详细的错误信息
- 模块IIS Web 核心
- 通知开始请求
- 处理程序尚未确定
- 错误代码
0x80070005
- Config Error由于权限不足无法读取配置文件
- 配置文件
\\?\UNC\INTRANET\FTP\test\web.config
请求的 URL http://test.mydowmain.com:80/uploads/images/ca49acf6-6174-412e-8abd-59fab983e931.jpg
物理路径
\\INTRANET\FTP\test\images\ca49acf6-6174-412e-8abd-59fab983e931.jpg
登录方法尚未确定
- 登录用户尚未确定
- 失败请求跟踪日志目录
C:\inetpub\logs\FailedReqLogFiles
奇怪的是,这不会生成失败的请求日志——我已将失败的请求跟踪设置为跟踪错误代码为 400-999 的错误。
另外值得注意的是,如果我从 IIS …