boxes // 1 => detailed list (1 column) // 2 => columns list (multiple columns depending on the width of the page) // YOU CAN ALSO PASS THIS PARAMETERS USING SESSION VAR => $_SESSION["VIEW"]= // //****************** $default_view=0; //set if the filename is truncated when overflow first row $ellipsis_title_after_first_row=true; //************************* //Permissions configuration //****************** $delete_files=true; $create_folders=true; $delete_folders=true; $upload_files=true; $rename_files=true; $rename_folders=true; //********************** //Allowed extensions (lowercase insert) //********************** $ext_img = array('jpg', 'jpeg', 'png', 'gif', 'bmp', 'tiff', 'svg'); //Images $ext_file = array('doc', 'docx','rtf', 'pdf', 'xls', 'xlsx', 'txt', 'csv','html','xhtml','psd','sql','log','fla','xml','ade','adp','mdb','accdb','ppt','pptx','odt','ots','ott','odb','odg','otp','otg','odf','ods','odp','css','ai'); //Files $ext_video = array('mov', 'mpeg', 'mp4', 'avi', 'mpg','wma',"flv","webm"); //Video $ext_music = array('mp3', 'm4a', 'ac3', 'aiff', 'mid','ogg','wav'); //Audio $ext_misc = array('zip', 'rar','gz','tar','iso','dmg'); //Archives $ext=array_merge($ext_img, $ext_file, $ext_misc, $ext_video,$ext_music); //allowed extensions /****************** * AVIARY config *******************/ $aviary_key="dvh8qudbp6yx2bnp"; $aviary_secret="m6xaym5q42rpw433"; $aviary_version=3; $aviary_language='en'; //The filter and sorter are managed through both javascript and php scripts because if you have a lot of //file in a folder the javascript script can't sort all or filter all, so the filemanager switch to php script. //The plugin automatic swich javascript to php when the current folder exceeds the below limit of files number $file_number_limit_js=500; //********************** // Hidden files and folders //********************** // set the names of any folders you want hidden (eg "hidden_folder1", "hidden_folder2" ) Remember all folders with these names will be hidden (you can set any exceptions in config.php files on folders) $hidden_folders = array(); // set the names of any files you want hidden. Remember these names will be hidden in all folders (eg "this_document.pdf", "that_image.jpg" ) $hidden_files = array('config.php'); /******************* * JAVA upload *******************/ $java_upload=true; $JAVAMaxSizeUpload=200; //Gb //************************************ //Thumbnail for external use creation //************************************ // New image resized creation with fixed path from filemanager folder after uploading (thumbnails in fixed mode) // If you want create images resized out of upload folder for use with external script you can choose this method, // You can create also more than one image at a time just simply add a value in the array // Remember than the image creation respect the folder hierarchy so if you are inside source/test/test1/ the new image will create at // path_from_filemanager/test/test1/ // PS if there isn't write permission in your destination folder you must set it $fixed_image_creation = false; //activate or not the creation of one or more image resized with fixed path from filemanager folder $fixed_path_from_filemanager = array('../test/','../test1/'); //fixed path of the image folder from the current position on upload folder $fixed_image_creation_name_to_prepend = array('','test_'); //name to prepend on filename $fixed_image_creation_to_append = array('_test',''); //name to appendon filename $fixed_image_creation_width = array(300,400); //width of image (you can leave empty if you set height) $fixed_image_creation_height = array(200,''); //height of image (you can leave empty if you set width) // New image resized creation with relative path inside to upload folder after uploading (thumbnails in relative mode) // With Responsive filemanager you can create automatically resized image inside the upload folder, also more than one at a time // just simply add a value in the array // The image creation path is always relative so if i'm inside source/test/test1 and I upload an image, the path start from here $relative_image_creation = false; //activate or not the creation of one or more image resized with relative path from upload folder $relative_path_from_current_pos = array('thumb/','thumb/'); //relative path of the image folder from the current position on upload folder $relative_image_creation_name_to_prepend= array('','test_'); //name to prepend on filename $relative_image_creation_name_to_append = array('_test',''); //name to append on filename $relative_image_creation_width = array(300,400); //width of image (you can leave empty if you set height) $relative_image_creation_height = array(200,''); //height of image (you can leave empty if you set width) ?>