Upload a folder
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 07:33 AM
I'm suggesting my company to use Alfresco for document management. Currently we use shared folder.
I've create the demonstration, new we're about to import all the old data into Alfresco.
Can anyone explain me how to upload more than a file (whole folder) at a time to Alfreso's Space?
Thax
- Labels:
-
Archive
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 08:27 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2010 12:06 PM
and use xcopy or rsync to import it into Alfresco.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-21-2010 10:13 PM
at least i'm using zip for upload and webdav for download
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2010 12:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2010 02:19 AM
The tutorial from wiki are slightly different, i think it's because i'm using version 3.2r
Anyway, i think WebDav and FTP is enough for me this time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2010 03:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2010 05:15 AM
1) could I have the steps to configure CIFS?
2) Is CIFS able to map network shared hard drives?
3) from my understanding, Alfresco copies the file into the server from the pointed location, this action makes the server more bulky and takes more space.
Once i've enabled CIFS, I want to be able to upload hundreds of files to alfresco. will this be possible without creating problems on the server?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-23-2010 07:32 AM
Start Alfresco and mount it as a drive using (if you are on Linux)
mount -t cifs //127.0.0.1/alfresco /mnt/alfresco -o username=admin,password=admin
2) Is CIFS able to map network shared hard drives?CIFS lets you browse the Alfresco Repository as a File Sharing system and mount it as
permanent drive.
3) from my understanding, Alfresco copies the file into the server from the pointed location, this action makes the server more bulky and takes more space.You could then use rsync or xcopy to do a bulk import of documents into Alfresco repository
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2010 10:18 PM
Thanks for the guide,
I am getting error when trying to mount the drive
mount error: can not change directory into mount target /mnt/alfresco
Any idea how to solve this?I couldn't find file-servers-custom.xml.
I could only find file-servers.xml
Should be the same one right? It looks something like below
<alfresco-config area="file-servers"> <config evaluator="string-compare" condition="CIFS Server"> <serverEnable enabled="${cifs.enabled}"/> <host name="${cifs.localname}A" domain="${cifs.domain}"/> <comment>Alfresco CIFS Server</comment> <!– Set to the broadcast mask for the subnet –> <broadcast>${cifs.broadcast}</broadcast> <!– Set to the IP for the adapter for Java socket –> <bindto>${cifs.bindto}</bindto> <!– Use Java socket based NetBIOS over TCP/IP and native SMB on linux –> <tcpipSMB ipv6="${cifs.ipv6}" platforms="linux,solaris,macosx"/> <netBIOSSMB bindto="${cifs.bindto}" platforms="linux,solaris,macosx"/>
and file-servers.properties is as below
filesystem.name=Alfrescocifs.enabled=truecifs.localname=${localname}cifs.domain=cifs.broadcast=255.255.255.255cifs.bindto=0.0.0.0cifs.ipv6=disabledcifs.hostannounce=trueftp.enabled=trueftp.ipv6=disablednfs.enabled=false
How do I mount if on Windows?