Search found 154 matches

by car031
Mon Dec 12, 2016 7:30 am
Forum: Configuration
Topic: Create Report using Ext. Properties field
Replies: 1
Views: 2839

Re: Create Report using Ext. Properties field

The report can be HTML or PDF only, the manual and howto is published in the online guide here: http://docs.logicaldoc.com/en/reports/custom-reports
by car031
Thu Dec 08, 2016 8:30 am
Forum: Configuration
Topic: Tags button not present
Replies: 1
Views: 2404

Re: Tags button not present

it is a feature available in the commercial editions only
by car031
Mon Nov 28, 2016 7:48 am
Forum: Usage
Topic: Access document extended properties from automation script
Replies: 1
Views: 3109

Re: Access document extended properties from automation scri

You can reference an extended property in this way: $doc.getValue('property_name')
by car031
Sat Oct 29, 2016 7:25 pm
Forum: Usage
Topic: Automate Script for Moving documents
Replies: 2
Views: 6710

Re: Automate Script for Moving documents

You can use the Automation in the transition, you can call the $DocTool.move

Code: Select all

#foreach( $doc in $documents )
$DocTool.move($doc, "/TestDocArc")
#end
by car031
Tue Sep 20, 2016 1:18 pm
Forum: Usage
Topic: Delete alias folder
Replies: 3
Views: 5372

Re: Delete alias folder

sorry

update ld_folder set ld_deleted=1 where ld_foldref is not null;
by car031
Tue Sep 20, 2016 11:08 am
Forum: Usage
Topic: Delete alias folder
Replies: 3
Views: 5372

Re: Delete alias folder

yes, open a console against your database and execute this statement: update ld_folder set ld_deleted=1 where ld_docref is not null;
by car031
Tue Aug 30, 2016 6:58 am
Forum: Installation
Topic: [CE] Preview problem(?) and restriction features (?)
Replies: 2
Views: 6143

Re: [CE] Preview problem(?) and restriction features (?)

the CE can only preview PDFs, the commercial editions can preview a wide set of document types.
by car031
Fri Aug 26, 2016 3:01 pm
Forum: Web Services
Topic: OutOfMemoryError: Java heap space on downloading large file
Replies: 2
Views: 6462

Re: OutOfMemoryError: Java heap space on downloading large f

in the bin/logicaldoc.sh locate the JAVA_OPTS variable, here increase the heap memopry, you could try with -Xmx4000m
Of course you have to restart LogicalDOC.
by car031
Wed Aug 17, 2016 1:33 pm
Forum: Usage
Topic: files containing special characters like “&”
Replies: 4
Views: 7252

Re: files containing special characters like “&”

Unfortunately that char is reserved in the web, so using it may lead to a problem depending on the browser's implementation. Better to avoid the & and ? in file names

Go to advanced search