https://github.com/guillermomartinez/filemanager-php
It is the connector to the File Manager, regardless of the GUI.
https://github.com/guillermomartinez/filemanager-php
connector file-manager filemanager filemanager-ui gallery gui media-center php
Last synced: 4 months ago
JSON representation
It is the connector to the File Manager, regardless of the GUI.
- Host: GitHub
- URL: https://github.com/guillermomartinez/filemanager-php
- Owner: guillermomartinez
- License: mit
- Created: 2015-03-06T14:55:41.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T05:21:45.000Z (over 3 years ago)
- Last Synced: 2025-09-03T01:52:11.272Z (10 months ago)
- Topics: connector, file-manager, filemanager, filemanager-ui, gallery, gui, media-center, php
- Language: PHP
- Homepage:
- Size: 3.23 MB
- Stars: 25
- Watchers: 4
- Forks: 16
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Filemanager for PHP
It is the connector to the File Manager, [guillermomartinez/filemanager-ui](https://github.com/guillermomartinez/filemanager-ui) It is the GUI.
## Required
- PHP >= 5.4
## Wiki
[Wiki](https://github.com/guillermomartinez/filemanager-ui/wiki)
## Installation
```
composer require guillermomartinez/filemanager-php:0.1.*
```
Create file conector.php in folder public_html
```
"userfiles",
// url domain
// so that the files and show well http://php-filemanager.rhcloud.com/userfiles/imagen.jpg
// o http://php-filemanager.rhcloud.com/filemanager/userfiles/imagen.jpg
"url" => "http://php-filemanager.rhcloud.com/",
"debug" => false,
"images" => [
'resize'=>[
// width,height,IF TRUE crop in width ELSEIF NULL is auto,IF TRUE crop in height ELSEIF NULL is auto
'medium' => array(340,180,true,true),
'large' => array(1024,768,true,true),
]
],
);
if(isset($_POST['typeFile']) && $_POST['typeFile']=='images'){
$extra['type_file'] = 'images';
}
$f = new Filemanager($extra);
$f->run();
?>
```
Install https://github.com/guillermomartinez/filemanager-ui for user interface.
## Demo
http://php-filemanager.rhcloud.com/


