Simple cloud storage solution written in PHP.
This repository has been archived on 2023年12月12日 . You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
- PHP 95.2%
- Hack 2.8%
- CSS 2%
| data | chore: reorganize project structure and enhance security | |
| includes | feat: include logo in index.php | |
| public_html | feat: add 404.php | |
| LICENSE.txt | chore(license): update license to AGPLv3 | |
| README.md | docs: clarify development section in README.md | |
phpdrive
This project aims to create a simple cloud storage solution written in PHP.
It aims to be simple, without JavaScript, and usable in text-based http clients, such as lynx and w3m. Also, it aims to be simple to deploy, not requiring databases: all information is stored in files.
Warning: Please notice that this project is in early development stage. Certain features might be incomplete or subject to changes.
Development
- Deploy using:
php -S 0.0.0.0:8000 -t public_html -d upload_max_filesize=2G -d post_max_size=2G- Note: While we set the file size to
2G, actual control is determined byincludes/CONFIG.php.
- Note: While we set the file size to