Posts

Showing posts with the label Alfresco Tutorial

FTP Connection In Installed Alfresco | Code Factory

Image
Note  :  First check that PC is able to create FTP connection... Step 1 : Stop alfresco. Step 2 : Add these properties in < alfresco> -> tomcat -> shared -> classes -> alfresco-global.properties ftp.enabled=true ftp.port=2121 Step 3 : Start alfresco. Step 4 : Check FTP connection is successfully created or not using URL. ftp:// :2121/alfresco Tags : Alfresco Tutorial Configuring the FTP file server How To Enable FTP On Alfresco? Transfer and Get File Using FTP

FTP Connection In Alfresco | Code Factory

Image
Note : First check that PC is able to create FTP connection... Step 1 : Add these properties in alfresco-global.properties ftp.enabled=true ftp.port=2121 Step 2 : Start Repo and Share. Step 3 : Check FTP connection is successfully created or not using URL. ftp:// :2121/alfresco Tags : Alfresco Tutorial Configuring the FTP file server How To Enable FTP On Alfresco? Transfer and Get File Using FTP

Add and Delete User Using REST API In Alfresco | Code Factory

Image
Alfresco One 5.x Developer's Guide :  Download. Log in : GET  /alfresco/s/api/login?u={username}&pw={password?} Log in and establish a ticket.  Input u cleartext user name (must be URL encoded) pw cleartext password (must be URL encoded) Returns the new authentication ticket.  The user name and password are provided as URL arguments which may be logged by proxies or the Alfresco server. Add Person : POST  /alfresco/s/api/people Adds a new person based on the details provided.  userName mandatory - the user name for the new user firstName mandatory - the given Name lastName mandatory - the family name email mandatory - the email address password optional - the new user's password. If not specified then a value of "password" is used which should be changed as soon as possible. disableAccount optional - If present and set to "true" the user is created but their account will be disabled. quota optional - Sets the ...

Upload Metadata And Files Using Batch Import Or Bulk Import In Alfresco | Code Factory

Image
Alfresco One 5.x Developer's Guide :  Download. Streaming bulk import is exposed in two web scripts: A simple UI web script that can be used to set up the parameters for an import. This is an HTTP GET web script with a path of: http://localhost:8080/alfresco/service/bulkfsimport An initiate web script that kicks off an import using parameters that are passed to it (for the source directory, target space, and so on). If you want to script or invoke the tool programmatically, this is the web script that you call. This is an HTTP POST web script with a path of:  http://localhost:8080/alfresco/service/bulkfsimport/initiate The UI web script presents the following simplified HTML form: The  Import directory  field is required and indicates the absolute file system directory to load the content and spaces from, in an OS-specific format. Note that this directory must be locally accessible to the server on which the Alfresco instance is running. It m...

Alfresco Books | Code Factory

1. Alfresco Content Services 5.2 On Premises Reference Architecture :  Link. 2. Alfresco Content Services 5.2 Administrator Guide :  Link. 3. Alfresco Content Services 5.2 Developer Guide :  Link. 4. Alfresco Content Services 5.2 Getting Started Guide :  Link. 5. Alfresco One 5x Developer's Guide - 2nd Edition :  Link. Tags : Alfresco Content Services 5.2 On Premises Reference Architecture Alfresco Content Services 5.2 Administrator Guide Alfresco Content Services 5.2 Developer Guide Alfresco Content Services 5.2 Getting Started Guide Alfresco One 5x Developer's Guide - 2nd Edition

Customizing the Share Header Style (Aikau) and Introducing SurfBug in Alfresco | Code Factory

Image
Customizing the Share Header Style (Aikau) : Go to Url :  http://127.0.0.1:8080/share/page/modules/deploy and add " Debug Enable Extension ". Introducing Surfbug : Go to Url :  http://127.0.0.1:8080/share/page/surfBugStatus and click button " Enable Surfbug ". Tags : Alfresco Tutorials Customizing the Share Header Style (Aikau) and Introducing SurfBug Customizing the Share Header Style Introducing SurfBug How to enable surfbug in alfresco

Cannot find Alfresco Repository on this server | Code Factory

Cannot find Alfresco Repository on this server. (Does this application have access to alfresco-global.properties? Does this application have cross-context permissions?) If you try to configuring the MySQL database with alfresco and this error come then follow this steps... First of all follw this :  Link. Then check you completed these steps or not : Copy mysql-connector-java-5.x.x jar into <Alfresco>  ->  tomcat  ->  lib folder. max_connections = 275  in C -> Program Files(x86) -> MySQL  ->  MySQL Server 5.0  ->  my.ini Create user alfresco and assign all privilages. Create schema alfresco in DB.