Slddev / php-filehoster

A file hoster made with PHP and HTML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PHP File Hoster

Demo: https://cdn.sappy.ga/ (Down currently.)

Contact me at Discord (Sappy#8123).

How to use

  1. Download the pre-compiled package here.
  2. Upload files to webserver.
  3. Execute this database query:
CREATE TABLE users (
   id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
   username VARCHAR(50) NOT NULL UNIQUE,
   password VARCHAR(255) NOT NULL,
   created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
  1. Set database info in config.php
  2. Test it.

Notes

  • Use PHP 7.4 for best compatibility.
  • To change size limits and other settings open upload.php, iupload.php, and pupload.php
  • Do not remove the credits.
  • Immediately register as "default"

About

A file hoster made with PHP and HTML.

License:GNU General Public License v3.0


Languages

Language:PHP 89.4%Language:HTML 10.6%