I am currently trying to integrate processmaker with alfresco 5.2

cancel
Showing results for 
Search instead for 
Did you mean: 
shalini1403
Member II

I am currently trying to integrate processmaker with alfresco 5.2

I have created a trigger in processmaker 3.2 with all the parameters 

$data = array(

"filedata" => "C:/Users/EXample/Desktop/ALFRESCO/test.doc"

);
$data_string = json_encode($data);


$ch = curl_init('http://localhost/alfresco/api/-default-/public/alfresco/versions/1/nodes/c5edfbbe-e9ee-4158-add1-37b...

curl_setopt($ch, CURLOPT_USERPWD, 'admin:ex');

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-type:multipart/form-data'));

curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$result = curl_exec($ch);
echo($result);
die("shalini");

But when i execute this trigger i get the following error:

{"error":{"errorKey":"No disk space available","statusCode":409,"briefSummary":"04090141 No disk space available","stackTrace":"For security reasons the stack trace is no longer displayed, but the property is kept for previous versions","descriptionURL":"https://api-explorer.alfresco.com"}}

Can someone pls suggest what to do to resolve this error?

2 Replies
dvuika
Alfresco Employee

Re: I am currently trying to integrate processmaker with alfresco 5.2

I am not sure the question relates to ADF and Angular. Could you please move it to the corresponding area in order to get responses quicker?

rupeshsawaliya
Established Member

Re: I am currently trying to integrate processmaker with alfresco 5.2

Hi,

Looking at error it looks like there is no space on the Alfresco server,

Try login to the Alfresco via share and create or upload document, If there also you face same issue then you need to free space on your installed Alfresco.

To free up some space you can delete unused logs from the following 

  1. <Alfresco-home>/ 
  2.  <Alfresco-home>/tomcat/logs 

I hope this will be helpful.

Regards,

Rupesh

EnProwess Technologies