Sitemap

Sunday, April 5, 2015

UCM: Tips and Tricks

To ensure that the two metadata fields Security Group and Type do not contain any default values upon check-in:
ForceDocTypeChoice=1
ForceSecurityGroupChoice=1


When set to TRUE, resource files defined in components will be refreshed only when the content server is restarted which will increase CS performance. Definitely set this to TRUE in your production environments.
DisableSharedCacheChecking=true


To restrict users with read only permissions to download a copy of the content (you might have to search within the <cs> directory and text search for GetCopyAccess. Edit the files that contain GetCopyAccess=true and set the parameter to false. Restart the server). For more information, check Doc ID 1260914.1.
GetCopyAccess=false


Custom or standard services used for file uploads now require additional configuration parameters below
ForcePermissionCheckforAllowedUploadServices=true (if user permissions are used, it will require validation)
AppendToAllowedUploadServices=<ServiceName1>,<ServiceName2>,<ServiceName3>


Incoming Socket Connection Address Security Filter
SocketHostAddressSecurityFilter=127.0.0.1|10.111.19.15


When batchloading content from the command line, the user specified in the BatchLoaderUserName configuration entry must have administrative rights to the security group to which the content is being checked in.
BatchLoaderUserName=sysadmin


To turn off all content profiles and disable all global rules
DisableContentProfiles=true


To increase the size of the memo field beyond 255. This will only apply to newly created fields.
MemoFieldSize=3000


To enable the error logging for BatchLoader when running it from the command line
EnableErrorFile=true


To set the maximum number of search connections that are open simultaneously. For example, if MaxSearchConnections=5, and six search requests are made at the same time, the sixth request goes into a queue until one of the first five requests is completed.
MaxSearchConnections=5


This can be used to support a high ingestion rate when transferring content items from an external repository into Content Server storage, bypassing Inbound Refinery, workflow, and indexing.
DirectReleaseNewCheckinDoc=1


Disable a particular query form view. Possible values we can set are "standard" which is the default, and "queryBuilder".
DisabledSearchFormTypes=queryBuilder


To create tables based on external database views.
EBRIncludeViewsInTableList=true


Disable the authorization check
DisableAuthorizationTokenCheck=true


To speed up the scheduled execution time of the scheduled events to run every minute for scheduled events that normally run every hour
DoDebugFastScheduledEvents=true


Get the post install screen after the installation of UCM
ForceInitialPostInstallConfiguration=true


Searching all revisions of a content (Refer https://community.oracle.com/thread/3718985)
SearchEngineName=DATABASE.METADATA.ALLDOCS


While importing contents using archiver, if the user gets the csCheckinReleaseDateError, add the first 2 entries in the source and target UCM instances. If this doesn't work, then add the third entry and restart
UseRevisionCreateDate=true       //Preserves the release date
AllowMatchesInDateCheck=true     //Allows two content items to share the same time interval
SystemDateFormat=M/d/yyyy {h:mm[:ss] {aa}[zzz]}!mAM,PM


OracleTextSearch
SearchIndexerEngineName=OracleTextSearch
IndexerDatabaseProviderName=SystemDatabase   //Name of the Database Provider used to store the search index.
AdditionalEscapeChars=_:#

No comments:

Post a Comment