Welcome Guest, Not a member yet? Register   Sign In
uploaded file exceeds the maximum allowed size
#4

[eluser]Tartaron[/eluser]
Hello

I have the same problem trying to upload a video, I allready did what you suggested and in my local php.ini I have the max size up to 200M and in my code I set it to unlimited but is not working and i´m trying to upload a 2.2MB video

Code:
set_time_limit(0);
ini_set("upload_max_filesize",25);


        
$vconfig['upload_path'] = './assets/uploads/video/';
$vconfig['allowed_types'] = 'flv';
$vconfig['max_size']= '0';
            
$this->load->library('upload', $vconfig);
            
$nombre_video = $_FILES['video']['name'];          
if ( ! $this->upload->do_upload('video'))
{
    echo $this->upload->display_errors();
    echo $nombre_video;
}

Please help me


Messages In This Thread
uploaded file exceeds the maximum allowed size - by El Forum - 06-25-2008, 05:27 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-25-2008, 06:32 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-25-2008, 06:36 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-09-2011, 01:48 PM
uploaded file exceeds the maximum allowed size - by El Forum - 06-09-2011, 11:15 PM
uploaded file exceeds the maximum allowed size - by El Forum - 06-10-2011, 01:39 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-10-2011, 09:53 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-10-2011, 11:12 AM
uploaded file exceeds the maximum allowed size - by El Forum - 06-11-2011, 12:36 AM



Theme © iAndrew 2016 - Forum software by © MyBB