ssh2.sftp

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Bernhard Günther

    ssh2.sftp

    Hello friends of php,

    PhP-Version is 4 on a FreeBSD-System using apache.

    Got a problem using ssh2.sftp.

    Installed correctly (libssh2, ssh2.so-module).

    Connecting with publickey works, sftp subsystem-connect works too:

    $sshconn= ssh2_connect ('myhostname',2 2);

    $result = ssh2_auth_pubke y_file ($sshconn, 'user',
    'include/.ssh/id_rsa.pub', 'include/.ssh/id_rsa' );

    $sftp = ssh2_sftp($sshc onn);

    sftp-subsystem itself is working, the following works too:

    ssh2_sftp_mkdir ($sftp, '/home/meee/NEWDIR1');

    but if I start using the ssh2.sftp-things is wont get any further:

    mkdir("ssh2.sft p://$sftp/home/meee/NEWDIR2");

    in szenario I get a

    Warning: mkdir(ssh2.sftp :///home/meee/NEWDIR2): No such file or
    directory in.

    Also fopen will not work and wont produce an error.

    Has anyone working this?

    I also tried any combinations of

    fopen ("ssh2.sftp://$sftp/home/meee/testfile",'rb') ;

    with $sftp:22 , user:pass@hostn ame:22 and these things.

    Will it work with php5? I have no Testsystem for this
    at the moment and dont want to install one if there is
    no hope.

    Thanks in advance

    Greetings

    Bernhard Guenther, Bonn, Germany
Working...