TaxonomyDAO is installed on a file system that is not supported

I run Tridion 2011 SP1 and receive the following warnings in the cd_core.xxxx.xx.xx.log file.

2012-10-17 12:37:50,298 WARN FSTaxonomyDAO - TaxonomyDAO is set to File System, which is not supported. Check your bindings settings and/or license file. 

I removed the following element from cd_deployer_conf.xml

 <Module Type="TaxonomyDeploy" Class="com.tridion.deployer.modules.TaxonomyDeploy"/> 

but I still get warnings.

I think this problem causes many of my multimedia components to fail to publish. If correcting the cause of these warnings does not help, I will at least judge it.

change

I forgot to mention that I use the file system as a content data store

+4
source share
1 answer

Storage associations are stored in cd_storage_conf.xml. You need to check repository configuration and save repository in db. Also, you should not remove from the deployer if you are using a taxonomy.

Update

Saving a taxonomy in a file system binding is not supported, as far as I know, it can only be for the database, this is the same from version 2009, and what you see is the WARNING message that you are using is not supported. I'm not sure if you can disable this binding.

In addition, metadata stored on the local file system is deprecated from SDL Tridion 2011 SP1 in favor of storing metadata in the database. Link SDL Doc Link .

+5
source

Source: https://habr.com/ru/post/1440285/


All Articles