Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP iDisk\Webdav Client

Tags:

php

upload

webdav

I need to upload files to iDisk drive. I've found that iDisk has webdav interface, and it's working fine with desktop clients. Unfortunately I wasn't able to find suitable WebDav client for PHP, and can't find out how to use cUrl to upload files to WebDav. The only client class I've found doesn't run on my hosting (we are using shared GoDaddy hosting).

Can anyone tell me how can I upload files to WebDav\iDisk Server with PHP?

thanks in advance, Michael


UPD

For those, who is searching for answer, here is a code snippet:

include("PEAR/HTTP/WebDAV/Client.php");
$client = new HTTP_WebDAV_Client_Stream();

$user="YOUR_LOGIN";
$pass = "YOUR_PASSWORD";

$dir = "webdav://".$user.":".$pass."@idisk.me.com/".$user."/";

$path = "";
var_dump($client->stream_open($dir."test.txt","w",null,$path));
$client->stream_write("HELLO WORLD!");
$client->stream_close();
$client->dir_opendir($dir,array());
var_dump($client->dirfiles);
like image 486
Mee Avatar asked Jul 30 '10 08:07

Mee


1 Answers

Maybe you could try the PEAR webdav client?

http://pear.php.net/package/HTTP_WebDAV_Client/

Good luck :)

like image 197
thecodeassassin Avatar answered Sep 21 '22 03:09

thecodeassassin