Hi,
I am a beginner. I tried to use some synchronous FTP downloading (in order to create a file on the iphone from a file on the ftp server) in an application but I am not able to do it.
I read the doc (and CFTPSample) and I managed to use asynchronous download but not synchronous. Can anyone help me?
Cheers
...
I would like to have an uploader something along the lines of this but I want to have a progress bar and e-mail me a notification once it's done like yousendit does it.
Any opensource stuff would be cool.
...
Hi Guys,
I have an FTP monitoring/downloading application using C# sockets. I got this error message:
421 Disconnecting you since you were inactive for 300 seconds.
Can someone have an explanation for this? I did a search on this one but still I can't seem to find a good explanation. Thanks.
...
Hi,
I am using FTP (plain version) to download files from a server. The name of the file is always the same. All I can do to check to know if it is today's file is look at the timestamp manually.
How can I write FTP script to check if the time stamp is having today's date?
If you have come across this situation and have solved it, plea...
I'm building a number of artefacts (zip files for different environments: test, dev) using the maven-assembly-plugin using a specialized Maven profile. These artefacts I want to copy/collect on on a FTP server keeping the version (01.07.10.16.Wed-1626) as a folder, so I need to copy from test/build/01.07.10.16.Wed-1626/ to ftp://my-ftp-s...
I'm trying to come up with a proposal for a client for an interface with a European Automotive manufacturer. The standard interface to transfer data files(EDIFAC) is ODETTE-FTP (OFTP).
I'm trying to find a native component solution, much like what's available for other FTP formats. After much Google searching I haven't been able to fin...
I am still learning socket programming (using Perl) but I have both options ( socket programming and SSH/SCP/FTP) available to transfer the data from remote machines to my local servers.
But I have to select one which is more secure ( encrypted data on network) in terms of data transfer. Any suggestions.
...
i am using a ftp connection to send data beteen server and client.servers command port is 21 and data port is 20,i want the client port specified by user is that possible,
Ftp:
command : client >specificport(user defined) --> server --21
data : client >specificport(user defined) --> server --20
...
I am using FtpWebRequest to append data to a mainframe file. Each record appended is 50 characters long, and I am adding them one record at a time.
In our development environment, we do not have a mainframe, so my code was written and tested FTPing to a Windows-based FTP site instead of a mainframe. Initially, I was writing each recor...
Hi,
I publish my application on a FTP server. I gave the FTP account information (URL, user and password) to Visual Studio but it keep asking me the FTP password each time I click the Publish now button.
Why VS doesn't automatically fullfill my password?
...
I need to add two lines of html to every page on a large website. I will be using a regex to do it.
I would like to know the best tools to download all the html files from a website, then ftp upload them back up on Windows.
...
Currently I'm working on a "plugin" that will be installed on many different sites and I was wondering on the best way for me to maintain the file version of this "plugin".
Here's what I was thinking. Have a "master copy" of the plugin on a server, then connect via FTP to the target sites and upload the copy to their site overwriting wh...
Hello,
when I connected to a FTP-Server with sockets how can I send username and password?
thank you for your answers.
...
Hello!
I have been using Indy to transfers files via FTP for years now but have not been able to find a satisfactory solution for the following problem.
When a user is uploading a large file, behind a router, sometimes the following happens: the file is uploaded OK, but in the mean time the command channel gets disconnected because of ...
Hello all!
I'm new here. I've got a question related to PHP, FTP and CURL.
I need to emulate PHP's stat() with CURL FTP. I already know that it may take more than one command to do it. Here's what I've got so far (PHP/STAT ... FTP/CURL):
dev
ino
mode ... LIST *
nlink
uid ... LIST *
gid ... LIST *
rdev
size ... SIZE (or better still, ...
I'm using the FTP Ant task with maven-antrun-plugin
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>ftp</id>
<phase>generate-resources</phase>
<configuration>
<tasks>
...
I can't figure out how to use CURL's FTP, specifically, how to issue FTP commands from my PHP code:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'ftp://ftp.microsoft.com/');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch,CURLOPT_POSTQUOTE,array('CWD bussys/','LIST')); /* ?!! */
echo '<hr>...
First off, I'm running Mono to run ASP.NET on Linux, but that's not the question.
It appears that, every time I clear out my application directory and upload, I have to go back in and fix the permissions. What I'm doing is
chmod -R -c 755 /var/www/*
...and there are two questions.
What's the deal with having to do this every time...
Here's what I'm doing now:
mysock = urllib.urlopen('http://localhost/image.jpg')
fileToSave = mysock.read()
oFile = open(r"C:\image.jpg",'wb')
oFile.write(fileToSave)
oFile.close
f=file('image.jpg','rb')
ftp.storbinary('STOR '+os.path.basename('image.jpg'),f)
os.remove('image.jpg')
Writing files to disk and then imediately deleting th...
I'm having a problem connecting 2 different processes that I have working. I've been tasked with pulling data out of a database, creating a file from the data, and then uploading it to an ftp server.
So far, I have the file being created and downloadable using this code, $out being a string that contains the complete text file:
if (...