0
I’ve been put in charge of maintaining a website. When I took over it I was given SFTP credentials and accessed and edited the files through Dreamweaver.
I’ve subsequently changed Dreamweaver accounts because the trial ran out and now have a proper version. However when I SFTP into it now the server just has an empty root directory.
I checked this by using the SFTP command in terminal and it’s showing the exact same result (empty root folder).
tazer@HMSLinux ~ $ sftp XXXXXXXX@www.lceresearch.unsw.edu.au
XXXXXXXX@www.lceresearch.unsw.edu.au's password:
Connected to www.lceresearch.unsw.edu.au.
sftp> pwd
Remote working directory: /
sftp> ls
sftp> cd ..
sftp> pwd
Remote working directory: /
sftp> ls
sftp>
What’s gone wrong?! The website is still there on the Internet, I used a WGET script to crawl through it and download everything. So why is nothing showing up when I use SFTP?
EDIT: With respect to what OS the server is running:
$ curl -I www.lceresearch.unsw.edu.au
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 24104
Content-Type: text/html; charset=UTF-8
Date: Tue, 17 Nov 2015 01:15:01 GMT
ETag: "1e00bc-5e28-519dc423d9134"
Last-Modified: Thu, 02 Jul 2015 03:44:38 GMT
Server: Apache/2.2.31 (Amazon)
Connection: keep-alive
Can you please edit your system to clearly indicate what OS this web server is running on. I am assuming Linux in my answer, but what version? Or perhaps you are using Microsoft IIS? Knowing that would be helpful.
– JakeGould – 2015-11-17T00:07:47.017I now have server details. – m4p85r – 2015-11-17T01:16:48.817
Nothing that
curl -I
can provide gives you OS info. In fact I edited my answer 1 hour ago to explain what info I found usingcurl -I
. Honestly nobody here can possibly help you. Just wait to talk to the guy who used to maintain the website. – JakeGould – 2015-11-17T01:49:09.453