Re: [PHP] How to upload via SFTP with allow_url_open disabled?

2010-07-31 Thread Thomas Anderson
You might have better luck with phpseclib's Net_SFTP, which uses fsockopen:

http://phpseclib.sourceforge.net/documentation/net.html#net_sftp_example

Good luck!

On Thu, Jul 29, 2010 at 12:13 PM, Scott Teresi scot...@teresi.us wrote:
 I'm attempting to send a file over SFTP in PHP, but all the examples I find
 online do something like this:

   $stream = @fopen(ssh2.sftp://xx;, 'w');
   @fwrite($stream, $data_to_send)

 This requires allow_url_fopen to be enabled on the server, to get a stream
 for the remote file.

 I maintain the server but would like to keep allow_url_fopen disabled. If
 I do that, how can I send a file over SFTP?

 Thanks for any help people can provide!!

 Scott Teresi



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] How to upload via SFTP with allow_url_open disabled?

2010-07-29 Thread Scott Teresi
I'm attempting to send a file over SFTP in PHP, but all the examples I find
online do something like this:

   $stream = @fopen(ssh2.sftp://xx;, 'w');
   @fwrite($stream, $data_to_send)

This requires allow_url_fopen to be enabled on the server, to get a stream
for the remote file.

I maintain the server but would like to keep allow_url_fopen disabled. If
I do that, how can I send a file over SFTP?

Thanks for any help people can provide!!

Scott Teresi



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] How to upload via SFTP with allow_url_open disabled?

2010-07-29 Thread Dmitrii Varvashenia
http://www.php.net/manual/en/function.ssh2-scp-send.php

2010/7/29 Scott Teresi scot...@teresi.us:
 I'm attempting to send a file over SFTP in PHP, but all the examples I find
 online do something like this:



-- 
WBR, Dmitrii
+375 29 60-LINUX, 25-LINUX, 40-LINUX
icq: 193-74-771
www.varvashenia.ru, www.seoder.ru

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php