├── .gitignore ├── .htaccess ├── README.md ├── admin ├── ajax │ └── index.php ├── index.php └── modals │ ├── backup.php │ ├── comments.php │ ├── dashboard.php │ ├── editfolder.php │ ├── editplan.php │ ├── edituser.php │ ├── files.php │ ├── folders.php │ ├── index.php │ ├── ipinfo.php │ ├── plans.php │ ├── postedit.php │ ├── reports.php │ ├── script.php │ ├── search.php │ ├── settings.php │ ├── sidemenu.php │ ├── siteinfo.php │ ├── statistics.php │ ├── update.php │ └── users.php ├── ajax └── index.php ├── assets ├── audio │ ├── bell-ringing.mp3 │ └── bell-ringing.ogg ├── css │ ├── animate.min.css │ ├── audioplayer.min.css │ ├── bootstrap-checkbox.min.css │ ├── bootstrap-colorselector.min.css │ ├── bootstrap-rtl.min.css │ ├── bootstrap-select.min.css │ ├── bootstrap-tagsinput.css │ ├── bootstrap-toggle.min.css │ ├── famfamfam-flags.min.css │ ├── fontello.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ └── index.php │ ├── images │ │ ├── accesspassword.png │ │ ├── ajax-loader.gif │ │ ├── close.png │ │ ├── copyright.jpg │ │ ├── famfamfam-flags.png │ │ ├── favicon.ico │ │ ├── favicon.png │ │ ├── iconloading.gif │ │ ├── icons.png │ │ ├── index.php │ │ ├── logo.png │ │ ├── logoar.png │ │ ├── mejs-controls.png │ │ ├── mejs-controls.svg │ │ ├── notfound.png │ │ ├── notpublic.png │ │ ├── page-loader.gif │ │ ├── platforms.png │ │ ├── preloader.gif │ │ ├── screenshot.png │ │ └── tiny_grid.png │ ├── index.php │ ├── jquery.growl.css │ ├── mediaelementplayer-legacy.min.css │ ├── mediaelementplayer.min.css │ ├── platforms.min.css │ ├── sticky.min.css │ ├── styles.min.css │ ├── summernote.min.css │ └── themes │ │ ├── aircraft.min.css │ │ ├── bootstrap.min.css │ │ ├── boske.min.css │ │ ├── cerulean.min.css │ │ ├── cirrus.min.css │ │ ├── classic.min.css │ │ ├── cosmo.min.css │ │ ├── cyborg.min.css │ │ ├── darkly.min.css │ │ ├── dropper.min.css │ │ ├── fbootstrap.min.css │ │ ├── flatly.min.css │ │ ├── index.php │ │ ├── journal.min.css │ │ ├── lumen.min.css │ │ ├── paper.min.css │ │ ├── plan.min.css │ │ ├── readable.min.css │ │ ├── sandstone.min.css │ │ ├── sesamo.min.css │ │ ├── simplex.min.css │ │ ├── sketchy.min.css │ │ ├── slate.min.css │ │ ├── united.min.css │ │ ├── whiteplum.min.css │ │ ├── yeti.min.css │ │ └── yummy.min.css ├── fonts │ ├── OpenSans-CondBold.eot │ ├── OpenSans-CondBold.ttf │ ├── OpenSans-CondLight.eot │ ├── OpenSans-CondLight.ttf │ ├── fontello.eot │ ├── fontello.svg │ ├── fontello.ttf │ ├── fontello.woff │ ├── fontello.woff2 │ ├── index.php │ ├── summernote.eot │ ├── summernote.ttf │ └── summernote.woff ├── index.php └── js │ ├── base64.min.js │ ├── bootbox.min.js │ ├── bootstrap-checkbox.min.js │ ├── bootstrap-colorselector.min.js │ ├── bootstrap-maxlength.min.js │ ├── bootstrap-select.min.js │ ├── bootstrap-show-password.min.js │ ├── bootstrap-tagsinput.min.js │ ├── bootstrap-toggle.min.js │ ├── bootstrap.min.js │ ├── chart.min.js │ ├── countup.min.js │ ├── d3.min.js │ ├── datamaps.world.min.js │ ├── es5-shim.min.js │ ├── excanvas.min.js │ ├── exif.min.js │ ├── functions.min.js │ ├── global.min.js │ ├── html5shiv.min.js │ ├── i18n │ ├── defaults-ar_AR.js │ ├── defaults-eu.js │ └── summernote-ar-AR.js │ ├── index.php │ ├── isocodeconverter.min.js │ ├── jquery.bootpag.min.js │ ├── jquery.growl.js │ ├── jquery.min.js │ ├── mediaelement-and-player.min.js │ ├── mediaelement │ ├── mediaelement-flash-audio-ogg.swf │ ├── mediaelement-flash-audio.swf │ ├── mediaelement-flash-video-hls.swf │ ├── mediaelement-flash-video-mdash.swf │ └── mediaelement-flash-video.swf │ ├── respond.min.js │ ├── simpleajaxuploader.min.js │ ├── sticky.min.js │ ├── summernote.min.js │ ├── topojson.min.js │ ├── typeahead.min.js │ └── validator.min.js ├── includes ├── .htaccess ├── config.php ├── connect.php ├── functions.php ├── index.php ├── languages │ ├── ar.php │ ├── en.php │ └── index.php ├── libraries │ ├── animate-config.json │ ├── captcha.php │ ├── cors.php │ ├── countrycodes.php │ ├── downloader.php │ ├── getfavicon.php │ ├── index.php │ ├── languagecodes.php │ ├── mime.types.php │ ├── mimetypes.php │ ├── phpmailer │ │ ├── Exception.php │ │ ├── OAuth.php │ │ ├── PHPMailer.php │ │ ├── POP3.php │ │ ├── SMTP.php │ │ ├── index.php │ │ └── languages │ │ │ ├── phpmailer.lang-am.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-ch.php │ │ │ ├── phpmailer.lang-cs.php │ │ │ ├── phpmailer.lang-da.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hi.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-mg.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nb.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-pt_br.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-rs.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tl.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ ├── sessionprogress.php │ ├── thumbnail.php │ ├── timezones.php │ ├── ua_parser.php │ ├── uploadProgress.php │ └── uploader.php ├── loader.php └── session.php ├── index.php ├── index.png ├── index1.png ├── index2.png ├── index3.png ├── install ├── index.php └── ini.php ├── logs └── .htaccess ├── modals ├── 403.php ├── 404.php ├── about.php ├── api.php ├── authorization.php ├── comments.php ├── contact.php ├── download.php ├── dropzone.php ├── fileinfo.php ├── filepass.php ├── files.php ├── footer.php ├── forgot.php ├── index.php ├── jsvariables.php ├── links.php ├── login.php ├── logo.php ├── logout.php ├── navbar.php ├── new 1.txt ├── plans.php ├── poster.php ├── profile.php ├── register.php ├── reset.php ├── sidemenu.php ├── siteclose.php ├── stats.php ├── totalstats.php ├── upload.php └── uploadresult.php └── uploads ├── .htaccess └── _thumbnail └── .htaccess /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/README.md -------------------------------------------------------------------------------- /admin/ajax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/ajax/index.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/modals/backup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/backup.php -------------------------------------------------------------------------------- /admin/modals/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/comments.php -------------------------------------------------------------------------------- /admin/modals/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/dashboard.php -------------------------------------------------------------------------------- /admin/modals/editfolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/editfolder.php -------------------------------------------------------------------------------- /admin/modals/editplan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/editplan.php -------------------------------------------------------------------------------- /admin/modals/edituser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/edituser.php -------------------------------------------------------------------------------- /admin/modals/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/files.php -------------------------------------------------------------------------------- /admin/modals/folders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/folders.php -------------------------------------------------------------------------------- /admin/modals/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/modals/ipinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/ipinfo.php -------------------------------------------------------------------------------- /admin/modals/plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/plans.php -------------------------------------------------------------------------------- /admin/modals/postedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/postedit.php -------------------------------------------------------------------------------- /admin/modals/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/reports.php -------------------------------------------------------------------------------- /admin/modals/script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/script.php -------------------------------------------------------------------------------- /admin/modals/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/search.php -------------------------------------------------------------------------------- /admin/modals/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/settings.php -------------------------------------------------------------------------------- /admin/modals/sidemenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/sidemenu.php -------------------------------------------------------------------------------- /admin/modals/siteinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/siteinfo.php -------------------------------------------------------------------------------- /admin/modals/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/statistics.php -------------------------------------------------------------------------------- /admin/modals/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/update.php -------------------------------------------------------------------------------- /admin/modals/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/admin/modals/users.php -------------------------------------------------------------------------------- /ajax/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/ajax/index.php -------------------------------------------------------------------------------- /assets/audio/bell-ringing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/audio/bell-ringing.mp3 -------------------------------------------------------------------------------- /assets/audio/bell-ringing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/audio/bell-ringing.ogg -------------------------------------------------------------------------------- /assets/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/animate.min.css -------------------------------------------------------------------------------- /assets/css/audioplayer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/audioplayer.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-checkbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-checkbox.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-colorselector.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-colorselector.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-rtl.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap-tagsinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-tagsinput.css -------------------------------------------------------------------------------- /assets/css/bootstrap-toggle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/bootstrap-toggle.min.css -------------------------------------------------------------------------------- /assets/css/famfamfam-flags.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/famfamfam-flags.min.css -------------------------------------------------------------------------------- /assets/css/fontello.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fontello.min.css -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/css/fonts/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/images/accesspassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/accesspassword.png -------------------------------------------------------------------------------- /assets/css/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/ajax-loader.gif -------------------------------------------------------------------------------- /assets/css/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/close.png -------------------------------------------------------------------------------- /assets/css/images/copyright.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/images/famfamfam-flags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/famfamfam-flags.png -------------------------------------------------------------------------------- /assets/css/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/favicon.ico -------------------------------------------------------------------------------- /assets/css/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/favicon.png -------------------------------------------------------------------------------- /assets/css/images/iconloading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/iconloading.gif -------------------------------------------------------------------------------- /assets/css/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/icons.png -------------------------------------------------------------------------------- /assets/css/images/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/index.php -------------------------------------------------------------------------------- /assets/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/logo.png -------------------------------------------------------------------------------- /assets/css/images/logoar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/logoar.png -------------------------------------------------------------------------------- /assets/css/images/mejs-controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/mejs-controls.png -------------------------------------------------------------------------------- /assets/css/images/mejs-controls.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/mejs-controls.svg -------------------------------------------------------------------------------- /assets/css/images/notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/notfound.png -------------------------------------------------------------------------------- /assets/css/images/notpublic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/notpublic.png -------------------------------------------------------------------------------- /assets/css/images/page-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/page-loader.gif -------------------------------------------------------------------------------- /assets/css/images/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/platforms.png -------------------------------------------------------------------------------- /assets/css/images/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/preloader.gif -------------------------------------------------------------------------------- /assets/css/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/screenshot.png -------------------------------------------------------------------------------- /assets/css/images/tiny_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/images/tiny_grid.png -------------------------------------------------------------------------------- /assets/css/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/jquery.growl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/jquery.growl.css -------------------------------------------------------------------------------- /assets/css/mediaelementplayer-legacy.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/mediaelementplayer-legacy.min.css -------------------------------------------------------------------------------- /assets/css/mediaelementplayer.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/mediaelementplayer.min.css -------------------------------------------------------------------------------- /assets/css/platforms.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/platforms.min.css -------------------------------------------------------------------------------- /assets/css/sticky.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/sticky.min.css -------------------------------------------------------------------------------- /assets/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/styles.min.css -------------------------------------------------------------------------------- /assets/css/summernote.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/summernote.min.css -------------------------------------------------------------------------------- /assets/css/themes/aircraft.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/aircraft.min.css -------------------------------------------------------------------------------- /assets/css/themes/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/themes/boske.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/boske.min.css -------------------------------------------------------------------------------- /assets/css/themes/cerulean.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/cerulean.min.css -------------------------------------------------------------------------------- /assets/css/themes/cirrus.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/cirrus.min.css -------------------------------------------------------------------------------- /assets/css/themes/classic.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/classic.min.css -------------------------------------------------------------------------------- /assets/css/themes/cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/cosmo.min.css -------------------------------------------------------------------------------- /assets/css/themes/cyborg.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/cyborg.min.css -------------------------------------------------------------------------------- /assets/css/themes/darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/darkly.min.css -------------------------------------------------------------------------------- /assets/css/themes/dropper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/dropper.min.css -------------------------------------------------------------------------------- /assets/css/themes/fbootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/fbootstrap.min.css -------------------------------------------------------------------------------- /assets/css/themes/flatly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/flatly.min.css -------------------------------------------------------------------------------- /assets/css/themes/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/css/themes/journal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/journal.min.css -------------------------------------------------------------------------------- /assets/css/themes/lumen.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/lumen.min.css -------------------------------------------------------------------------------- /assets/css/themes/paper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/paper.min.css -------------------------------------------------------------------------------- /assets/css/themes/plan.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/plan.min.css -------------------------------------------------------------------------------- /assets/css/themes/readable.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/readable.min.css -------------------------------------------------------------------------------- /assets/css/themes/sandstone.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/sandstone.min.css -------------------------------------------------------------------------------- /assets/css/themes/sesamo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/sesamo.min.css -------------------------------------------------------------------------------- /assets/css/themes/simplex.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/simplex.min.css -------------------------------------------------------------------------------- /assets/css/themes/sketchy.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/sketchy.min.css -------------------------------------------------------------------------------- /assets/css/themes/slate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/slate.min.css -------------------------------------------------------------------------------- /assets/css/themes/united.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/united.min.css -------------------------------------------------------------------------------- /assets/css/themes/whiteplum.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/whiteplum.min.css -------------------------------------------------------------------------------- /assets/css/themes/yeti.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/yeti.min.css -------------------------------------------------------------------------------- /assets/css/themes/yummy.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/css/themes/yummy.min.css -------------------------------------------------------------------------------- /assets/fonts/OpenSans-CondBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/OpenSans-CondBold.eot -------------------------------------------------------------------------------- /assets/fonts/OpenSans-CondBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/OpenSans-CondBold.ttf -------------------------------------------------------------------------------- /assets/fonts/OpenSans-CondLight.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/OpenSans-CondLight.eot -------------------------------------------------------------------------------- /assets/fonts/OpenSans-CondLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/OpenSans-CondLight.ttf -------------------------------------------------------------------------------- /assets/fonts/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/fontello.eot -------------------------------------------------------------------------------- /assets/fonts/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/fontello.svg -------------------------------------------------------------------------------- /assets/fonts/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/fontello.ttf -------------------------------------------------------------------------------- /assets/fonts/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/fontello.woff -------------------------------------------------------------------------------- /assets/fonts/fontello.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/fontello.woff2 -------------------------------------------------------------------------------- /assets/fonts/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/fonts/summernote.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/summernote.eot -------------------------------------------------------------------------------- /assets/fonts/summernote.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/summernote.ttf -------------------------------------------------------------------------------- /assets/fonts/summernote.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/fonts/summernote.woff -------------------------------------------------------------------------------- /assets/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/base64.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/base64.min.js -------------------------------------------------------------------------------- /assets/js/bootbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootbox.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-checkbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-checkbox.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-colorselector.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-colorselector.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-maxlength.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-maxlength.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-select.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-show-password.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-show-password.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-tagsinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-tagsinput.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap-toggle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap-toggle.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/chart.min.js -------------------------------------------------------------------------------- /assets/js/countup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/countup.min.js -------------------------------------------------------------------------------- /assets/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/d3.min.js -------------------------------------------------------------------------------- /assets/js/datamaps.world.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/datamaps.world.min.js -------------------------------------------------------------------------------- /assets/js/es5-shim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/es5-shim.min.js -------------------------------------------------------------------------------- /assets/js/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/excanvas.min.js -------------------------------------------------------------------------------- /assets/js/exif.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/exif.min.js -------------------------------------------------------------------------------- /assets/js/functions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/functions.min.js -------------------------------------------------------------------------------- /assets/js/global.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/global.min.js -------------------------------------------------------------------------------- /assets/js/html5shiv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/html5shiv.min.js -------------------------------------------------------------------------------- /assets/js/i18n/defaults-ar_AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/i18n/defaults-ar_AR.js -------------------------------------------------------------------------------- /assets/js/i18n/defaults-eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/i18n/defaults-eu.js -------------------------------------------------------------------------------- /assets/js/i18n/summernote-ar-AR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/i18n/summernote-ar-AR.js -------------------------------------------------------------------------------- /assets/js/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/js/isocodeconverter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/isocodeconverter.min.js -------------------------------------------------------------------------------- /assets/js/jquery.bootpag.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/jquery.bootpag.min.js -------------------------------------------------------------------------------- /assets/js/jquery.growl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/jquery.growl.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/mediaelement-and-player.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement-and-player.min.js -------------------------------------------------------------------------------- /assets/js/mediaelement/mediaelement-flash-audio-ogg.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement/mediaelement-flash-audio-ogg.swf -------------------------------------------------------------------------------- /assets/js/mediaelement/mediaelement-flash-audio.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement/mediaelement-flash-audio.swf -------------------------------------------------------------------------------- /assets/js/mediaelement/mediaelement-flash-video-hls.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement/mediaelement-flash-video-hls.swf -------------------------------------------------------------------------------- /assets/js/mediaelement/mediaelement-flash-video-mdash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement/mediaelement-flash-video-mdash.swf -------------------------------------------------------------------------------- /assets/js/mediaelement/mediaelement-flash-video.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/mediaelement/mediaelement-flash-video.swf -------------------------------------------------------------------------------- /assets/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/respond.min.js -------------------------------------------------------------------------------- /assets/js/simpleajaxuploader.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/simpleajaxuploader.min.js -------------------------------------------------------------------------------- /assets/js/sticky.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/sticky.min.js -------------------------------------------------------------------------------- /assets/js/summernote.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/summernote.min.js -------------------------------------------------------------------------------- /assets/js/topojson.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/topojson.min.js -------------------------------------------------------------------------------- /assets/js/typeahead.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/typeahead.min.js -------------------------------------------------------------------------------- /assets/js/validator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/assets/js/validator.min.js -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/.htaccess -------------------------------------------------------------------------------- /includes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/config.php -------------------------------------------------------------------------------- /includes/connect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/connect.php -------------------------------------------------------------------------------- /includes/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/functions.php -------------------------------------------------------------------------------- /includes/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/languages/ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/languages/ar.php -------------------------------------------------------------------------------- /includes/languages/en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/languages/en.php -------------------------------------------------------------------------------- /includes/languages/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/libraries/animate-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/animate-config.json -------------------------------------------------------------------------------- /includes/libraries/captcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/captcha.php -------------------------------------------------------------------------------- /includes/libraries/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/cors.php -------------------------------------------------------------------------------- /includes/libraries/countrycodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/countrycodes.php -------------------------------------------------------------------------------- /includes/libraries/downloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/downloader.php -------------------------------------------------------------------------------- /includes/libraries/getfavicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/getfavicon.php -------------------------------------------------------------------------------- /includes/libraries/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /includes/libraries/languagecodes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/languagecodes.php -------------------------------------------------------------------------------- /includes/libraries/mime.types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/mime.types.php -------------------------------------------------------------------------------- /includes/libraries/mimetypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/mimetypes.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/Exception.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/OAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/OAuth.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/PHPMailer.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/POP3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/POP3.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/SMTP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/SMTP.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/index.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-am.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-am.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ar.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-az.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-az.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ba.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ba.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-be.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-be.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-bg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-bg.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ch.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-cs.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-da.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-da.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-de.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-el.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-el.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-eo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-eo.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-es.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-et.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-fa.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-fi.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-gl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-gl.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-he.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-he.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-hi.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-hr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-hr.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-id.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-it.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ka.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ka.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ko.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ko.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-lt.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-lv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-lv.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-mg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-mg.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ms.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-nb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-nb.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-nl.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-pt.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-pt_br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-pt_br.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ro.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-rs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-rs.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-sk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-sk.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-sl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-sl.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-sv.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-tl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-tl.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-uk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-uk.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-vi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-vi.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-zh.php -------------------------------------------------------------------------------- /includes/libraries/phpmailer/languages/phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/phpmailer/languages/phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /includes/libraries/sessionprogress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/sessionprogress.php -------------------------------------------------------------------------------- /includes/libraries/thumbnail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/thumbnail.php -------------------------------------------------------------------------------- /includes/libraries/timezones.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/timezones.php -------------------------------------------------------------------------------- /includes/libraries/ua_parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/ua_parser.php -------------------------------------------------------------------------------- /includes/libraries/uploadProgress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/uploadProgress.php -------------------------------------------------------------------------------- /includes/libraries/uploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/libraries/uploader.php -------------------------------------------------------------------------------- /includes/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/loader.php -------------------------------------------------------------------------------- /includes/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/includes/session.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/index.php -------------------------------------------------------------------------------- /index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/index.png -------------------------------------------------------------------------------- /index1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/index1.png -------------------------------------------------------------------------------- /index2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/index2.png -------------------------------------------------------------------------------- /index3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/index3.png -------------------------------------------------------------------------------- /install/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/install/index.php -------------------------------------------------------------------------------- /install/ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/install/ini.php -------------------------------------------------------------------------------- /logs/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/logs/.htaccess -------------------------------------------------------------------------------- /modals/403.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/403.php -------------------------------------------------------------------------------- /modals/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/404.php -------------------------------------------------------------------------------- /modals/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/about.php -------------------------------------------------------------------------------- /modals/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/api.php -------------------------------------------------------------------------------- /modals/authorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/authorization.php -------------------------------------------------------------------------------- /modals/comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/comments.php -------------------------------------------------------------------------------- /modals/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/contact.php -------------------------------------------------------------------------------- /modals/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/download.php -------------------------------------------------------------------------------- /modals/dropzone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/dropzone.php -------------------------------------------------------------------------------- /modals/fileinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/fileinfo.php -------------------------------------------------------------------------------- /modals/filepass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/filepass.php -------------------------------------------------------------------------------- /modals/files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/files.php -------------------------------------------------------------------------------- /modals/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/footer.php -------------------------------------------------------------------------------- /modals/forgot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/forgot.php -------------------------------------------------------------------------------- /modals/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modals/jsvariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/jsvariables.php -------------------------------------------------------------------------------- /modals/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/links.php -------------------------------------------------------------------------------- /modals/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/login.php -------------------------------------------------------------------------------- /modals/logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/logo.php -------------------------------------------------------------------------------- /modals/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/logout.php -------------------------------------------------------------------------------- /modals/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/navbar.php -------------------------------------------------------------------------------- /modals/new 1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/new 1.txt -------------------------------------------------------------------------------- /modals/plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/plans.php -------------------------------------------------------------------------------- /modals/poster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/poster.php -------------------------------------------------------------------------------- /modals/profile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/profile.php -------------------------------------------------------------------------------- /modals/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/register.php -------------------------------------------------------------------------------- /modals/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/reset.php -------------------------------------------------------------------------------- /modals/sidemenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/sidemenu.php -------------------------------------------------------------------------------- /modals/siteclose.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/siteclose.php -------------------------------------------------------------------------------- /modals/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/stats.php -------------------------------------------------------------------------------- /modals/totalstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/totalstats.php -------------------------------------------------------------------------------- /modals/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/upload.php -------------------------------------------------------------------------------- /modals/uploadresult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/modals/uploadresult.php -------------------------------------------------------------------------------- /uploads/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JubaDZ/UploadFilesBasic/HEAD/uploads/.htaccess -------------------------------------------------------------------------------- /uploads/_thumbnail/.htaccess: -------------------------------------------------------------------------------- 1 | Allow from all --------------------------------------------------------------------------------