phpbar.de logo

Mailinglisten-Archive

[php] sichere uploads

[php] sichere uploads

Andreas Stagl a.stagl_(at)_gmx.at
Thu, 15 Feb 2001 14:25:01 +0100 (MET)


> > > https? ftps? curl? ...all diese begriffe hab
> > > ich schon mal gehört,
> > Eindeutige Antwort : CURL, da diese SSL-Verdingungen
> > zulaesst. Alledings ist das Problem, das das Teil als
> > Shell-Script benutzt werden muss.
> 
>   gibt auch ne php-extension für curl:
>   http://www.php.net/manual/en/ref.curl.php

yep, die hab ich im einsatz. kann mir jemand helfen, wie ich einen file via
https oder secure-ftp auf einen server uploade. via normalem ftp klappt ja
alles, nur secure häng ich momentan

habs mal (ganz laienhaft) folgendermaßen probiert:

<?php
$ch = curl_init ("http://www.testserver.at/");
$fp = fopen ("test.txt", "r");
curl_setopt ($ch, CURLOPT_INFILESIZE, filesize ($fp));
# curl_setopt ($ch, CURLOPT_SSLVERSION,2);
curl_setopt ($ch, CURLOPT_USERPWD,"user:pw"); //mein ftp user und pw
curl_setopt ($ch, CURLOPT_INFILE,$fp);
curl_setopt ($ch, CURLOPT_UPLOAD,$fp);
curl_exec ($ch);
curl_close ($ch);
fclose ($fp);
?>
     
bin nach wie vor für jede hilfestellung dankbar.

ciao,
andy

-- 
Sent through GMX FreeMail - http://www.gmx.net


php::bar PHP Wiki   -   Listenarchive