├── .gitignore ├── Ispconfig_files ├── README.md └── remote.d │ ├── cwispy.inc.php │ └── version.inc.php ├── LICENSE ├── README.md ├── assets ├── css.css ├── elfinder │ ├── css │ │ ├── elfinder.full.css │ │ ├── elfinder.min.css │ │ └── theme.css │ ├── files │ │ ├── .gitkeep │ │ └── .trash │ │ │ └── .gitkeep │ ├── img │ │ ├── arrows-active.png │ │ ├── arrows-normal.png │ │ ├── crop.gif │ │ ├── dialogs.png │ │ ├── edit_aceeditor.png │ │ ├── edit_ckeditor.png │ │ ├── edit_codemirror.png │ │ ├── edit_creativecloud.png │ │ ├── edit_pixlreditor.png │ │ ├── edit_pixlrexpress.png │ │ ├── edit_simplemde.png │ │ ├── edit_tinymce.png │ │ ├── icons-big.png │ │ ├── icons-small.png │ │ ├── logo.png │ │ ├── progress.gif │ │ ├── quicklook-bg.png │ │ ├── quicklook-icons.png │ │ ├── resize.png │ │ ├── spinner-mini.gif │ │ ├── toolbar.png │ │ ├── volume_icon_box.png │ │ ├── volume_icon_dropbox.png │ │ ├── volume_icon_ftp.png │ │ ├── volume_icon_googledrive.png │ │ ├── volume_icon_local.png │ │ ├── volume_icon_onedrive.png │ │ ├── volume_icon_sql.png │ │ └── volume_icon_trash.png │ ├── js │ │ ├── elfinder.full.js │ │ ├── elfinder.min.js │ │ ├── extras │ │ │ ├── editors.default.js │ │ │ ├── editors.default.min.js │ │ │ ├── encoding-japanese.min.js │ │ │ ├── quicklook.googledocs.js │ │ │ └── quicklook.googledocs.min.js │ │ ├── i18n │ │ │ ├── elfinder.LANG.js │ │ │ ├── elfinder.ar.js │ │ │ ├── elfinder.bg.js │ │ │ ├── elfinder.ca.js │ │ │ ├── elfinder.cs.js │ │ │ ├── elfinder.da.js │ │ │ ├── elfinder.de.js │ │ │ ├── elfinder.el.js │ │ │ ├── elfinder.es.js │ │ │ ├── elfinder.fa.js │ │ │ ├── elfinder.fallback.js │ │ │ ├── elfinder.fo.js │ │ │ ├── elfinder.fr.js │ │ │ ├── elfinder.he.js │ │ │ ├── elfinder.hr.js │ │ │ ├── elfinder.hu.js │ │ │ ├── elfinder.id.js │ │ │ ├── elfinder.it.js │ │ │ ├── elfinder.jp.js │ │ │ ├── elfinder.ko.js │ │ │ ├── elfinder.nl.js │ │ │ ├── elfinder.no.js │ │ │ ├── elfinder.pl.js │ │ │ ├── elfinder.pt_BR.js │ │ │ ├── elfinder.ro.js │ │ │ ├── elfinder.ru.js │ │ │ ├── elfinder.si.js │ │ │ ├── elfinder.sk.js │ │ │ ├── elfinder.sl.js │ │ │ ├── elfinder.sr.js │ │ │ ├── elfinder.sv.js │ │ │ ├── elfinder.tr.js │ │ │ ├── elfinder.ug_CN.js │ │ │ ├── elfinder.uk.js │ │ │ ├── elfinder.vi.js │ │ │ ├── elfinder.zh_CN.js │ │ │ ├── elfinder.zh_TW.js │ │ │ └── help │ │ │ │ ├── cs.html.js │ │ │ │ ├── en.html.js │ │ │ │ ├── jp.html.js │ │ │ │ ├── pl.html.js │ │ │ │ └── sk.html.js │ │ └── proxy │ │ │ └── elFinderSupportVer1.js │ ├── php │ │ ├── .tmp │ │ │ └── .htaccess │ │ ├── MySQLStorage.sql │ │ ├── autoload.php │ │ ├── connector.minimal.php-dist │ │ ├── elFinder.class.php │ │ ├── elFinderConnector.class.php │ │ ├── elFinderFlysystemGoogleDriveNetmount.php │ │ ├── elFinderPlugin.php │ │ ├── elFinderSession.php │ │ ├── elFinderSessionInterface.php │ │ ├── elFinderVolumeBox.class.php │ │ ├── elFinderVolumeDriver.class.php │ │ ├── elFinderVolumeDropbox.class.php │ │ ├── elFinderVolumeDropbox2.class.php │ │ ├── elFinderVolumeFTP.class.php │ │ ├── elFinderVolumeGoogleDrive.class.php │ │ ├── elFinderVolumeGroup.class.php │ │ ├── elFinderVolumeLocalFileSystem.class.php │ │ ├── elFinderVolumeMySQL.class.php │ │ ├── elFinderVolumeOneDrive.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 ├── img │ ├── cron.png │ ├── database.png │ ├── dns.png │ ├── email.png │ ├── emailf.png │ ├── filemanager.png │ ├── ftp.png │ ├── sitebuilder.png │ └── subdomain.png ├── ispcfg3.css └── js │ ├── ajax.js │ └── script.js ├── classes └── ispcfg3_class.php ├── elfinder.connector.php ├── functions └── base.php ├── hooks.php ├── ispcfg3.php ├── lang ├── english.php └── spanish.php ├── templates ├── aliasdomains.tpl ├── cron.tpl ├── databases.tpl ├── dns.tpl ├── email-forwarders.tpl ├── emails.tpl ├── error.tpl ├── file-manager.tpl ├── ftp-accounts.tpl ├── login.tpl ├── sitebuilder.tpl ├── subdomains.tpl ├── usage.tpl └── websites.tpl └── views ├── SiteProApiClient.php ├── aliasdomains.php ├── cron.php ├── databases.php ├── dns.php ├── email-forwarders.php ├── emails.php ├── file-manager.php ├── ftp-accounts.php ├── login.php ├── sitebuilder.php ├── subdomains.php ├── usage.php └── websites.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/.gitignore -------------------------------------------------------------------------------- /Ispconfig_files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/Ispconfig_files/README.md -------------------------------------------------------------------------------- /Ispconfig_files/remote.d/cwispy.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/Ispconfig_files/remote.d/cwispy.inc.php -------------------------------------------------------------------------------- /Ispconfig_files/remote.d/version.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/Ispconfig_files/remote.d/version.inc.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/README.md -------------------------------------------------------------------------------- /assets/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/css.css -------------------------------------------------------------------------------- /assets/elfinder/css/elfinder.full.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/css/elfinder.full.css -------------------------------------------------------------------------------- /assets/elfinder/css/elfinder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/css/elfinder.min.css -------------------------------------------------------------------------------- /assets/elfinder/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/css/theme.css -------------------------------------------------------------------------------- /assets/elfinder/files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/elfinder/files/.trash/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/elfinder/img/arrows-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/arrows-active.png -------------------------------------------------------------------------------- /assets/elfinder/img/arrows-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/arrows-normal.png -------------------------------------------------------------------------------- /assets/elfinder/img/crop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/crop.gif -------------------------------------------------------------------------------- /assets/elfinder/img/dialogs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/dialogs.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_aceeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_aceeditor.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_ckeditor.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_codemirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_codemirror.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_creativecloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_creativecloud.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_pixlreditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_pixlreditor.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_pixlrexpress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_pixlrexpress.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_simplemde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_simplemde.png -------------------------------------------------------------------------------- /assets/elfinder/img/edit_tinymce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/edit_tinymce.png -------------------------------------------------------------------------------- /assets/elfinder/img/icons-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/icons-big.png -------------------------------------------------------------------------------- /assets/elfinder/img/icons-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/icons-small.png -------------------------------------------------------------------------------- /assets/elfinder/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/logo.png -------------------------------------------------------------------------------- /assets/elfinder/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/progress.gif -------------------------------------------------------------------------------- /assets/elfinder/img/quicklook-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/quicklook-bg.png -------------------------------------------------------------------------------- /assets/elfinder/img/quicklook-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/quicklook-icons.png -------------------------------------------------------------------------------- /assets/elfinder/img/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/resize.png -------------------------------------------------------------------------------- /assets/elfinder/img/spinner-mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/spinner-mini.gif -------------------------------------------------------------------------------- /assets/elfinder/img/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/toolbar.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_box.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_dropbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_dropbox.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_ftp.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_googledrive.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_local.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_onedrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_onedrive.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_sql.png -------------------------------------------------------------------------------- /assets/elfinder/img/volume_icon_trash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/img/volume_icon_trash.png -------------------------------------------------------------------------------- /assets/elfinder/js/elfinder.full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/elfinder.full.js -------------------------------------------------------------------------------- /assets/elfinder/js/elfinder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/elfinder.min.js -------------------------------------------------------------------------------- /assets/elfinder/js/extras/editors.default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/extras/editors.default.js -------------------------------------------------------------------------------- /assets/elfinder/js/extras/editors.default.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/extras/editors.default.min.js -------------------------------------------------------------------------------- /assets/elfinder/js/extras/encoding-japanese.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/extras/encoding-japanese.min.js -------------------------------------------------------------------------------- /assets/elfinder/js/extras/quicklook.googledocs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/extras/quicklook.googledocs.js -------------------------------------------------------------------------------- /assets/elfinder/js/extras/quicklook.googledocs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/extras/quicklook.googledocs.min.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.LANG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.LANG.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ar.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.bg.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ca.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.cs.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.da.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.de.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.el.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.es.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.fa.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.fallback.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.fo.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.fr.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.he.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.hr.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.hu.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.id.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.it.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.jp.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ko.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.nl.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.no.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.pl.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.pt_BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.pt_BR.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ro.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ru.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.si.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.sk.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.sl.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.sr.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.sv.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.tr.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.ug_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.ug_CN.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.uk.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.vi.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.zh_CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.zh_CN.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/elfinder.zh_TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/elfinder.zh_TW.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/help/cs.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/help/cs.html.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/help/en.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/help/en.html.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/help/jp.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/help/jp.html.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/help/pl.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/help/pl.html.js -------------------------------------------------------------------------------- /assets/elfinder/js/i18n/help/sk.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/i18n/help/sk.html.js -------------------------------------------------------------------------------- /assets/elfinder/js/proxy/elFinderSupportVer1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/js/proxy/elFinderSupportVer1.js -------------------------------------------------------------------------------- /assets/elfinder/php/.tmp/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/.tmp/.htaccess -------------------------------------------------------------------------------- /assets/elfinder/php/MySQLStorage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/MySQLStorage.sql -------------------------------------------------------------------------------- /assets/elfinder/php/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/autoload.php -------------------------------------------------------------------------------- /assets/elfinder/php/connector.minimal.php-dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/connector.minimal.php-dist -------------------------------------------------------------------------------- /assets/elfinder/php/elFinder.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinder.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderConnector.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderConnector.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderFlysystemGoogleDriveNetmount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderFlysystemGoogleDriveNetmount.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderPlugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderSession.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderSessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderSessionInterface.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeBox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeBox.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeDriver.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeDriver.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeDropbox.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeDropbox.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeDropbox2.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeDropbox2.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeFTP.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeFTP.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeGoogleDrive.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeGoogleDrive.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeGroup.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeGroup.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeLocalFileSystem.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeLocalFileSystem.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeMySQL.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeMySQL.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeOneDrive.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeOneDrive.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/elFinderVolumeTrash.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/elFinderVolumeTrash.class.php -------------------------------------------------------------------------------- /assets/elfinder/php/libs/GdBmp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/libs/GdBmp.php -------------------------------------------------------------------------------- /assets/elfinder/php/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/mime.types -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/AutoResize/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/AutoResize/plugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/AutoRotate/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/AutoRotate/plugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/Normalizer/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/Normalizer/plugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/Sanitizer/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/Sanitizer/plugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/Watermark/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/Watermark/logo.png -------------------------------------------------------------------------------- /assets/elfinder/php/plugins/Watermark/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/plugins/Watermark/plugin.php -------------------------------------------------------------------------------- /assets/elfinder/php/resources/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/resources/image.png -------------------------------------------------------------------------------- /assets/elfinder/php/resources/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/php/resources/video.png -------------------------------------------------------------------------------- /assets/elfinder/sounds/rm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/elfinder/sounds/rm.wav -------------------------------------------------------------------------------- /assets/img/cron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/cron.png -------------------------------------------------------------------------------- /assets/img/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/database.png -------------------------------------------------------------------------------- /assets/img/dns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/dns.png -------------------------------------------------------------------------------- /assets/img/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/email.png -------------------------------------------------------------------------------- /assets/img/emailf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/emailf.png -------------------------------------------------------------------------------- /assets/img/filemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/filemanager.png -------------------------------------------------------------------------------- /assets/img/ftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/ftp.png -------------------------------------------------------------------------------- /assets/img/sitebuilder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/sitebuilder.png -------------------------------------------------------------------------------- /assets/img/subdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/img/subdomain.png -------------------------------------------------------------------------------- /assets/ispcfg3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/ispcfg3.css -------------------------------------------------------------------------------- /assets/js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/js/ajax.js -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/assets/js/script.js -------------------------------------------------------------------------------- /classes/ispcfg3_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/classes/ispcfg3_class.php -------------------------------------------------------------------------------- /elfinder.connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/elfinder.connector.php -------------------------------------------------------------------------------- /functions/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/functions/base.php -------------------------------------------------------------------------------- /hooks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/hooks.php -------------------------------------------------------------------------------- /ispcfg3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/ispcfg3.php -------------------------------------------------------------------------------- /lang/english.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/lang/english.php -------------------------------------------------------------------------------- /lang/spanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/lang/spanish.php -------------------------------------------------------------------------------- /templates/aliasdomains.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/aliasdomains.tpl -------------------------------------------------------------------------------- /templates/cron.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/cron.tpl -------------------------------------------------------------------------------- /templates/databases.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/databases.tpl -------------------------------------------------------------------------------- /templates/dns.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/dns.tpl -------------------------------------------------------------------------------- /templates/email-forwarders.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/email-forwarders.tpl -------------------------------------------------------------------------------- /templates/emails.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/emails.tpl -------------------------------------------------------------------------------- /templates/error.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/error.tpl -------------------------------------------------------------------------------- /templates/file-manager.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/file-manager.tpl -------------------------------------------------------------------------------- /templates/ftp-accounts.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/ftp-accounts.tpl -------------------------------------------------------------------------------- /templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/login.tpl -------------------------------------------------------------------------------- /templates/sitebuilder.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/sitebuilder.tpl -------------------------------------------------------------------------------- /templates/subdomains.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/subdomains.tpl -------------------------------------------------------------------------------- /templates/usage.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/usage.tpl -------------------------------------------------------------------------------- /templates/websites.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/templates/websites.tpl -------------------------------------------------------------------------------- /views/SiteProApiClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/SiteProApiClient.php -------------------------------------------------------------------------------- /views/aliasdomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/aliasdomains.php -------------------------------------------------------------------------------- /views/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/cron.php -------------------------------------------------------------------------------- /views/databases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/databases.php -------------------------------------------------------------------------------- /views/dns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/dns.php -------------------------------------------------------------------------------- /views/email-forwarders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/email-forwarders.php -------------------------------------------------------------------------------- /views/emails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/emails.php -------------------------------------------------------------------------------- /views/file-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/file-manager.php -------------------------------------------------------------------------------- /views/ftp-accounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/ftp-accounts.php -------------------------------------------------------------------------------- /views/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/login.php -------------------------------------------------------------------------------- /views/sitebuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/sitebuilder.php -------------------------------------------------------------------------------- /views/subdomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/subdomains.php -------------------------------------------------------------------------------- /views/usage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/usage.php -------------------------------------------------------------------------------- /views/websites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cwispy/ispcfg3/HEAD/views/websites.php --------------------------------------------------------------------------------