|
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.
|
|
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.
|
|
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.
|
Ask your Facebook Friends
|
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.
|
|
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.
|
|
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....
|
|
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....
|
|
How secure is it to connect to an ftp server in an iPhone application? I want to connect to my ftp server in my app but am worried that the username and password can be revealed.
Started by Abdulla Bedir on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
FTP, like telnet....
VPN would work, if you have that.
Being tunnelled through is cleartext, and the nature of FTP makes it difficult to secure by bolting on SSH.
Any time you use FTP, assuming there's no other connection security (e.g.
|
|
I'm using C# and i have written a locally installed application that dynamically generates files which need to be on an FTP server.
Do i generate them to disk then upload them to the FTP server? or is there a way to open a stream to an FTP server and ...
Started by Gary Willoughby on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You-sql-2005-and-place-results-into-a-csv-file-on-a-ftp-lo#20689.
The for loop in the method is just to demonstrate writing to the FTP stream.
To an FTP server.
|