XYZ File Manager
Current Path:
/var/www/wordpress/wp-content/plugins/wp-file-manager-1/lib/php
var
/
www
/
wordpress
/
wp-content
/
plugins
/
wp-file-manager-1
/
lib
/
php
/
📁
..
📄
MySQLStorage.sql
(2.26 KB)
📄
autoload.php
(2.54 KB)
📄
chars-test.php
(1.33 KB)
📁
editors
📄
elFinder.class.php
(177.42 KB)
📄
elFinderConnector.class.php
(12.29 KB)
📄
elFinderFlysystemGoogleDriveNetmount.php
(14.83 KB)
📄
elFinderPlugin.php
(3.25 KB)
📄
elFinderSession.php
(8.58 KB)
📄
elFinderSessionInterface.php
(1.07 KB)
📄
elFinderVolumeBox.class.php
(60.32 KB)
📄
elFinderVolumeDriver.class.php
(254.03 KB)
📄
elFinderVolumeDropbox.class.php
(40.81 KB)
📄
elFinderVolumeDropbox2.class.php
(46.32 KB)
📄
elFinderVolumeFTP.class.php
(57.08 KB)
📄
elFinderVolumeGoogleDrive.class.php
(69.59 KB)
📄
elFinderVolumeGroup.class.php
(5.25 KB)
📄
elFinderVolumeLocalFileSystem.class.php
(44.99 KB)
📄
elFinderVolumeMySQL.class.php
(29.35 KB)
📄
elFinderVolumeOneDrive.class.php
(66.22 KB)
📄
elFinderVolumeTrash.class.php
(1.55 KB)
📄
elFinderVolumeTrashMySQL.class.php
(1.54 KB)
📁
flycache
📁
libs
📄
mime.types
(24.25 KB)
📁
plugins
📁
resources
Editing: MySQLStorage.sql
DROP TABLE IF EXISTS `elfinder_file`; CREATE TABLE IF NOT EXISTS `elfinder_file` ( `id` int(7) unsigned NOT NULL auto_increment, `parent_id` int(7) unsigned NOT NULL, `name` varchar(255) NOT NULL, `content` longblob NOT NULL, `size` int(10) unsigned NOT NULL default '0', `mtime` int(10) unsigned NOT NULL default '0', `mime` varchar(256) NOT NULL default 'unknown', `read` enum('1', '0') NOT NULL default '1', `write` enum('1', '0') NOT NULL default '1', `locked` enum('1', '0') NOT NULL default '0', `hidden` enum('1', '0') NOT NULL default '0', `width` int(5) NOT NULL default '0', `height` int(5) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `parent_name` (`parent_id`, `name`), KEY `parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; INSERT INTO `elfinder_file` (`id`, `parent_id`, `name`, `content`, `size`, `mtime`, `mime`, `read`, `write`, `locked`, `hidden`, `width`, `height`) VALUES ('1' , '0', 'DATABASE', '', '0', '0','directory', '1', '1', '0', '0', '0', '0'); DROP TABLE IF EXISTS `elfinder_trash`; CREATE TABLE IF NOT EXISTS `elfinder_trash` ( `id` int(7) unsigned NOT NULL auto_increment, `parent_id` int(7) unsigned NOT NULL, `name` varchar(255) NOT NULL, `content` longblob NOT NULL, `size` int(10) unsigned NOT NULL default '0', `mtime` int(10) unsigned NOT NULL default '0', `mime` varchar(256) NOT NULL default 'unknown', `read` enum('1', '0') NOT NULL default '1', `write` enum('1', '0') NOT NULL default '1', `locked` enum('1', '0') NOT NULL default '0', `hidden` enum('1', '0') NOT NULL default '0', `width` int(5) NOT NULL default '0', `height` int(5) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `parent_name` (`parent_id`, `name`), KEY `parent_id` (`parent_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci; INSERT INTO `elfinder_trash` (`id`, `parent_id`, `name`, `content`, `size`, `mtime`, `mime`, `read`, `write`, `locked`, `hidden`, `width`, `height`) VALUES ('1' , '0', 'DB Trash', '', '0', '0','directory', '1', '1', '0', '0', '0', '0');
Upload File
Create Folder