InterLinked1 / lbbs

Lightweight BBS For Linux - Bulletin Board System server software
GNU General Public License v2.0
35 stars 4 forks source link

modify new user prompts #4

Closed lostfile1 closed 1 year ago

lostfile1 commented 1 year ago

i would like to change the new user prompts to only ask for IRL name birthday town and city

lostfile1 commented 1 year ago

my bbs server should be up now try sshing into it using port 224

lostfile1 commented 1 year ago

himm it keeps crashing as soon as i log out of it i will send you a log file of that when i get a chance

InterLinked1 commented 1 year ago

If it's crashing, I need a backtrace: you can get one by running scripts/bbs_dumper postdump and attaching the output (sanitizing as needed). You'll want to ensure there's actually a core file in your running directory before you run that.

lostfile1 commented 1 year ago

./bbs_dumper.sh: line 18: gdb: command not found

InterLinked1 commented 1 year ago

You'll need to install gdb first: apt-get install gdb

lostfile1 commented 1 year ago

got it

lostfile1 commented 1 year ago

it also says i dont have the core file /var/lib/lbbs/scripts/core: No such file or directory.

InterLinked1 commented 1 year ago

You need to run the script from the directory in which the BBS was started (e.g. /usr/src/lbbs).

Also make sure you start with the -g option, e.g. lbbs -gc.

If you can't find the core file and it's easy to reproduce the issue, you can also start the BBS again and reproduce; make sure not to change directories, and there should be a core file in your current directory.

InterLinked1 commented 1 year ago

You should be able to disable all the fields you mentioned except for email, which is still required.

You'll need to modify the database schema, which previously required certain columns to be non-NULL:

ALTER TABLE bbs.users MODIFY COLUMN phone varchar(512) NULL, MODIFY COLUMN zip varchar(512) NULL, MODIFY COLUMN gender char(1) NULL;