<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.iis.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:cs="http://blogs.iis.net/"><channel><title>Search results matching tag 'FTP 7'</title><link>http://forums.iis.net/search/SearchResults.aspx?o=DateDescending&amp;tag=FTP+7&amp;orTags=0</link><description>Search results matching tag 'FTP 7'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>User cannot login - FTP Windows Server 2008 R2</title><link>http://forums.iis.net/p/1161240/1918437.aspx#1918437</link><pubDate>Sat, 26 Sep 2009 15:38:34 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1918437</guid><dc:creator>vecchia</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;i have a little problem... i&amp;#39; using Windows Server 2008 R2 RC and i need to publish via FTP a site. I created the ftp site and enabled it, after that i followed these guides:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/321/configure-ftp-with-iis-70-manager-authentication/"&gt;Configure FTP with IIS 7.0 Manager Authentication&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://learn.iis.net/page.aspx/309/configuring-ftp-firewall-settings/"&gt;Configuring FTP Firewall Settings&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;but i can&amp;#39;t connect to the site using the ip: the error is simple: user cannot login. Why?&lt;br /&gt;</description></item><item><title>Re: Issues with FTP Passive Mode Ports and Firewall</title><link>http://forums.iis.net/p/1161167/1918309.aspx#1918309</link><pubDate>Fri, 25 Sep 2009 14:53:09 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1918309</guid><dc:creator>vivekkum</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;try &lt;a href="http://blogs.msdn.com/vivekkum/archive/2008/09/10/out-of-band-ftp-7-shows-operation-timed-out.aspx" title="Out Of Band FTP 7 shows &amp;quot;Operation timed out&amp;quot;"&gt;http://blogs.msdn.com/vivekkum/archive/2008/09/10/out-of-band-ftp-7-shows-operation-timed-out.aspx&lt;/a&gt;. Let me know if that helps.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>FTP 7.5</title><link>http://forums.iis.net/p/1161073/1917693.aspx#1917693</link><pubDate>Mon, 21 Sep 2009 15:16:16 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1917693</guid><dc:creator>bazbaz</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;I&amp;#39;ve a trouble with FTP 7.5 (windows 2008 x64).&lt;/p&gt;&lt;p&gt;I&amp;#39;ve created an FTP binded to a runnning web site, and defined user permissions to access the FTP site using a custom account. It seems all ok, but I noticed the the FTP is impersonating the user that is defined as &amp;quot;anonymous web user&amp;quot; (the user that IIS uses for web anonymous requests), and not the FTP User that is connected to the FTP server (and I see in &amp;quot;current sessions&amp;quot; that I&amp;#39;m connected using it). So, if the web anonymous uses has not a write permission, for example, also the FTP cannot write to the folder.&lt;/p&gt;&lt;p&gt;Why?&lt;/p&gt;&lt;p&gt;More stranger: on the same server I&amp;#39;ve an other web+ftp site, and it seems working as I expected ... &lt;br /&gt;&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Re: IIS 7 FTP 7.5 support for XCRC?</title><link>http://forums.iis.net/p/1159669/1912136.aspx#1912136</link><pubDate>Fri, 31 Jul 2009 01:13:12 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1912136</guid><dc:creator>robmcm</dc:creator><cs:applicationKey>iis7_-_general--1</cs:applicationKey><description>&lt;p&gt;The short answer is - no, XCRC is not a standard FTP command and is therefore not implemented, and our extensibility model for FTP does not provide for implementing custom commands. There was a long laundry list of reasons why we cut custom commands from FTP extensibility, and I&amp;#39;ll spare you the details except to say that a lot of the justifications had to do with the security ramifications that go along with implementing an infrastructure for executing custom commands. That being said, computing checksums and expanding files from archives like Zip, Tar, or GZ were two of our main scenarios when we were originally considering the implementation.&lt;/p&gt;
&lt;p&gt;Looking at what is possible within the given framework, I came up with a way to automate a practice that I used back in my UNIX/VAX days that is still in use on many sites today, which is to store a checksum in a separate file where the uploaded file resides. If you were automating your upload with a script, you could check for the 226 return status after your upload, do a directory for the checksum file, retrieve the checksum file if it exists, and compare it with your local checksum. It’s not optimal, but still very effective.&lt;/p&gt;
&lt;p&gt;With that in mind, I wrote a provider for FTP that automatically generates checksum files whenever a file is uploaded, but there are some restrictions. You can read about it on my blog post that is titled &amp;quot;&lt;a href="http://blogs.msdn.com/robert_mcmurray/archive/2009/07/30/automatically-creating-checksum-files-for-ftp-uploads.aspx" target="_blank"&gt;Automatically Creating Checksum Files for FTP Uploads&lt;/a&gt;.&amp;quot;&lt;/p&gt;</description></item><item><title>Cannot get directory listing using SSL and FTP 7</title><link>http://forums.iis.net/p/1159130/1909813.aspx#1909813</link><pubDate>Thu, 09 Jul 2009 20:54:57 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1909813</guid><dc:creator>paul-v</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;When I configure my ftp site to use SSL, the user is able to connect using an SSL ftp client such as CoreFTP Lite, however, it cannot get a directory listing.&amp;nbsp; I have followed the steps in this link for configuring the firewall &lt;a href="http://blogs.iis.net/jaroslad/archive/2007/09/29/windows-firewall-setup-for-microsoft-ftp-publishing-service-for-iis-7-0.aspx"&gt;http://blogs.iis.net/jaroslad/archive/2007/09/29/windows-firewall-setup-for-microsoft-ftp-publishing-service-for-iis-7-0.aspx&lt;/a&gt;&amp;nbsp;and also this link &lt;a title="blocked::http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/Windows_Server_2008/Q_24081749.html" href="http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/Windows_Server_2008/Q_24081749.html"&gt;&lt;font face="Tahoma"&gt;http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/Windows_Server_2008/Q_24081749.html&lt;/font&gt;&lt;/a&gt;, but still I cannot get the listing.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I actually do not need the firewall on the server, so I have turned it off, and still cannot get the file listing.&lt;/p&gt;
&lt;p&gt;Any thoughts other than those presented in the articles I linked above?&amp;nbsp; Win2008 server, 64bit, IIS 7.&lt;/p&gt;</description></item><item><title>Re: FTP7 What am i doing wrong???</title><link>http://forums.iis.net/p/1159023/1909377.aspx#1909377</link><pubDate>Tue, 07 Jul 2009 02:50:30 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1909377</guid><dc:creator>jhamel</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;Thanks for your reply,&lt;/p&gt;
&lt;p&gt;Yes, i was referring to Virtual Hosts and i did the exact procedure as described in the tutorial.&lt;/p&gt;
&lt;p&gt;Still have the 530 error.&lt;/p&gt;
&lt;p&gt;Do i have to set the permissions manually on the physical folder (site path) or IIS is supposed to do it?&lt;/p&gt;
&lt;p&gt;Either ways, it still doesnt work :(&lt;/p&gt;
&lt;p&gt;Same for Website + FTP publishing.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;</description></item><item><title>FTP7 What am i doing wrong???</title><link>http://forums.iis.net/p/1159023/1909370.aspx#1909370</link><pubDate>Tue, 07 Jul 2009 01:55:42 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1909370</guid><dc:creator>jhamel</dc:creator><cs:applicationKey>iis7_-_publishing-41</cs:applicationKey><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;FTP publishing in IIS7 is driving me crazy, please help :&lt;/p&gt;
&lt;p&gt;&amp;nbsp;1. FTP 7.5 installed&lt;/p&gt;
&lt;p&gt;2. Creating FTP sites &amp;quot;Add FTP&amp;nbsp;Sites&amp;quot;&lt;/p&gt;
&lt;p&gt;3. Using public IP address and host headers (also created in the DNS zone)&lt;/p&gt;
&lt;p&gt;4. Creating a user for the site then setting permissions to &amp;quot;specific user&amp;quot; Read-Write&lt;/p&gt;
&lt;p&gt;5. Trying to login :&lt;/p&gt;&lt;font color="#008000" size="1"&gt;&lt;font color="#008000" size="1"&gt;
&lt;p&gt;530 User cannot log in, home directory inaccessible&lt;/p&gt;&lt;/font&gt;&lt;/font&gt;</description></item><item><title>FTP file size </title><link>http://forums.iis.net/p/1158974/1909215.aspx#1909215</link><pubDate>Sun, 05 Jul 2009 11:00:04 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1909215</guid><dc:creator>Dean Massey</dc:creator><cs:applicationKey>iis7_-_setup__migration-41</cs:applicationKey><description>&lt;p&gt;I have installed IIS 7 on Windows 2008 standard along with ftp 7 server.&amp;nbsp; It works great and have no problems with transferring files.&amp;nbsp; Howerver I would like to incress the size of file to over 2 Gb.&amp;nbsp; I have and client that sends his back up files using Acrons.&amp;nbsp; If the file file is over 2 Gb it will disconnect and not receive any file at all.&amp;nbsp;&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Thank you&lt;/p&gt;
&lt;p&gt;Dean Massey&lt;/p&gt;</description></item><item><title>IIS FTP 7.5 authentification in MS-DOS - where is the &amp;quot;user&amp;quot; command ???</title><link>http://forums.iis.net/p/1157985/1905121.aspx#1905121</link><pubDate>Fri, 29 May 2009 09:48:26 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1905121</guid><dc:creator>poluxxone</dc:creator><cs:applicationKey>iis7_-_general--1</cs:applicationKey><description>&lt;p&gt;&amp;nbsp;Hi everyone,&lt;/p&gt;&lt;p&gt;&amp;nbsp;I upgraded my IIS 7 FTP services from IIS 6 to FTP 7.5 and I have some batches that don&amp;#39;t work now...&lt;/p&gt;&lt;p&gt;Each batch has the following code :&lt;/p&gt;&lt;p style="margin-left:40px;"&gt;open 192.168.1.2&lt;br /&gt;user ftp_user&lt;br /&gt;the_password&lt;br /&gt;hash&lt;br /&gt;bin&lt;br /&gt;put &amp;quot;E:\files\export.csv&amp;quot;&lt;br /&gt;bye &lt;/p&gt;&lt;p&gt;They worked fine with the task scheduler until I upgrade to IIS FTP v 7.5.&lt;/p&gt;&lt;p&gt;The problem seem to be that I was using the &amp;quot;user&amp;quot; command to auth and that I now can&amp;#39;t use this command.&lt;/p&gt;&lt;p&gt;&amp;nbsp;Let&amp;#39;s look at the MS-DOS prompt :&lt;/p&gt;&lt;p&gt;IIS 6 :&lt;/p&gt;&lt;p&gt;ftp&amp;gt;open 192.168.1.2&lt;br /&gt;ftp &amp;gt; user ftp_user&lt;/p&gt;&lt;p&gt;--&amp;gt; works fine &lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;IIS 7 :&lt;/p&gt;&lt;p&gt;ftp&amp;gt;open 192.168.1.2&lt;br /&gt;ftp&amp;gt; 220 Microsoft FTP Service&lt;br /&gt;ftp&amp;gt; Enter the user : &amp;lt;we type here&amp;gt;&lt;/p&gt;&lt;p&gt;--&amp;gt; the &amp;quot;user&amp;quot; command isn&amp;#39;t recognized since it asks the login directly !&lt;/p&gt;&lt;p&gt;So, how can I achieve to log on my FTP server via MS-DOS now ?&lt;/p&gt;&lt;p&gt;Is there any official documentation for IIS FTP 7.5 or a supported command list ?&lt;/p&gt;&lt;p&gt;Many thanks all :)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Slow ftp server</title><link>http://forums.iis.net/p/1157928/1904923.aspx#1904923</link><pubDate>Wed, 27 May 2009 14:23:34 GMT</pubDate><guid isPermaLink="false">50bcf3b4-f6fe-4638-adff-0c150e922e99:1904923</guid><dc:creator>LucaC</dc:creator><cs:applicationKey>iis7_-_tuning_iis-41</cs:applicationKey><description>&lt;p&gt;I have a&amp;nbsp;W2008 Server 64 bit,SP1, with IIS7,&amp;nbsp;that is both a web and an ftp server. The web server and the line speed&amp;nbsp;are ok, good performance. &lt;br /&gt;With FTP 7.5 (but was&amp;nbsp;the same&amp;nbsp;with FTP 7.0) there is no problem downloading one large file, but&amp;nbsp;downloading multiple files there is always&amp;nbsp;a long delay (approx 2-3 secs. ) from one file to the next, even with very small files (1Kb).&amp;nbsp;So downloading small files is unaccettably slow.&amp;nbsp;I have tried with or without user isolation, same delay. Any idea why this happens? What can I do?&lt;/p&gt;
&lt;p&gt;LucaC&lt;/p&gt;</description></item></channel></rss>