Name Date Size #Lines LOC

..28-Sep-2023-

.phan/H30-Jan-2021-

entry/H01-Apr-2021-

fetch/H01-Apr-2021-

images/H11-Dec-2019-

include/H05-Aug-2022-

mail/H11-Dec-2019-

manage/H01-Apr-2021-

network/status/H11-Dec-2019-

scripts/H29-Jun-2020-

vendor/michelf/php-markdown-extra/H11-Dec-2019-

.gitignoreH A D11-Dec-201961 65

.gitmodulesH A D29-Mar-202177 43

README.mdH A D01-Apr-2021679 2317

event.sqlH A D11-Dec-2019685 2724

favicon.icoH A D11-Dec-2019822

fbsd_upgrade.txtH A D11-Dec-20191.6 KiB5633

forgot.phpH A D02-Apr-20214.3 KiB119107

github-webhook.phpH A D02-Apr-202112.2 KiB395333

index.phpH A D11-Dec-201943 32

login.phpH A D11-Dec-2019446 2115

note.sqlH A D01-Apr-20211.5 KiB4325

robots.txtH A D11-Dec-201926 32

users.sqlH A D01-Apr-20212.7 KiB7041

README.md

1PHP user management system
2==========================
3
4Local setup:
5
6```shell
7# TODO: This is supposed to be submodule, but not actually registered as one.
8git clone git@github.com:php/web-shared.git shared
9
10# Create database and users:
11CREATE DATABASE phpmasterdb;
12CREATE USER 'nobody'@'localhost';
13GRANT ALL PRIVILEGES ON phpmasterdb.* TO 'nobody'@'localhost';
14
15# Create tables
16mysql -unobody phpmasterdb < users.sql
17
18# Create user test:test
19INSERT INTO users (username, svnpasswd, cvsaccess) VALUES ('test', 'd45a6c7dfc5b0dbb3567e28900d47f50', 1);
20
21# Run server (must have mysql ext)
22php -S localhost:8000 -d include_path="include/" -derror_reporting="E_ALL&~E_DEPRECATED"
23```