tags:

views:

204

answers:

2

Hello,

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);
+1  A: 

Maybe you could try the PEAR webdav client?

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

Good luck :)

Stephen
Oh, great, thanks a lot. Unfortunately it doesn't have nice docs, so it took a while to understand how it works (and get PEAR installed on shared hosting).For those, who will want to upload files, I'll put a code snippet to my question.
Mee
Could you maybe accept my answer or up it if possible ? thnx
Stephen
Done. Thanks again :)
Mee
+1  A: 

Just use a regular HTTP client. WebDAV is just HTTP + a few more methods. PUT is for upload, GET is for download, PROPFIND to get directory listings, etc.

Evert