Home
Softono

Filemanager Php

Open source MIT PHP
24
Stars
16
Forks
4
Issues
4
Watchers
3 years
Last Commit

 About Filemanager Php

It is the connector to the File Manager, regardless of the GUI.

Platforms

Web Self-hosted

Languages

PHP

Links

Need Help Installing Filemanager Php?

We provide expert installation service for this software. Our team will install, configure, and secure Filemanager Php on your server. plans start at just $30.

Filemanager Php

View on GitHub

Filemanager for PHP

It is the connector to the File Manager, guillermomartinez/filemanager-ui It is the GUI.

Required

  • PHP >= 5.4

Wiki

Wiki

Installation

composer require guillermomartinez/filemanager-php:0.1.*

Create file conector.php in folder public_html

<?php
include("vendor/autoload.php");
use GuillermoMartinez\Filemanager\Filemanager;

// Add your own authentication method
//if(!isset($_SESSION['username']) || $_SESSION['username']!="")
//  exit();
$extra = array(
	// path after of root folder
	// if /var/www/public_html is your document root web server
	// then source= usefiles o filemanager/usefiles
	"source" => "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/

demo2 demo1 demo3