|
I don't want an other application to read the files while this php app upload/overwrites files to the remote server
Started by undef1 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
As Patrick Marie correctly says, files are not locked during an FTP.
Maybe some server can implement-finished upload file.
Hi,
There is no such thing as locking/unlocking files with ftp.
|
|
Hello all, F Is there a way to monitor the FTP port so that I can know what commands my FTP application is sending to a FTP server?
I am using a closed-source FTP client application, which is not working with a closed-source FTP application server. The...
Started by Alvin on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Do you have access to ftp it...I have used wireshark....
Could install an ftp proxy server using the logging on that to see what's going on?
There's a proxy server for Linux here: http://frox.sourceforge.net/doc/FAQ.html
Paul.
|
|
My VOIP specialist complained about not being able to run backups of the Unity Express onto our FTP server (Microsoft FTP on Server 2008). I did a packet trace and observed some weird behavior that I think is even kind of funny in a way.
The Unity FTP...
Answer Snippets (Read the full thread at serverfault):
I would like to see FTP filezilla server....
Are you using the new OOB FTP 7.5 or the one you see in Web Server Roles in Windows Server 2008?
Also, make sure you have Unix directory listings enabled for your FTP site.
|
Ask your Facebook Friends
|
I am calling the following from a .cmd file:
ftp -d -s:D:\backup\web-daily.txt
The web-daily.txt file is an ftp input file with similar contents to this:
open <server> <login> <password> put d:\backup\web-daily.7z web-daily.7z quit
I...
Started by hamlin11 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
@echo off setlocal%_%date:~7,2%.7z web-daily_%date....
I agree, this will do it, in NorthHere's how to effectively pass a date parameter to an FTP input file on windows.
:%0.ftp
This will send web-daily_yyyy_mm_dd.7z to the ftp server.
|
|
Can anyone direct me to a link that explains how to setup an ftp server on OSx server edition? I searched for awhile and didn't find anything very useful.
Started by Michael Minerva on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You configure FTP serving of share points along with other protocols from the File Sharing Tab UI in Server Admin (click on a share point, then "Protocol Options.
OS X Server has FTP built-in.
|
|
Can anyone direct me to a link that explains how to setup an FTP server on OS X Server? I searched for awhile and didn't find anything very useful.
Answer Snippets (Read the full thread at serverfault):
See the Mac OS X Server Administrator's Guide for more information on configuring FTP Service on Mac OS X Server 10
http://manuals.info.apple.com to share as an ....
If the FTP icon indicates that the server is running.
|
|
I have a web-application that allow users to upload images to my web site.
What I want to do is instead of hosting those images myself, I want to push those images off to my CDN (Cachefly).
Using PHP, I want to FTP an image from my server to another whenever...
Started by VictorH on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Why don't you Google for ftp_mkdir? (It was the first thing I tried and yes, its manual page // and named that variable $destination_dir @ftp_mkdir($conn_id, $destination_dir);
I usually try to do an ftp_chdir , and if that fails....
|
|
Hi i have to transfer files whose names consists of two variables X, Y and they are in the directory ABC in ftp server to my local unix directory XYZ. after transfering files i have to go to local directory path and i should untar (input files are compressed...
Started by musicking123 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Wget --ftp....
Alternative: use wget to download the ftp-file to local machine, then scp to target machine, I suppose simple like this.
I would suggest you just look into the manual of ftp command line ftp-tool and script with that.
|
|
What ports do I need to open for me to be able to access Windows FTP server (running on Server 2008) for both active and passive FTP? Opening 21 on it's own is not enough.
Started by Mr. Flibble on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
server 21 data : client >1023 <- server 20 Passive FTP : command : client >1023 -> server 21 data : client >1023 -> server >1023
So:
Active FTP - the firewall must allow to do is to configure....
|
|
I would like to set up an FTP service on a non-standard port (i.e. not 21) using the FTP service in IIS 6 on a Windows 2008 Server.
I have set it up and tested it locally - it all works.
However I am having issues when accessing it remotely. I can Telnet...
Started by Techboy on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Of data transfer ports in IIS and configure your firewall to allow those ports for your FTP server IP the FTP server to only allow passive mode, configure the FTP server to only allow DATA connections on some....
|