A file sharing website for uploading and managing files written in PHP.
- A web server (developped with Apache, you will find a .htaccess file), make sure you have your "rewrite engine" on
- PHP>=7.0
- MySQL server
- First of all, install the website with these commands
git clone https://github.com/JamesMcAvoy/File-sharing-website.git composer install
- Change the parameters in the config.json file and in the index.php file (in the public folder) as you want.
Since you cannot change the
upload_max_filesize
parameter directly in the config file/script, you have to be sure that the value of"uploadMaxSize"
is smaller thanupload_max_filesize
on your php.ini file (by default 2MB). - Add a public and a private recaptcha key.
- Then, run
schema.sql
into your MySQL database.
- Per account upload limit
- Files are hashed to detect identical files. A blob is created for every file uploaded, if two identical files are uploaded, the file created in the database will link to the same blob.
- File caching from database
- Progress bar when file uploading
- API for uploading, deleting, and more, files (see below)
-
POST
/api/upload
Upload a file
Content-type : multipart/form-data
Parameters :- file : your file to upload
- apikey : your apikey
-
GET
/api/getUploads
Return a list of files uploaded
Parameters :- offset : the index to get your files
- A cookie header named from your config.json with your API key
Example : /api/getUploads?offset=1
-
GET
/api/getInfos
Return infos on user
Parameter :- A cookie header named from your config.json with your API key
-
GET
/api/getInfosFile
Return infos on a file passed as parameter Parameters :- filename
- A cookie header named from your config.json with your API key
Example : /api/getInfosFile?filename=0x9pH.png
- Admin page
- Delete auto files
- Mark as important your files
- Reset API key/password
- Search for a file