https://studio-42.github.io/elFinder/
https://github.com/Studio-42/elFinder
ファイル名を変更
From: php/connector.minimal.php-dist
To: php/connector.minimal.php
From: elfinder.legacy.html
To: index.php
From: main.default.js
To: main.js
編集
index.php 内で uiOptions, contextmenu 等の設定をする
設定値は js/elfinder.full.js を参照する
アクセス権変更
1 2 |
$ find . -type d -exec chmod 775 {} + $ chmod -R 777 files php/.tmp |
一応 cdn から読み込んでいるファイルをダウンロードしておく
使わないファイルを削除
ローカルディスクのみで使用するのとメンテ簡略の為
使わないファイルを削除しておく
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
. ├── index.php ├── main.js ├── css │ ├── elfinder.full.css │ ├── elfinder.min.css │ └── theme.css ├── files │ └── ... ├── img │ ├── arrows-active.png │ └── ... ├── js │ ├── elfinder.full.js │ ├── elfinder.min.js │ ├── extras │ │ ├── editors.default.js │ │ ├── editors.default.min.js │ │ ├── quicklook.googledocs.js │ │ └── quicklook.googledocs.min.js │ └── i18n │ ├── elfinder.LANG.js │ ├── elfinder.fallback.js │ ├── elfinder.ja.js │ └── help │ ├── en.html.js │ └── ja.html.js ├── php │ ├── autoload.php │ ├── connector.minimal.php │ ├── editors │ │ ├── OnlineConvert │ │ │ └── editor.php │ │ ├── ZipArchive │ │ │ └── editor.php │ │ ├── ZohoOffice │ │ │ └── editor.php │ │ └── editor.php │ ├── elFinder.class.php │ ├── elFinderConnector.class.php │ ├── elFinderPlugin.php │ ├── elFinderSession.php │ ├── elFinderSessionInterface.php │ ├── elFinderVolumeDriver.class.php │ ├── elFinderVolumeLocalFileSystem.class.php │ ├── elFinderVolumeTrash.class.php │ ├── libs │ │ └── GdBmp.php │ ├── mime.types │ ├── plugins │ │ ├── AutoResize │ │ │ └── plugin.php │ │ ├── AutoRotate │ │ │ └── plugin.php │ │ ├── Normalizer │ │ │ └── plugin.php │ │ ├── Sanitizer │ │ │ └── plugin.php │ │ └── Watermark │ │ ├── logo.png │ │ └── plugin.php │ └── resources │ ├── image.png │ └── video.png └── sounds └── rm.wav |