Hi,
I use Zoho Editor with remote API code under PYDIO server 6.20
I can create any document as well as writer, sheet and pres
I can save only writer document, but not able with sheet and show. Why ??
In the file named : ../pydio/plugings/editor.zoho/class.ZohoEditor.php
I can see this part of code !
(…)
$service = “exportwriter”;
if (in_array($extension, $sheetExt)) {
$service = “sheet”;
} else if (in_array($extension, $presExt)) {
$service = “show”;
} else if (in_array($extension, $docExt)) {
$service = “exportwriter”;
}
$arguments = array();
$httpClient->GetRequestArguments(“https://”.$service.”.zoho.com/remotedoc.im”, $arguments);
$arguments[“PostValues”] = $params;
$arguments[“PostFiles”] = array(
“content” => array(“FileName” => $tmp, “Content-Type” => “automatic/name”)
);
(…)
With Exportwriter function for writer document, everything work for saving !
But with sheet or show document, eveything dosn’t work for saving.
I got “Connection refused from the remote server”
According to Zoho it would be a problem with a time out into php.ini
All are grew up to 3600 s in my php.ini file !!!!
According to Zoho also to open and edit and save document should use this command :
Zoho Writer – https://writer.zoho.com/remotedoc.im expect in Pydio with exportwriter and works !
Zoho Sheet – https://sheet.zoho.com/remotedoc.im dosn’t work for saving
Zoho Show – https://show.zoho.com/remotedoc.im dosn’t work for saving
Where is the problem to resolv the correct saving way for my sheet and show doc ?
Phil