My client has problems uploading a file that is a rough 70mb to the server
using cakephp's file data"

                    $real_name = substr(sha1(
$this->data['File']['pdf']['name'] . time() . rand(1,999999) ), 0, 12) .
".pdf";
                    if( move_uploaded_file(
$this->data['File']['pdf']['tmp_name'], APP . 'pdf/' . $real_name ) )
                    {

                    }
It allows me to upload smaller pdf files with no problem, but huge pdf's
dont work out well.  Could this be a server issue or what?  What could I do
to try debugging this issue?


-- 
For all your Programming and Technology Information Visit
www.BinaryCrunch.com

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to 
cake-php+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to