Hi!
I'm new to php and I'm trying to implement this class in my code but I can not. I want uploads files to be made ​​for "upl_img" folder.
Even using the default password, I can not do the uploads.
The code:
if(isset($_POST['upload'])){
    $config = array(
        'form_key'          =>  'file' // the name of input file form 
        ,'upload_dir'       =>  session_save_path('upl_img') // path to save the file in , default "php tmp"
        ,'allowed_ext'      =>  array('png', 'jpg', 'jpeg', 'gif') // allowed extensions
        ,'excluded_ext'     =>  array('htaccess', 'php', 'pl', 'py')   // disallowed extensions
        ,'max_filesize'     =>  5000 // max file size default "5 mb"
        ,'override'         =>  false // override existing ?
    );
    
    $u = new MA_Uploader($config);
    if($u == true) echo 'done';
    else var_dump($u->result());
}
My email is 
[email protected]
Thank you