mirror of
https://github.com/php/web-master.git
synced 2026-03-24 07:42:20 +01:00
master
Recently, we get an awful lot of spam; let's constrain it.
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
Languages
PHP
93.9%
JavaScript
6%