You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Pk11 f6d22bca83
Show file sizes
2 years ago
.gitignore Add .gitignore 3 years ago
LICENSE Create README, LICENSE, example vars.php 3 years ago
README.md Create README, LICENSE, example vars.php 3 years ago
favicon.ico Add favicon 2 years ago
index.php Show file sizes 2 years ago
robots.txt block robots 2 years ago
rss.php 3 years ago
vars.php.example Create README, LICENSE, example vars.php 3 years ago

README.md

BBS.ピケ.コム

this is a silly little BBS page I've thrown together out of a desite to have something I can use to get images from practically anything to a modern computer. it's designed as an imageboard in the style of ふたは☆チャンネル/4chan, since I find that structure is remakably practical while being so minimalist you don't even need names to follow a conversation.

hosting

  1. install:
    • PHP (I use 7.3.31)
    • PostgreSQL (I use 11.14)
    • ffmpeg (I use 4.1.8)
    • exiftool (I use 11.16)
  2. clone this repo, git clone https://git.xn--rck9c.xn--tckwe/pk11/bbs.git
  3. copy vars.php.example to vars.php
  4. edit vars.php as explained in the file
    • ensure that your image and thumb folders exist
  5. create the following table in the configured database:
    CREATE TABLE posts (
        post_id INT GENERATED ALWAYS AS IDENTITY PRIMARY KEY,
        post_time TIMESTAMPTZ NOT NULL DEFAULT NOW(),
        user_id VARCHAR(40),
        name VARCHAR(256),
        trip VARCHAR(10),
        email VARCHAR(256),
        comment VARCHAR(2048),
        img VARCHAR(256)
    );