vote up 0 vote down star

Hello. My question is : On my server there are limit of max 2MB file sended by FTP. If I send it by some script in PHP, there are no restriction, and I want to send something around 3.8MB. Any ideas?

flag

What do you mean by "by some script in PHP"? Do you mean you are sending it to a PHP script using a web browser? If so, the PHP script likely has a file size limit, too, but much larger than 2MB. – Dave Jarvis Jul 11 at 20:05
something like tiny upload script will do it I think – maxorq Jul 11 at 20:07
You cannot exceeed the 2MB FTP quota. It does not matter whether you are attempting to do it manually through a FTP client or through some script, that speaks the FTP protocol. If you could exceed the quota, then the FTP server would be buggy, no? If you are doing the upload through some script, then it probably is simply NOT using FTP. – Anti Veeranna Jul 11 at 20:13
Could you please provide the PHP script that worked for you? If it works, then it'll probably have all the clues. – anschauung Jul 12 at 3:56

4 Answers

vote up 1 vote down check

there is a program that could split any file into pieces, it is called Hjsplit(here is the link: freebyte.com/hjsplit). once you have splitted the file and uploaded it onto the server, there is a php script which lets you re-join the splitted file.

link|flag
vote up 0 vote down

This answer comes from my wild imagination, and not quite sure if its possible. I would try to get the content of the file and separating it into two, and then uploading the first file and then appending the content of the second file to the first one.

Example:

If the original file is:

0101010101010100101010

split it into two files:

File One:01010101010 File Two:10100101010

Upload the first file and then append file two.

link|flag
vote up 0 vote down

Could you provide a bit more info on your problem? You can't compress it or split it?

link|flag
vote up 0 vote down

If you can install software on the server, I recommend using ProFTPd. It sounds like it is a configuration problem on with the FTP software. You will need to tell us more information, such as:

  • What operating system?
  • What FTP software (and which version)?
  • What type of file are you sending (text, binary, compressed)?
  • What access do you have with the server?
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.