CoreBOSBB
document management - Printable Version

+- CoreBOSBB (https://discussions.corebos.org)
+-- Forum: Open (https://discussions.corebos.org/forumdisplay.php?fid=20)
+--- Forum: Open Discussions (https://discussions.corebos.org/forumdisplay.php?fid=10)
+--- Thread: document management (/showthread.php?tid=271)

Pages: 1 2


document management - saidmsl - 04-28-2016

Hi,

is there any good open source document management system which can be integrated with corebos?

Any ideas / exeriences?

ThanksĀ 


RE: document management - joebordes - 04-28-2016

We started an integration with OpenKM a few years ago but it never got anywhere. I can undig the code and share it but it is in a REALLY basic state.

I have seen some comments about Alfresco (I attach some notes I have).

In general I have never seen an integration working.


RE: document management - saidmsl - 04-28-2016

Hi

Thanks for the update

if i can get a starting point (your code for ex) , i can make it work and customize it and reshare it to you

Alfresco seems for me too complex to use
openkm seems fit
kimios also but it seems not being developped anymore


RE: document management - joebordes - 04-29-2016

I uploaded the code to github:

https://github.com/tsolucio/coreBOSOpenKM

start asking, I will try to recover context and help all I can.


RE: document management - saidmsl - 04-30-2016

System is up and starting working with

however, can you please remove the xdebug_disable(); function?
it breaks the installation if php does not have this function
or maybe :

if(function_exists('xdebug_disable'))
{
xdebug_disable();
}


RE: document management - joebordes - 04-30-2016

Done


RE: document management - saidmsl - 04-30-2016

starting to take formĀ :

1. retrieve list of folders from OpenKM
2. Saving file save the document inside OpenKM
3. Download works and retrieve the file content from OpenKM

- creation of folders : directly inside openkm

Todo :
- add categories inside document detailview
- create a document in corebos when creating a document inside OpenKM

any other ideas?


RE: document management - joebordes - 04-30-2016

Wow! Sounds much better than I remembered, good work.
Please submit pull requests or share the code if you can.

I think I would start asking what are the goals of this integration? What functionality are you trying to fulfill? I mean saving and sharing documents can already be done. What are you looking for? What are the benefits?


RE: document management - saidmsl - 05-01-2016

Hi,

i have an implementation where it is require to save a copy of all documents (electronic - papers) for each potentials/ projects
ie all files has to be scanned and linked to the potential
it has around 20-50 documents per potential organised in subfolders
actually we have around 2000 documents and it's growing fastly

i had previously added subfolders to document module but the document module become a mess to manage and slow


i need also to manage permissions and versions of documents and a document previewer (google docs is not an option as there are some security reasons behind)

there is also a need to backup all files

i had a look at openkm and it look easy to use

the benefit would be that i let openkm manage all storage of documents and only data records are kept in corebos

-------

each user should be synced with openkm. however openkm does not provide webservices for user management
i'm looking into how it can be done easily


RE: document management - joebordes - 05-01-2016

I understand.
Let me know if I can help.

I contacted the guys at OpenKM at the time, they were very reasonable and willing to help. We could explore that path if you need to enhance the application in some way. They will probably be willing to do it.

Keep me informed.