Fork of curload from before it switched to user accounts.
Go to file
2023-10-04 21:37:52 +02:00
.gitignore Remove temporary_passwords.txt and passwords.txt from .gitignore since 2023-10-01 16:24:27 +02:00
.htaccess Cleanup, basic README 2023-10-01 17:27:47 +02:00
about.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
about.php.name Cleanup, basic README 2023-10-01 17:27:47 +02:00
admin.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
config.def.ini Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
config.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
COPYING Initial commit 2023-09-28 21:29:21 +02:00
core.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
create.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
files.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
index.css Add 'Your files', allowing users to (if enabled) remove their files 2023-10-02 23:31:42 +02:00
index.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
login.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
README.md Add setup php for creating an admin key 2023-10-01 19:31:37 +02:00
remove-key.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
remove.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
setup.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00
upload.php Use sessions rather than cookies 2023-10-04 21:37:52 +02:00

curload

curload is a simple file uploading site allowing users to upload files by authenticating using a key.

Dependencies

  • php

  • sqlite3

  • Web server (optional, sort of)

  • On Gentoo, you'll need to enable USE flag sqlite for package dev-lang/php in case you're testing locally using php -S.

  • On Debian, you'll need to install the appropriate Apache plugin if you want to use Apache.

Installation

  1. Set up a web server with php and sqlite3
  2. Point it to index.php

When no admin key is set up, you'll be prompted to create a primary admin key. The primary admin key is able to do absolutely everything, while normal admin keys are able to do everything except view and modify other administrators.

Hacking

To hack on curload, you can modify config.ini. This is a configuration file that contains all the default options. You can also add pages. You can do this by creating a PHP script (see about.php for an example) as well as a .name file.

You can modify all of the PHP, but I've tried to keep it sort of user friendly. It is possible to style curload by using CSS classes and IDs. It is also possible to include JavaScript, although none is used by default.

License

GNU Affero General Public License version 3.0. See COPYING for details.