<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/tags/FTP</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sun, 19 May 2013 20:34:39 GMT</pubDate>
<item>
<title>(Other) JDK7 Netbeans7 Windows 7 - cpres</title>
<link>http://snipplr.com/view/62805/jdk7-netbeans7-windows-7/</link>
<description><![CDATA[ <p>run this as administrator from cmd.exe</p> ]]></description>
<pubDate>Fri, 27 Jan 2012 13:08:52 GMT</pubDate>
<guid>http://snipplr.com/view/62805/jdk7-netbeans7-windows-7/</guid>
</item>
<item>
<title>(HTML) CS-Cart - FTP Permissions - kreatific</title>
<link>http://snipplr.com/view/55627/cscart--ftp-permissions/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 23 Jun 2011 14:21:48 GMT</pubDate>
<guid>http://snipplr.com/view/55627/cscart--ftp-permissions/</guid>
</item>
<item>
<title>(Bash) Access FileZilla FTP names and passwords - cessnajumpin</title>
<link>http://snipplr.com/view/50329/access-filezilla-ftp-names-and-passwords/</link>
<description><![CDATA[ <p>A coworker asked if I remembered a password for one of our FTP servers. I didn't, but FileZilla creates a hidden folder when you install it that contains the information for the dropdown "quickconnect". Thanks to that you can easily see all of your saved info. In terminal just type the following.</p> ]]></description>
<pubDate>Wed, 09 Mar 2011 03:23:06 GMT</pubDate>
<guid>http://snipplr.com/view/50329/access-filezilla-ftp-names-and-passwords/</guid>
</item>
<item>
<title>(Bash) Create User with directory - hamsterbacke82</title>
<link>http://snipplr.com/view/50204/create-user-with-directory/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 07 Mar 2011 16:42:58 GMT</pubDate>
<guid>http://snipplr.com/view/50204/create-user-with-directory/</guid>
</item>
<item>
<title>(PHP) WordPress FTP-Daten in wp_config.php verankern - gabbo</title>
<link>http://snipplr.com/view/46989/wordpress-ftpdaten-in-wpconfigphp-verankern/</link>
<description><![CDATA[ <p>Zugangsdaten

In der wp-config.php lassen sich bestimmte Konstanten definieren, sodass die Abfrage der Zugangsdaten und somit auch die Speicherung nicht mehr nötig ist. Sie lauten wie folgt:
define('FTP_HOST', 'ftp.example.org');
define('FTP_USER', 'username');
define('FTP_PASS', 'password');

Sichere Verbindung
Für eine sichere Verbindung sorgt folgende Zeile (Standard: false):
define('FTP_SSL', true);

Verzeichnisse
Wenn die WordPress-Installation nicht im Stammverzeichnis des FTP-Servers liegt, lässt sich der Ort wie folgt definieren:
define('FTP_BASE', '...');

Habt ihr das Plugin-Verzeichnis oder den gesamten Content-Ordner verschoben, könnt ihr die 
kompletten Pfade mit diesen beiden Konstanten angeben:
define('FTP_CONTENT_DIR', '...');
define('FTP_PLUGIN_DIR', '...');</p> ]]></description>
<pubDate>Wed, 12 Jan 2011 23:09:10 GMT</pubDate>
<guid>http://snipplr.com/view/46989/wordpress-ftpdaten-in-wpconfigphp-verankern/</guid>
</item>
<item>
<title>(Windows Registry) Enable Passive FTP Server 2008 - kidmizere</title>
<link>http://snipplr.com/view/45446/enable-passive-ftp-server-2008/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 08 Dec 2010 12:44:30 GMT</pubDate>
<guid>http://snipplr.com/view/45446/enable-passive-ftp-server-2008/</guid>
</item>
<item>
<title>(C#) C# FTP Upload &amp;amp; Download - kyrathaba</title>
<link>http://snipplr.com/view/45306/c-ftp-upload--download/</link>
<description><![CDATA[ <p>Not extensively tested, but seems to work in my sample project.

uses the class I posted here:
http://www.snipplr.com/view/46669/minimist-c-errorlogging-class/</p> ]]></description>
<pubDate>Sun, 05 Dec 2010 13:52:41 GMT</pubDate>
<guid>http://snipplr.com/view/45306/c-ftp-upload--download/</guid>
</item>
<item>
<title>(SAS) SAS Macro to FTP files between PC and Unix or among Unix server Locations... - sastechies</title>
<link>http://snipplr.com/view/42667/sas-macro-to-ftp-files-between-pc-and-unix-or-among-unix-server-locations/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 21 Oct 2010 12:34:08 GMT</pubDate>
<guid>http://snipplr.com/view/42667/sas-macro-to-ftp-files-between-pc-and-unix-or-among-unix-server-locations/</guid>
</item>
<item>
<title>(Apache) All FTP users on server - fillyouin</title>
<link>http://snipplr.com/view/42128/all-ftp-users-on-server/</link>
<description><![CDATA[ <p>List all FTP users on server</p> ]]></description>
<pubDate>Tue, 12 Oct 2010 21:37:05 GMT</pubDate>
<guid>http://snipplr.com/view/42128/all-ftp-users-on-server/</guid>
</item>
<item>
<title>(PHP) Send a file via FTP. - jprochazka</title>
<link>http://snipplr.com/view/41297/send-a-file-via-ftp/</link>
<description><![CDATA[ <p>A simple example of how to send a file via FTP using PHP.</p> ]]></description>
<pubDate>Sat, 02 Oct 2010 01:32:43 GMT</pubDate>
<guid>http://snipplr.com/view/41297/send-a-file-via-ftp/</guid>
</item>
<item>
<title>(PHP) Download a file from an FTP server and save it in a local file. - BrunoDeBarros</title>
<link>http://snipplr.com/view/38938/download-a-file-from-an-ftp-server-and-save-it-in-a-local-file/</link>
<description><![CDATA[ <p>I wrote this code for when I need to get files from other servers and put them on my own server. I wanted to simplify it as much as possible.</p> ]]></description>
<pubDate>Wed, 11 Aug 2010 23:13:01 GMT</pubDate>
<guid>http://snipplr.com/view/38938/download-a-file-from-an-ftp-server-and-save-it-in-a-local-file/</guid>
</item>
<item>
<title>(Bash) FTP scripting example, without expect or named pipes - seanboycegmailcom</title>
<link>http://snipplr.com/view/37707/ftp-scripting-example-without-expect-or-named-pipes/</link>
<description><![CDATA[ <p>My particular ftp daemon automatically assumes PASV and TYPE IMAGE - which are not in this particular example.  Also, for large transfers, send the HASH command before doing PUT so you can see a progress indicator if you want.</p> ]]></description>
<pubDate>Wed, 21 Jul 2010 11:47:10 GMT</pubDate>
<guid>http://snipplr.com/view/37707/ftp-scripting-example-without-expect-or-named-pipes/</guid>
</item>
<item>
<title>(PHP) PHP FTP アップロード - daisuke103</title>
<link>http://snipplr.com/view/20011/php-ftp-/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 22 Sep 2009 03:05:51 GMT</pubDate>
<guid>http://snipplr.com/view/20011/php-ftp-/</guid>
</item>
<item>
<title>(PHP) Crear un sistema de FTP con PHP - okidoka</title>
<link>http://snipplr.com/view/18916/crear-un-sistema-de-ftp-con-php/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 27 Aug 2009 16:23:34 GMT</pubDate>
<guid>http://snipplr.com/view/18916/crear-un-sistema-de-ftp-con-php/</guid>
</item>
<item>
<title>(PHP) PHP FTP SIMPLE SYSTEM - renatoelias</title>
<link>http://snipplr.com/view/18338/php-ftp-simple-system/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 15 Aug 2009 03:47:54 GMT</pubDate>
<guid>http://snipplr.com/view/18338/php-ftp-simple-system/</guid>
</item>
<item>
<title>(PHP) FTP Image Transport to Rackspace Cloudfiles (fka Mosso) - wuori</title>
<link>http://snipplr.com/view/16558/ftp-image-transport-to-rackspace-cloudfiles-fka-mosso/</link>
<description><![CDATA[ <p>This is a little script I wrote for transferring a lot of images (around 700,000) from a server (via FTP), generating a thumbnail and sending both images to the Rackspace Cloud (via ReST API).  

Since working with remote images as GD resources was something new to me, as well as using output-buffering to create files for RS from POST data, I wanted to share this to see if anyone had better, more efficient ideas for this type of transport.

Note: I used file transport instead of writing to an actual cloudfile object to avoid doing a checksum to see if all data was transported correctly, also because similar image functions (such as uploading via Facebook API) require an actual file as well.</p> ]]></description>
<pubDate>Wed, 01 Jul 2009 11:01:16 GMT</pubDate>
<guid>http://snipplr.com/view/16558/ftp-image-transport-to-rackspace-cloudfiles-fka-mosso/</guid>
</item>
<item>
<title>(PHP) Recursive Delete with FTP - fackz</title>
<link>http://snipplr.com/view/12988/recursive-delete-with-ftp/</link>
<description><![CDATA[ <p>A recursive function is a function that has the ability to call itself (recursion). I ran into this problem while trying to delete a directory containing files and/or other directories. I was using FTP at the time so, the function will be written as such. It can be easily ported to using filesystem functions by following the same logic/flow.</p> ]]></description>
<pubDate>Wed, 11 Mar 2009 15:21:32 GMT</pubDate>
<guid>http://snipplr.com/view/12988/recursive-delete-with-ftp/</guid>
</item>
<item>
<title>(DOS Batch) ftp from the command line - similar to wget - jimfred</title>
<link>http://snipplr.com/view/10342/ftp-from-the-command-line--similar-to-wget/</link>
<description><![CDATA[ <p>ftp from the command line - Here's an example, similar to a wget ftp://192.168.2.132/File.txt, all on one line but broken into several lines here for readability:

Commands are delimited using DOS/Window's &amp;. Optionally, the first command could be a del File.txt.

The echo commands create a temporary file, ftpcmd.txt, with three commands:

   1. lcd (a local cd to change the local directory),
   2. a get command to perform the file transfer
   3. a quit to exit from the ftp prompt

ftp's command line parameters:

   1. -A login anonymously
   2. -s specifies a command file
   3. optional -n and -v suppress printed messages
   4. ...and the ftp server's ip address.</p> ]]></description>
<pubDate>Mon, 08 Dec 2008 23:27:10 GMT</pubDate>
<guid>http://snipplr.com/view/10342/ftp-from-the-command-line--similar-to-wget/</guid>
</item>
<item>
<title>(PHP) Send Files via FTP Using PHP - Leech</title>
<link>http://snipplr.com/view/8966/send-files-via-ftp-using-php/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 12 Oct 2008 17:33:29 GMT</pubDate>
<guid>http://snipplr.com/view/8966/send-files-via-ftp-using-php/</guid>
</item>
<item>
<title>(Visual Basic) ACCESS FTP Upload - goo</title>
<link>http://snipplr.com/view/8052/access-ftp-upload/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Wed, 27 Aug 2008 04:03:54 GMT</pubDate>
<guid>http://snipplr.com/view/8052/access-ftp-upload/</guid>
</item>
</channel>
</rss>