Re: [PHP] Ftp upload

2011-06-15 Thread Pete Ford
On 15/06/11 01:24, Marc Guay wrote: I bought a 1GB external hard drive for $1000. Did I just choke on my lunch? If that was about 20 years ago, then it would be fine! -- Peter Ford, Developer phone: 01580 89 fax: 01580 893399 Justcroft International Ltd.

Re: [PHP] Ftp upload

2011-06-15 Thread Marc Guay
If that was about 20 years ago, then it would be fine! Would have been around 1992, good guesswork! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Ftp upload

2011-06-15 Thread Steve Staples
On Wed, 2011-06-15 at 07:42 -0400, Marc Guay wrote: If that was about 20 years ago, then it would be fine! Would have been around 1992, good guesswork! ugh, i feel old now (even though i am not)... 20 years ago is 1991... i got my car/motorcycle license in 1992 at the age of 16... --

[PHP] Ftp upload

2011-06-14 Thread Andre Polykanine
Hi everyone, I would like to have a possibility to upload really large files to the website. As we all know, the post_max_size parameter is set to 8Mb by default. However, I see that the ftp_put() function has a local filepath parameter. And the question is: how can I retrieve the local

RE: [PHP] Ftp upload

2011-06-14 Thread admin
type=file name=fupload input type=submit value=Send file! /form /body /html Richard L. Buskirk -Original Message- From: Andre Polykanine [mailto:an...@oire.org] Sent: Tuesday, June 14, 2011 7:38 AM To: Php General Subject: [PHP] Ftp upload Hi everyone, I would like to have

Re: [PHP] Ftp upload

2011-06-14 Thread Andre Polykanine
://facebook.com/menelion Original message From: ad...@buskirkgraphics.com ad...@buskirkgraphics.com To: 'Andre Polykanine' Date created: , 3:41:59 PM Subject: [PHP] Ftp upload Andre, I have checked the $_POST, and THE $_FILES. I am pretty sure the actual path

RE: [PHP] Ftp upload

2011-06-14 Thread admin
Message- From: Andre Polykanine [mailto:an...@oire.org] Sent: Tuesday, June 14, 2011 10:02 AM To: ad...@buskirkgraphics.com Cc: 'Php General' Subject: Re: [PHP] Ftp upload Hi Richard, Thanks a lot! So can I let them upload, say, a 700 Mb file via POST or should I consider connecting to FTP

Re: [PHP] Ftp upload

2011-06-14 Thread Eli Orr (Office)
Dear Experts, Can you please advise how can I detect a string if it is UTF-8 or now and how can I if possible convert a string to a utf-8 ? Here's the string I got from client - client sends it via POST with urlencode and does apply UTF-8 encoding on the string. Here's the string I got:

Re: [PHP] Ftp upload

2011-06-14 Thread Andre Polykanine
) Twitter: http://twitter.com/m_elensule Facebook: http://facebook.com/menelion Original message From: ad...@buskirkgraphics.com ad...@buskirkgraphics.com To: 'Andre Polykanine' Date created: , 5:46:00 PM Subject: [PHP] Ftp upload Andre, Anything over 7 MB

Re: [PHP] Ftp upload

2011-06-14 Thread Tamara Temple
On Jun 14, 2011, at 12:59 PM, Andre Polykanine wrote: So, say, they make audiobooks or movies and they want them to be available as (paid) download. How should they upload it so they would be in the catalog? If it's really large data like that, and they have a lot of it, maybe

Re: [PHP] Ftp upload

2011-06-14 Thread Richard Quadling
On 14 June 2011 22:27, Tamara Temple tamouse.li...@gmail.com wrote: On Jun 14, 2011, at 12:59 PM, Andre Polykanine wrote: So,  say,  they  make  audiobooks  or  movies and they want them to be available   as   (paid)  download.  How  should they upload it so they would be in the catalog? If

Re: [PHP] Ftp upload

2011-06-14 Thread Tamara Temple
On Jun 14, 2011, at 4:42 PM, Richard Quadling wrote: On 14 June 2011 22:27, Tamara Temple tamouse.li...@gmail.com wrote: On Jun 14, 2011, at 12:59 PM, Andre Polykanine wrote: So, say, they make audiobooks or movies and they want them to be available as (paid) download. How

Re: [PHP] Ftp upload

2011-06-14 Thread Richard Quadling
On 14 June 2011 23:20, Tamara Temple tamouse.li...@gmail.com wrote: Did I just give away my age? Yes. -- Richard Quadling Twitter : EE : Zend : PHPDoc @RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Ftp upload

2011-06-14 Thread Marc Guay
I bought a 1GB external hard drive for $1000. Did I just choke on my lunch? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Ftp upload

2011-06-14 Thread admin
LOL yeah. Since I can buy a 2 terabyte external hard drive and caddy for less than $300. At Best Buy. Richard L. Buskirk... -Original Message- From: Marc Guay [mailto:marc.g...@gmail.com] Sent: Tuesday, June 14, 2011 8:25 PM To: PHP General Subject: Re: [PHP] Ftp upload I bought a 1GB

Re: [PHP] Ftp upload

2011-06-14 Thread Melinda Smith
...@gmail.com] Sent: Tuesday, June 14, 2011 8:25 PM To: PHP General Subject: Re: [PHP] Ftp upload I bought a 1GB external hard drive for $1000. Did I just choke on my lunch? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP

Re: [PHP] ftp upload via web form - problem getting the file name correct

2005-03-08 Thread Franklin van de Meent
Hello Steve, I tried this on my own servers and after replacing OUR FTP SERVER with $ftp_server it works perfectly, all ASCII files get uploaded the way they should with the correct filenames. Do you get any errors? (add error_reporting(E_ALL); above the login vars to show them all) -- PHP

Re: [PHP] ftp upload via web form - problem getting the file name correct

2005-03-08 Thread Steve Turnbull
Franklin van de Meent wrote: Hello Steve, I tried this on my own servers and after replacing OUR FTP SERVER with $ftp_server it works perfectly, all ASCII files get uploaded the way they should with the correct filenames. Do you get any errors? (add error_reporting(E_ALL); above the

[PHP] ftp upload via web form - problem getting the file name correct

2005-03-07 Thread Steve Turnbull
Hi I have tried creating a script which will allow our core staff to upload files to our FTP server. I don't have a problem with the uploading of a local file to our FTP server with the correct authentication etc, the problem I am having, is that the file which gets uploaded always has the

[PHP] FTP UPLOAD

2002-12-16 Thread Marios Adamantopoulos
Hi all I have a problm uploading a simple file to my server using the PHP FTP functions. I would appreciate it if anyone could help: The HTML part: form enctype=multipart/form-data action=ftp.php method=post name=FormName Upload file : input type=file name=thefile size=24 border=0 input

Re: [PHP] FTP UPLOAD

2002-12-16 Thread Andrew Brampton
are using the more lastest PHP version) Hope this helps Andrew - Original Message - From: Marios Adamantopoulos [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 16, 2002 12:11 PM Subject: [PHP] FTP UPLOAD Hi all I have a problm uploading a simple file to my server using the PHP

[PHP] FTP upload

2002-04-05 Thread ubomr Zvodsk
Hello ,is it possible to upload file that is bigger than 8MB thrue FTP upload programmed in PHP? I need send attachments up to 50MB by FTP. It's for a graphic studio which works with big files. If yes how? Thank you Zavodsky [EMAIL PROTECTED] --- Odchoz zprva neobsahuje viry. Zkontrolovno