Write access to Web files via method other that FTP

Web hosting discussion, programming, and shared and dedicated servers.
8 posts Page 1 of 1
by roblad » Fri Jun 24, 2011 12:32 am
How can web files be edited withoug using FTP access so as to avoid sending loging credentials in clear text?
by gp1628 » Fri Jun 24, 2011 4:26 am
sftp?
by roblad » Fri Jun 24, 2011 1:12 pm
How is "sftp" used? I have been using SharePointDesigner 2007 to open a site this way ---
ftp://ftp.sonic.net/www/<directory in user's web> this works. I'm prompted for user name and pasword.

If it try sftp it doesn't.
by gp1628 » Fri Jun 24, 2011 1:22 pm
Im not big on it. Personally Ive never had a problem using ftp, email, telnet, etc.

But for the question you asked I think sftp is considered to be the answer.
Instead of FTP (File Transfer Protocol) use
SFTP (Secure File Transfer Protocol)
http://en.wikipedia.org/wiki/SSH_File_Transfer_Protocol

In any case, that is the keyword for your searches. There might be a way to get SharePointDesigner to use sftp. Or your browser (the method you were using is basically a browser method. In any browser putting ftp in place of the http does what you did
by joemuller » Fri Jun 24, 2011 2:54 pm
The easiest way to do this securely is to use 'scp'. You'll need to have us enable Shell Access on your account (it's free! just give us a call!), then use a client such as WinSCP (http://winscp.net) to transfer the files the same as you would via ftp. If you're on the mac, my personal favorite is Cyberduck (http://cyberduck.ch/).
I'm a proud employee of Sonic.net! :-)
by nsr500 » Fri Oct 07, 2011 2:38 pm
I use sshfs to mount directly using password-less ssh. Requires a shell account, sshfs and FUSE, sshfs is here: http://fuse.sourceforge.net/sshfs.html.

The main gotcha is the inability to follow symbolic links to a different filesystem hierarchy, so remember to mount the actual filesystem. Large file lookups can be slow, remote to remote copies can be slower (ala NFSv2).

Code: Select all

#!/bin/bash
# defaults for sonic shell account
SONIC=<your_user_name>
LOCAL_MNT=/$SONIC
TARGET=${SONIC}@shell.sonic.net:

case "$1" in
	-m)	shift; LOCAL_MNT="$1"; shift ;;
	-h)	echo "use: remote_mnt [-m local_mountpoint] [target]"; exit ;;
	*)
esac
[ "$1" != "" ] && TARGET="$1"

if grep "$LOCAL_MNT" /proc/mounts > /dev/null; then
	fusermount -u $LOCAL_MNT &&\
	echo "$LOCAL_MNT unmounted"
else
	# Compression:add '-C'
	# NOTE: uid/gid are on local machine
	#-o allow_root -o idmap=none -o uid=500 -o gid=100 \

	lsmod | grep fuse > /dev/null || sudo modprobe fuse
	sshfs \
	-o idmap=user -o uid=500 -o gid=100 \
	"${TARGET}" $LOCAL_MNT &&\
	mount -t fuse.sshfs
fi
by dane » Fri Oct 07, 2011 4:28 pm
You can also limit the scope of where the cleartext password would be available by using our VPN server. It's also free, and lives in the same datacenter as the FTP hosts.

-Dane
Dane Jasper
Sonic
by bhaveshmital » Sun Apr 15, 2012 12:46 pm
i called the customer support to enable shell access.he didnt know too much details about sftp etc but he enabled access for me .in any case the host to access sftp is
shell.sonic.net
8 posts Page 1 of 1

Who is online

In total there are 16 users online :: 0 registered, 0 hidden and 16 guests (based on users active over the past 5 minutes)
Most users ever online was 999 on Mon May 10, 2021 1:02 am

Users browsing this forum: No registered users and 16 guests