Re: File Uploading problem

2008-10-22 Thread Da-Omiete Iboroma
b. >> This can be changed in IIS and also edit the metabase.xml file. >> >> Sent from my Verizon Wireless BlackBerry >> >> -Original Message- >> From: LunarDraco <[EMAIL PROTECTED]> >> >> Date: Tue, 21 Oct 2008 08:29:15 >> To: Cake

Re: File Uploading problem

2008-10-21 Thread Donkeybob
s server 2003, the default upload size is 200kb. > This can be changed in IIS and also edit the metabase.xml file. > > Sent from my Verizon Wireless BlackBerry > > -Original Message- > From: LunarDraco <[EMAIL PROTECTED]> > > Date: Tue, 21 Oct 2008 08:29:15 > To:

Re: File Uploading problem

2008-10-21 Thread mattcolley
akePHP Subject: Re: File Uploading problem The file size for most http post is limited by the server and php to something less than 2048. Which limits your capabilities of the size of file you can upload. In order to upload files larger than this limit you would need to chunk the file and then reas

Re: File Uploading problem

2008-10-21 Thread LunarDraco
The file size for most http post is limited by the server and php to something less than 2048. Which limits your capabilities of the size of file you can upload. In order to upload files larger than this limit you would need to chunk the file and then reassemble the file on the server. This usual

Re: File Uploading problem

2008-10-21 Thread grigri
Did you include 'type' => 'file' in the form create method? On Oct 20, 10:17 pm, "Lee Reynolds" <[EMAIL PROTECTED]> wrote: > The only time I've had this issue was when I was  exceeding the file > upload limit. > > You can change it in php.ini.  Not sure if you need to restart apache > after a cha

Re: File Uploading problem

2008-10-20 Thread Lee Reynolds
The only time I've had this issue was when I was exceeding the file upload limit. You can change it in php.ini. Not sure if you need to restart apache after a change there or not for it to take effect. Lee On Mon, Oct 20, 2008 at 11:01 AM, Donkeybob <[EMAIL PROTECTED]> wrote: > > I'm using th

Re: File Uploading problem

2008-10-20 Thread fr3nch13
It may have to do with your form tag missing some attributes. See: http://cgi-lib.berkeley.edu/ex/fup.html --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to cake-php

Re: File Uploading problem

2008-10-20 Thread Donkeybob
The file size is 7 mb my php.ini settings: max_execution_time = 30 max_input_time = 60 memory_limit = 32M post_max_size = 75M upload_max_filesize = 50M I post it to the database too. The area where it errors, is when it saves the data because $this->data does not have filename, mediatype and siz

Re: File Uploading problem

2008-10-20 Thread Julien Buratto
Donkeybob wrote: > I'm using this: $form->file('filename') in my file upload utilty. Some > certain files will upload and save the data, but some files types > don't. . . . . .ex. podcast.m4a. > > When i submit the form . . .this->data only posts: > Array > ( > [Fileupload] => Array >

File Uploading problem

2008-10-20 Thread Donkeybob
I'm using this: $form->file('filename') in my file upload utilty. Some certain files will upload and save the data, but some files types don't. . . . . .ex. podcast.m4a. When i submit the form . . .this->data only posts: Array ( [Fileupload] => Array ( [name] => Podcast na