Tridion 在“已发布项”下找不到已发布的动态组件模板

Tridion 在“已发布项”下找不到已发布的动态组件模板,tridion,tridion-2011,tridion-content-delivery,Tridion,Tridion 2011,Tridion Content Delivery,我不熟悉动态组件模板 我已经创建了一个组件模板,并将其“发布为动态组件”,并允许“允许在页面上使用动态组件” 我的系统中没有配置Deployer,所有发布的项目都存储在某个本地位置 我已经发布了此组件模板,我正在尝试查找已发布的CT。 我没有在已发布的项目中找到此CT 部署人员是否必须使用动态CT以及如何使用动态CT创建页面 有什么办法可以解决这个问题吗 编辑 Addinf-storageconfig文件 <?xml version="1.0" encoding="UTF-8"?>

我不熟悉动态组件模板

我已经创建了一个组件模板,并将其“发布为动态组件”,并允许“允许在页面上使用动态组件”

我的系统中没有配置Deployer,所有发布的项目都存储在某个本地位置

我已经发布了此组件模板,我正在尝试查找已发布的CT。 我没有在已发布的项目中找到此CT

部署人员是否必须使用动态CT以及如何使用动态CT创建页面

有什么办法可以解决这个问题吗

编辑

Addinf-storageconfig文件

<?xml version="1.0" encoding="UTF-8"?>
<Configuration Version="6.1"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="schemas/cd_storage_conf.xsd">
    <Global>
        <!--Optional:-->
        <ObjectCache Enabled="false">
            <!--Optional:-->
            <Policy Type="LRU" Class="com.tridion.cache.LRUPolicy">

                <Param Name="MemSize" Value="16mb"/>
            </Policy>


            <Features>
                <Feature Type="DependencyTracker" Class="com.tridion.cache.DependencyTracker"/>
            </Features>

        </ObjectCache>

        <Storages>

            <Storage Type="persistence" Id="defaultdb" dialect="MSSQL" Class="com.tridion.storage.persistence.JPADAOFactory" defaultStorage="true">
                <Pool Type="jdbc" Size="5" MonitorInterval="60" IdleTimeout="120" CheckoutTimeout="120" />
                <DataSource Class="com.microsoft.sqlserver.jdbc.SQLServerDataSource">
                    <Property Name="serverName" Value="MyserverName" />
                    <Property Name="portNumber" Value="MYPORT" />
                    <Property Name="databaseName" Value="Tridion_Broker" />
                    <Property Name="user" Value="TridionBrokerUser" />
                    <Property Name="password" Value="MyPassword" />
                </DataSource>
            </Storage>



            <Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="defaultFile" defaultFilesystem="false">
                <Root Path="c:\temp" />
            </Storage>
            <Storage Type="filesystem" Class="com.tridion.storage.filesystem.FSDAOFactory" Id="defaultDataFile" defaultFilesystem="true" defaultStorage="false">
                <Root Path="c:\temp\data" />
            </Storage>


        </Storages>

    </Global>

    <ItemTypes defaultStorageId="defaultdb" cached="false">

        <Item typeMapping="Page" cached="false" storageId="defaultFile"/>


            <Item typeMapping="ComponentPresentation" itemExtension=".Jsp" storageId="defaultFile"/>
            <Item typeMapping="ComponentPresentation" itemExtension=".Asp" storageId="defaultFile"/>
            <Item typeMapping="ComponentPresentation" itemExtension=".Xml" storageId="defaultFile"/>
            <Item typeMapping="ComponentPresentation" itemExtension=".Txt" storageId="defaultFile"/>

    </ItemTypes>


</Configuration>

为了再次澄清,我发布了动态组件模板,尽管CT已发布,但在服务器中的已发布项中找不到。已发布的项目存储在c:\temp


提前感谢。

请检查您的存储配置文件(cd\u storage\u conf.xml)以了解动态CPs位置。如果尚未指定,它将使用默认位置

您可以指定自己的位置

<ItemTypes defaultStorageId="Default Storage" cached="CACHE_BEHAVIOR">

    <Item typeMapping="ComponentPresentation" itemExtension=".Jsp" cached="CACHE_BEHAVIOR" storageId="DCPStorage" />
......
</ItemTypes>

......

感谢您的帮助。在cd\u storage\u config.xml中,我看到了这句话。但它是有两次和评论。您只是指这个吗?请检查此处()的位置。。如果未指定@User222——正如Vikas提到的,您应该关注@vikaskumar,@Ram S。我有xml格式的。。但是它有注释。@User222您是否从CMS验证DCP是否已发布?让我们从头开始。您是否将动态CT链接到模式?您是否有基于该模式的组件?该组件在GUI中是否标记为“已发布”?也就是说:它的图标上有一个小地球仪吗?@Quirjin。我已将动态CT链接到模式。我已将模式链接到CT。我已经出版了CT和组件。这两个图标都已发布,并且Globe位于图标顶部。即使指定了其位置。我无法在已发布的项目下找到CT。