Welcome Guest, Not a member yet? Register   Sign In
min_width and min_height for the upload class?
#17

[eluser]chefnelone[/eluser]
I attached: application/libraries/Upload.php
I wrapped my changes with '//ADDED' (useful to make a search to spot modifications from original class)


And here part of the method that fire the Upload class:
Code:
function upload_photos(){
        $config['upload_path'] = './uploads/';
        $config['allowed_types'] = 'gif|jpg|png';
        $config['max_size']    = '1024';
        $config['max_width']  = '1200';
        $config['max_height']  = '1200';
        $config['min_width']  = '800';
        $config['min_height']  = '600';
        
        $this->load->library('upload', $config);
    
        if ( ! $this->upload->do_upload() )
        {
            $error = array('error' => $this->upload->display_errors());
            $errores ='';
            foreach($error as $value){
                $errores .= $value;
            }
/*             $this->firephp->log( $errores ); */
            echo $errores;
            
            $procesoCompleto = FALSE;
        }    
        else
        {
//do something else.

}

}

I'm using firePhp, then I can get any data in the controller, just in case it helps...


Messages In This Thread
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 01:24 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 02:03 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 02:12 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 06:40 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 06:48 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 06:58 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 07:01 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 07:17 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 07:23 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 07:28 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 11:28 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 11:38 AM
min_width and min_height for the upload class? - by El Forum - 12-01-2010, 11:44 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 02:57 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 03:21 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 03:31 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 04:20 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:18 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:33 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:41 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:44 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:46 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 05:58 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 06:29 AM
min_width and min_height for the upload class? - by El Forum - 12-02-2010, 06:47 AM
min_width and min_height for the upload class? - by El Forum - 02-28-2011, 04:18 PM
min_width and min_height for the upload class? - by El Forum - 02-23-2012, 09:49 AM



Theme © iAndrew 2016 - Forum software by © MyBB