Thanks for the link.
Before I can test 6.2.3 I have the following question: Since the property group wizard did not work I activated automation as described in the wiki pages and added the following excute scripting action which is based on the incremental autonumeric script described also in the wiki pages:
However, since I activated automation the wizards do not work anymore when I add a document using the "add document" button (which worked before). It seems that enabling automation disabled the wizards completely. Is this true and known?
So I think when I now upgrade to 6.2.3 I first have to disable automation to ensure that the wizards work when adding a document using the "add document" button (to have a clear start). But I have no idea how I disable automation again. I have no knowledge about java programming and about sql (I have only little experiences in C programming and this was 25 years ago).
So should I disable automation before testing 6.2.3 and if yes how can I do this?
And finally, in the link you provided it says:
Sorry for my lack of knowldedge but I will do my best to test the new version.
Before I can test 6.2.3 I have the following question: Since the property group wizard did not work I activated automation as described in the wiki pages and added the following excute scripting action which is based on the incremental autonumeric script described also in the wiki pages:
Code: Select all
With this script the property group "details" is automatically added when I add a new document even if this is done be scanning.import com.openkm.api.OKMPropertyGroup;
import com.openkm.api.OKMRepository;
import java.util.*;
import com.openkm.dao.DatabaseMetadataDAO;
String grpName = "okg:details";
String path = OKMRepository.getInstance().getNodePath(null,uuid);
OKMPropertyGroup.getInstance().addGroup(null, path, grpName);
However, since I activated automation the wizards do not work anymore when I add a document using the "add document" button (which worked before). It seems that enabling automation disabled the wizards completely. Is this true and known?
So I think when I now upgrade to 6.2.3 I first have to disable automation to ensure that the wizards work when adding a document using the "add document" button (to have a clear start). But I have no idea how I disable automation again. I have no knowledge about java programming and about sql (I have only little experiences in C programming and this was 25 years ago).
So should I disable automation before testing 6.2.3 and if yes how can I do this?
And finally, in the link you provided it says:
Run from your preferred SQL client these queries:Should I use the HSQL or the MySQL line (I have a default installation). And I don't have a "preferred SQL client" (I don't have an SQL client at all). Can I enter the line in the Database query section of OpenKM?
HSQL
ALTER TABLE OKM_NODE_MAIL ALTER COLUMN NML_CONTENT clob;
MySQL
ALTER TABLE OKM_NODE_MAIL MODIFY NML_CONTENT longtext;
Sorry for my lack of knowldedge but I will do my best to test the new version.
