Questions tagged [alfresco]

Alfresco Open Source Enterprise Content Management Software

Alfresco is an open source enterprise content management software. It features a content repository, which can be embedded in applications, and several products built on top of the repository: Document Management, Records Management, and Collaboration (Alfresco Share).

More information on Alfresco is available at Alfresco.com

Alfresco also maintains a wiki, forum and online documentation, which can often contain the answer to your problems. Several people regularly hang out at #alfresco in freenode IRC (Check out channel logs here). And, there is a Google Group called "Alfresco Technical Discussion".

The Alfresco tag here is best used for questions around configuring, extending, customising and building on top of Alfresco. For questions on installing and provisioning Alfresco, the Alfresco tag on ServerFault may be a better bet

3529 questions
0
votes
1 answer

How to do re-index of Solr in Alfresco?

I am working with Alfresco Share 5.2 and currently trying to do re-index of Solr on Test server. Steps which I covered are: stop Alfresco service; delete content from model directory; root@ip-10-200-2-88:/opt/alfresco/alf_data/solr4/model# rm * …
Mike1988B
  • 57
  • 5
0
votes
1 answer

Job Solr.CoreWatcher threw an unhandled Exception while trying to run Alfresco application

I am trying to run Alfresco application (Alfresco 5.2) but for some reason I am getting this kind of error: INFO: Initializing Spring root WebApplicationContext 2023-03-28 13:37:00,542 ERROR [quartz.core.JobRunShell]…
Mike1988B
  • 57
  • 5
0
votes
1 answer

Alfresco 7.3.1 Docker - SearchService

I have upgraded alfresco version from Community 5.2 (zip version) to community 7.3.1 (Docker version) with java 17. I have migrated database. My searchService method doesn't find old documents (before migration) with customized metadata but it works…
anakin59490
  • 630
  • 1
  • 11
  • 28
0
votes
0 answers

How to get a person assigned to the task in Alfresco?

There are many elements in repo and I start workflows specifying a document attached to the workflow: var workflow = actions.create("start-workflow"); // ... var node = search.findNode("workspace://SpacesStore/" +…
Alexey
  • 301
  • 5
  • 18
0
votes
1 answer

Create custom link as a part of nodeRef name in Alfresco Share

I am working with Alfresco Share 5.2 and trying to create custom link that is a part of document name in Alfresco. To be more specific, I have button which is used to create new excel file and save it to specific location inside My files directory.…
Mike1988B
  • 57
  • 5
0
votes
1 answer

Create new node in Alfresco using java code

I am working with Alfresco Share 5.2 and trying to create new node. I introduced new button, and by clicking on that button new excel file will be created and stored inside MyFiles directory. Everything works fine, but created node has size 0, and I…
Mike1988B
  • 57
  • 5
0
votes
2 answers

Print Alfresco exception

I've some problem printing the exception stack trace for Alfresco Exception. On debug mode, step by step under Eclipse IDE I'm able to see the message when the exception is raised inspecting the Exception object but, when I send the error message…
Andrea Girardi
  • 4,337
  • 13
  • 69
  • 98
0
votes
1 answer

How to send data from ajax call to Webscript in Alfresco?

I am working with Alfresco Share 5.2 and currently developing new feature. Must say that I am new in Alfresco. I need to get window location by clicking on button in js, to trigger ajax call and to get window.location.href. After that I need to send…
Mike1988B
  • 57
  • 5
0
votes
0 answers

Alfresco Workflow Console delete workflow long time

I delete workflow from Workflow Console, It very long time Sometimes it does not respond until login session expires When the page responds the workflow is deleted using over 5 hr. delete workflow activiti$42099xxx
TEN_KUNG
  • 1,229
  • 2
  • 5
  • 12
0
votes
0 answers

how to update document properties using cmis - more then one version of document

I'd like to update properties on CMIS Alfresco document. When I have one version of document it is OK. Document doc = (Document) session.getLatestDocumentVersion(session.createObjectId(nodeId)); doc.addToFolder(folder, true); Map
fBruno
  • 1
  • 1
0
votes
0 answers

Get list of file attachment in activiti (alfresco process service)

Team, How do I get list of attachment or actual files using Javascript? for UserTask or tasklistener? I want to find best way to fetch all the docs and attachments related to a completed workflow of a given model
0
votes
1 answer

Context initialization failed Alfresco

I have Alfresco Community Edition 5.2. The project has been cloned from GitHub repository, and after that I cannot run it. I am getting the following error at catalina.out file: 2023-02-02 13:16:49,623 ERROR [web.context.ContextLoader]…
Mike1988B
  • 57
  • 5
0
votes
0 answers

invalid keystore in alfresco community editon 7.3

I want to install alfresco community edition 7.3 on windows 10. I used below repo for generate keystore: https://github.com/Alfresco/alfresco-ssl-generator and this command: run.cmd -alfrescoversion community -keystorepass “password" -truststorepass…
HNP
  • 35
  • 1
  • 7
0
votes
0 answers

how to implement pop up custom error message using throw new error inside workflow other than start event in alfresco version 7.0 and up

The problem here is that when using alfresco version 6 the use of throw new error is able to be used as a validation method inside of a workflow, the use of throw new error here is enabling us to pop up an error message for the user stating what is…
0
votes
1 answer

How to execute custom action in Alfresco before download a file?

I want to store in the repository an unchanged file, but change its content on dowloading due to user's role. To do this I just created my own action that changes content of the file, but found that Alfresco does not provide an appropriate rule to…
Alexey
  • 301
  • 5
  • 18