Christoph M. Becker 710992c22f Add more spam words for user notes
Recently, we get an awful lot of spam; let's constrain it.
2022-08-05 18:07:38 +02:00
2021-01-30 13:18:46 -08:00
2021-04-01 20:53:45 +02:00
2021-04-01 19:05:40 +02:00
2017-11-12 07:48:31 +01:00
2012-01-21 18:22:34 -08:00
2003-09-27 15:47:41 +00:00

PHP user management system

Local setup:

# TODO: This is supposed to be submodule, but not actually registered as one.
git clone git@github.com:php/web-shared.git shared

# Create database and users:
CREATE DATABASE phpmasterdb;
CREATE USER 'nobody'@'localhost';
GRANT ALL PRIVILEGES ON phpmasterdb.* TO 'nobody'@'localhost';

# Create tables
mysql -unobody phpmasterdb < users.sql

# Create user test:test
INSERT INTO users (username, svnpasswd, cvsaccess) VALUES ('test', 'd45a6c7dfc5b0dbb3567e28900d47f50', 1);

# Run server (must have mysql ext)
php -S localhost:8000 -d include_path="include/" -derror_reporting="E_ALL&~E_DEPRECATED"
Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:26:16.017Z
Readme 4.5 MiB
Languages
PHP 93.9%
JavaScript 6%