Re: [PHP] uploads

2007-05-02 Thread Richard Lynch
On Sun, April 29, 2007 4:35 pm, jekillen wrote: > can someone point me to a system for cleaning > uploaded files; embedded php scripts in image > files, viruses etc, shell escape chars, anything > that would be hazardous? > The idea is when a file is uploaded, as soon > as it gets to the server it

Re: [PHP] uploads

2007-04-29 Thread Tijnema !
On 4/29/07, jekillen <[EMAIL PROTECTED]> wrote: Hello again; can someone point me to a system for cleaning uploaded files; embedded php scripts in image files, viruses etc, shell escape chars, anything that would be hazardous? The idea is when a file is uploaded, as soon as it gets to the server

Re: [PHP] uploads work sometimes

2002-07-12 Thread Jason Wong
On Friday 12 July 2002 03:27, Tyler Longren wrote: > Hi, > > I have a form: > > > And the code that processes the form: > if ($_FILES['pdfFile']['name'] == "") { > print "You must select a file to upload"; > } > else { > // code to add data to db > } > > This works on my server at hom

Re: [PHP] Uploads

2002-01-21 Thread Bogdan Stancescu
Ok, I've run into this myself. Two possible reasons: 1. PHP 2. MySQL NOT POSSIBLE REASON: execution time. You only get to execution time after uploading the data, so that doesn't count - you may take long to send the actual file, not afterwards. Ok, the two possibilities: 1. PHP php.ini, as you

Re: [PHP] Uploads

2002-01-21 Thread Jason Wong
On Tuesday 22 January 2002 07:35, Ronald Tezuka wrote: > I've got it set to 100 megs for both the browser and the php.ini file, I > just set a really high limit as not to come close to the files I am trying > to upload. However it still seems to load up a blank page and doesn't > upload the file

Re: [PHP] Uploads

2002-01-21 Thread Ronald Tezuka
"Dennis Moore" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >Subject: Re: [PHP] Uploads >Date: Mon, 21 Jan 2002 18:23:25 -0500 > >make sure you set the max_file_size in your form. > >ie > >or set it in your php.ini or .htaccess

Re: [PHP] Uploads

2002-01-21 Thread Ronald Tezuka
im Lucas [php]" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> >Subject: Re: [PHP] Uploads >Date: Mon, 21 Jan 2002 15:01:37 -0800 > >make sure you increase your script timeout limit. >Jim Lucas >- Original Message - >From: "

Re: [PHP] Uploads

2002-01-21 Thread Dennis Moore
make sure you set the max_file_size in your form. ie or set it in your php.ini or .htaccess file. /dkm - Original Message - From: "Ronald Tezuka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 5:50 PM Subject: [PHP] Uploads > If anyone can help me out,

Re: [PHP] Uploads

2002-01-21 Thread Jim Lucas [php]
make sure you increase your script timeout limit. Jim Lucas - Original Message - From: "Ronald Tezuka" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, January 21, 2002 2:50 PM Subject: [PHP] Uploads > If anyone can help me out, that'd be greatly appreciated. I'm trying to > cr