• Other people have had this problem, I see. But what is the solution?

    I uncommented the line define(‘NET_SFTP_LOGGING’, NET_SFTP_LOG_REALTIME);

    and got this (username redacted):

    -> NET_SFTP_INIT (0.0001s)
    00000000 00:00:00:03 ….

    <- NET_SFTP_VERSION (0.0005s)
    00000000 00:00:00:03:00:00:00:08:76:65:72:73:69:6f:6e:73 ……..versions
    00000010 00:00:00:03:32:2c:33:00:00:00:18:70:6f:73:69:78 ….2,3….posix
    00000020 2d:72:65:6e:61:6d:65:40:6f:70:65:6e:73:73:68:2e -rename@openssh.
    00000030 63:6f:6d:00:00:00:01:31:00:00:00:13:73:74:61:74 com….1….stat
    00000040 76:66:73:40:6f:70:65:6e:73:73:68:2e:63:6f:6d:00 vfs@openssh.com.
    00000050 00:00:01:32:00:00:00:14:66:73:74:61:74:76:66:73 …2….fstatvfs
    00000060 40:6f:70:65:6e:73:73:68:2e:63:6f:6d:00:00:00:01 @openssh.com….
    00000070 32 2

    -> NET_SFTP_REALPATH (0.0001s)
    00000000 00:00:00:01:2e …..

    <- NET_SFTP_NAME (0.0016s)
    00000000 00:00:00:01:00:00:00:01:2f:00:00:00:48:64:72:77 ……../…Hdrw
    00000010 78:72:2d:78:72:2d:78:20:20:20:20:39:20:73:75:70 xr-xr-x 9 XXX
    00000020 70:6f:72:74:23:68:69:70:61:61:77:65:62:2e:6e:65 XXXX
    00000030 74:20:67:72:6f:75:70:2d:31:30:39:38:36:20:20:20 X group-10986
    00000040 20:20:34:30:39:36:20:4d:61:79:20:32:32:20:31:35 4096 May 22 15
    00000050 3a:35:36:20:2f:00:00:00:0f:00:00:00:00:00:00:10 :56 /………..
    00000060 00:00:01:8e:75:00:00:2a:ea:00:00:41:ed:51:4c:e8 ….u..*…A.QL.
    00000070 60:51:9c:ea:ab `Q…

    -> NET_SFTP_REALPATH (0.0001s)
    00000000 00:00:00:3f:2f:78:64:31:2f:68:6f:6d:65:73:2f:68 …?/xd1/homes/h
    00000010 61:73:68:2f:38:36:2f:30:39:2f:61:31:30:39:38:36 ash/86/09/a10986
    00000020 2f:30:35:2f:32:30:2f:75:31:30:32:30:30:35:2f:6d /05/20/u102005/m
    00000030 79:77:72:69:74:65:63:72:61:66:74:2e:6e:65:74:2f ywritecraft.net/
    00000040 77:77:77 www

    <- NET_SFTP_STATUS (0.0003s)
    00000000 00:00:00:02:00:00:00:0c:4e:6f:20:73:75:63:68:20 ……..No such
    00000010 66:69:6c:65:00:00:00:05:65:6e:2d:55:53 file….en-US

    http://wordpress.org/extend/plugins/ssh-sftp-updater-support/

Viewing 1 replies (of 1 total)
  • Plugin Author TerraFrost

    (@terrafrost)

    Can you run this program in your WordPress directory and tell me what the output is?:

    <?php
    include('Net/SFTP.php'); 
    
    $sftp = new Net_SFTP('www.domain.tld');
    if (!$sftp->login('username', 'password')) {
        exit('Login Failed');
    } 
    
    echo dirname(__FILE__) . '<br />';
    echo $sftp->pwd();
Viewing 1 replies (of 1 total)
  • The topic ‘Unable to locate wp-content’ is closed to new replies.