I'm working on a website which allows users from different part of world to upload files of size upto 500 MB.
The problems are:
As it is a HTTP transfer, it is slow.
As it is a HTTP transfer, it is non-resumable.
Users really suffer because of these two problems.
So, I want to find a FTP provider which can provide me the services m...
I am using CFFTPStream to send files to a server. I have found that when I do not use persistent sockets not all the data is being sent. I am using similar code to the SimpleFTPSample. In the code that closes the socket I have put a sleep in and this has stopped the bad behavior. To me this indicates that when the stream is closed the da...
I'm using this code to upload myfile.txt from my windows machine to a ftp server. after the upoad the script deletes the file on my local machine (I'm not deleting it on the ftp).
try:
ftp = FTP(ftp.host.com)
ftp.login(your_username, your_password)
file = open(myfile.txt, "rb")
ftp.storbinary('STOR myfile.txt', file)
...
Hi!
I am managing the development of currently two different web applications of which one will roll out in beta testing before sunday.
I have some previous experience from SVN usage, after playing around a few hours with TortoiseSVN locally on a XP machine, but I never really got the hang out of it to be honest.
However, it feels lik...
I'm trying to use the windows ftp client to retrieve a file, and getting the above error:
426 Cannot retrieve. Failed. Aborting.
This has happened 3 time, at 3 different points in the download. Any way around this?
...
I have following code to send files to a FTP server.
function FtpUploader(
[string]$uri,
[string]$localeFile,
[string]$user = "ftp",
[string]$password = "ftp",
[int] $timeout = 20000
){
trap {
Write-Host ("ERROR: " + $_) -Foregroundcolor Red
return $false
}
$ftp = [System.Net.FtpWebRequ...
Hello everyone,
I want to transfer binary files to remote server. I am using SUN/ONC RPC (rpcgen on Linux) for my code. I am using C. I have written code for server and client and it works for text files, but when I try to transfer binary files it says the file is corrupted after transfer. I am storing data chunks in character array o...
Hi,
I'm transferring a file using ftp in Delphi.
I am able to connect to the ftp account ok but when I try and upload a file the
FtpOpenFile function returns nil instead of a handle the file to be uploaded.
hintfile := FtpOpenFile(hintconnect,PChar(tgtfn),GENERIC_WRITE,FTP_TRANSFER_TYPE_BINARY,0);
If I log into the ftp site using a...
I have implemented code for uploading images and directory to FTP using iPhone.
But I need to upload text file on FTP using iPhone. Can you please send me code for that.
...
Hello i am learning qt and trying to upload a file using QFtp i wrote the folowing code
this->connect(this->ftp, SIGNAL(done(bool)), this, SLOT(ftpDone(bool)));
this->connect(this->ftp, SIGNAL(dataTransferProgress(qint64, qint64)), this, SLOT(dataTransferProgress(qint64, qint64)));
this->connect(this->ftp, SIGNAL(stateChanged(int)), thi...
Hey SO,
I am running into the following issue, which applies to Server 2008 R2 only. Microsoft FTP 7.5 has an extensibility interface, IFtpLogProvider, that I am trying to implement to do some custom logging when people connect.
As has been reported here and here, this is a problem in the IFtpLogProvider.Log() method in versions of FTP...
Hello...I'm looking for an alternative to FTP for our computer-skittish employees who don't like FTP.
This isn't for online backups, but a way for several employees to have a common area to upload files and then send a URL so an outsider can download the file without the outsider needing to log on.
Drop-dead easy and non-threatening....
I have a php-script that uploads files to an ftp server from a location with a very low bandwith, low reliability connection. I am currently using the ftp functions of php.
Sometimes the connection drops in the middle of a transfer. Is there a way to later resume the upload? How can this be done?
Edit:
People misunderstood that this is...
I'm trying to switch from a windows environment to Linux. I'm primarily PHP developer, but I do know quite a bit about other languages such as CSS, XHTML and Javascript. I need a way of editing my files locally because I work in a git repository and need to commit my saves. On windows I used Aptana and PDT. I'd save my files, upload via ...
I'm using the Secure FTP product from EnterpriseDT. The setup below worked for one of my projects, but it's failing with Rejected--secure connection required (code=530) on another that pointing to a different address.
Dim ftp = New EnterpriseDT.Net.Ftp.SecureFTPConnection _
With {.LicenseOwner = "[REDACTED]", _
.LicenseKey...
Hi, I'm running a webserver and I've setup two groups.
One with just me, and another with me and a collaborator.
I've chmodded to 755 my htdocs folder and I gave a specifically "upload" dir the group shared with my collab.
So now my collab (via sym link) is able to upload some files via sftp, but he can also traversing all the directorie...
I have a website hosted on GoDaddy windows servers. I want to move the website to another server. I tried to download the whole website files via FTP but there are some files which named in Arabic and when my FTP client (FirFTP) tries to save them on my pc, the file name becomes underscores (e.g. _.jpg). I cannot change the file names be...
I am unittesting a bit of code that can fetch files either from the local file system, or from http or ftp. To unittest it I created a simple method that uses the HTTPListener class from the BCL to run a one-off webserver on a different thread, it just serves a byte array that I send in and then shuts down. (See code for this below).
I...
Does anyone can provide an example for outlook 2007 internet calendar using FTP protocol.
...
I am trying to stream a multiline textbox into a text file on an ftp server. Can someone tell me where I may be going wrong?
private void btnSave_Click(object sender, EventArgs e)
{
UriBuilder b = new UriBuilder();
b.Host = "ftp.myserver.com";
b.UserName = "user";
b.Password = "pass";
b.Port = 21;
b.Path = "/myse...