Windows FTP client with SOCKS support - deployment

Does anybody know of a Windows FTP client with SOCKS support?
I need it to build a deployment script... I tried Filezilla but its command-line support seems quite poor, I need something completely non-interactive.

Nevermind, I just found out that cURL supports FTP upload.

Related

Hosting NuGet repository via Apache / http server

Is there any way that I can setup and host a NuGet repository on an Apache or related http server? I have code that I would like made available, and it turns out that I have an apache server as well. I know that there are public places that I could publish to, but I was curious about my own. Any ideas? Is it possible?
If you need it i made a little nuget server with php. It works on apache with mod_rewrite and IIS: http://www.kendar.org/?p=/dotnet/phpnuget :)
I needed this recently too and have started implementing it at https://github.com/grenade/apache-nuget-repo
There are some limitations, like you can't push to it (yet?). To have that, it'd need some server side upload handler and that would mean picking a technology like PHP, Node, Python, etc which compromises the current simplicity. I also haven't made any effort yet around NuGet api v3 support.
Right now it relies on some other copy process uploading the .nupkg files and triggering the manifest and html generators.
There's nothing stopping you come creating a NuGet server that runs on Apache, but I don't think there's anything currently available that'll do this.
The command-line nuget.exe runs on Mono, but I suspect getting the ASP.NET NuGet server running is a whole new ballgame :-(

Any webdav or ftp server source code for iOS?

I need to implement a webdav or ftp server in iOS. Can someone suggest a webdav or ftp server open source project?
How about TouchHTTPD?
TouchHTTPD / Projects / iPhone WebDAV Server
TouchWebDAV Caveats
BASIC Auth Only (Digest auth coming soon)
No SSL
Not optimised for caching headers (If-*)
Cannot use Finder WebDAV and TouchWebDAV server on same machine!
WebDAV locking is totally fake.
Set attribute operations unsupported (so chmod, touch will not work)
Try https://github.com/swisspol/GCDWebServer#webdav-server-in-ios-apps it seems to be good and active.

Downloading/Uploading a file from a sftp server on the iphone

I need to connect to a sftp/scp server download a file, edit it and then reupload it.
As far as i know the SKD itself doesn't give you the ability for secure connections via ftp.
Any Ideas?
There we go: http://www.chilkatsoft.com/ssh-sftp-objc.asp
Does everything and a bit more. It's commercial but it doesn't really matter in our case as developing our own libssl2 wrapper would take weeks and weeks.
https://github.com/karelia/libssh2_sftp-Cocoa-wrapper
I have not tried it (yet...), but it's from the same person who made ConnectionKit. It's SFTP (I'm not sure if they mean secure ftp or ssh file transfer protocol)

Any FTP server library package for iPhone/iPad?

Any FTP server library package for iPhone/iPad ?
Is DiddyFtpServer good ?
http://code.google.com/p/diddyftpserver/
Thanks.
Yes, diddy is probably what you are looking for. Other than that, you will have to write your own ftp server.

Portable USB Webserver

I have project that I'm working on that is going to require a webserver. The webserver will be used to remotely control a presentation using a mobile device.
I see there are quite a few options out there and I'm wondering if someone could provide some recommendations.
My criteria include:
Portable, fits on a USB key
Easy to
run. A user can just click on an
icon, or ideally it would include an
autorun command.
Open Source. I would prefer something licensed under the GPL or similar.
Runs a dynamic server-side language. I see that most have PHP which works perfectly, but I'm open to other languages.
Cross platform if possible.
Right now I'm leaning towards XAMPP, but I would love to hear some suggestions.
XAMPP is perfect for this.
I recommend XAMPP, so I think you are on the right track.
Have not used this, but it looks like it would be right up your alley:
http://www.blackdot.be/?inc=apache/httpserveronusb
Supports perl + php by default.
From the page:
If you are a web developer I'm sure you have had that moment where you went:
"If only I had a web server handy right now!"
Then HTTP Server On USB is something for you! HTTP Server On USB is a fully configured web server that runs from your USB-Key. Plug it in and off you go!
It can be use to show of a website to a costumer, share files with your friends (both ways thanks to DAV) or simply impress people but acting all geeky!
Are you special and do you depend on exotic 3rd party module?
Just drop them in the module folder and edit the configuration file!
Features:
Management Application
Apache 2.2.11
mod_deflate
mod_ssl
mod_security
mod_perl
PHP 5.2.8
ActiveState Perl 5.10
Requirements:
Windows 2000, Windows XP or Windows 2003
256mb USB-key
I have had no luck with XAMPP Lite or USBWebserver. What is currently working really well is Server2Go. I could never get XAMPP to run and USBWebserver would not allow me to install Drupal or Wordpress.
With Server2Go, I was able to install Drupal 7 on the USB Flash Drive, however, only with SQLite. I did need to go to the php folder and copy and rename the production-php.ini file to php.ini. There is a php.ini setting that needs to be set for the MySQL DB to be recognized. It is running well with SQLite for Development purposes though.
LAMPPIX - looks like not up to date, but should do the job.
I would suggest Apache, pretty lightweight and has everything you'll need (PHP).