ghjardim/phpdrive
Archived
1
0
Fork
You've already forked phpdrive
0
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%
2023年11月13日 22:12:21 -03:00
data chore: reorganize project structure and enhance security 2023年11月12日 23:51:19 -03:00
includes feat: include logo in index.php 2023年11月13日 09:49:49 -03:00
public_html feat: add 404.php 2023年11月13日 22:12:21 -03:00
LICENSE.txt chore(license): update license to AGPLv3 2023年11月12日 22:32:25 -03:00
README.md docs: clarify development section in README.md 2023年11月13日 11:39:01 -03:00

phpdrive logo

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 by includes/CONFIG.php.