amuck-landowner

How do you upload your files to your webserver?

KuJoe

Well-Known Member
Verified Provider
Normally I use SFTP/SCP but since moving to Comcast I've switched to FTP but I upgraded my laptop to Windows 8.1 and now my favorite FTP client (CoreFTP) doesn't work for more than a few files before failing so I've switched over to WebDAV since it's fast and reliable (unfortunately our production webservers don't have WebDAV on them). So what do you use for uploading your files? What protocol? What client? Post 'em up. :)
 

mikho

Not to be taken seriously, ever!
On most servers sftp, using clients as filezilla or flashfxp.


I have two servers that I use as "dump and share" servers which has ftpd installed.


And then there is always wget.
 

HalfEatenPie

The Irrational One
Retired Staff
I'm one lazy buttface.

Also most of my servers are a long ways away from me so...

I just move files I need into my dropbox public folder, copy the public link, and wget it from the server-side :ph34r: !  I'm one tough cookie 
 
Last edited by a moderator:

NodeBytes

Dedi Addict
SFTP using Cyberduck for editing and daily work.

If pushing a full site I use the built in sftp client in Dreamweaver.
 

Nett

Article Submitter
Verified Provider
I use FileZilla for SFTP/FTP on Mac, command line over terminal also works, but finding the right directory is pretty hard...Don't know about Windows.
 

nunim

VPS Junkie
Typically SFTP via SmartFTP, if it's a large file I'll upload to the server closest to me then wget or rsync it to the server I need it on.
 

BuzzzHost

New Member
I usually use SFTP or Rsync most of the time. It really depends on what I'm transferring and how large the data stream may be.
 

WebSearchingPro

VPS Peddler
Verified Provider
I have been enjoying git web hooks and a pull .php file to update directories dynamically. It can go so far as if you push to a development branch it will update the development server and production would be the production server. 
 

Wintereise

New Member
Auto build/deploy solutions that pull the source from git, build (Or deploy, in case of interpreted languages) -- namely Atlassian bamboo.

When you start developing things seriously, nothing much else really cuts it.
 

Adduc

New Member
hg update through a port forwarded SSH session, although I've been working on a solution similar to Wintereise's.
 
Last edited by a moderator:

bizzard

Active Member
Most of the things I need to upload/change on a server are the code. Since all the code we write are stored in a central repository too, I usually clone/pull them. I am aware of the extra overhead and files, but its so simple.

When I don't have a SSH access, I use SFTP too, mostly with FileZilla, when I am on my PC/Laptop and rarely the web based Net2FTP, when there is no FTP/SFTP client installed.
 

tchen

New Member
Normally deploy using svn, but if I'm editing a dev box, I have expandrive over ssh. Sublime text seems to like it fine as if it was local.
 

fixidixi

Active Member
i always upload bigger files with flashfxp as its able to resume sessions without a problem. its pretty cheap and got a lifetime license :) ftp over ssh.

deploy: git/svn over ssh

to be honest i used all sorts of clients but since ive found flashfxp im even using it on debian with wine. (the developer is  also testing it for wine..) which is messy i know but im just lazy and this way i can export all my settings to a single file and import them to a new machine...
 
Top
amuck-landowner