i want to present an imageboard for some free style class project, but am a n00b. i never set up the database right and i cant find any specific instructions. the best place to ask is an imageboard, how do i set up the database/tables/columns(?) for fikaba to work right. and yes, i will let all of you destroy the imageboard the same time my peers use it. which is a week from nowMarked for deletion (Old)
can't give you a step-by-step walk through since i haven't used it but:-enable the mysqli extention in ur php.ini-install mariadb-create a database user in mariadb-create a database in mariadb-configure fikaba's configuration file (set tables names, etc)-run imgboard.php (which creates the tables)
I made this for you OP, because I love you. <3(And because I will never ignore an opportunity to poke around imageboard scripts )
A SAINT
>>134091>>134105thank you loads, and i appreciate the help and help image. when i try to post i get this error: Unknown column 'ip' in 'field list'any idea what to do for it ?
this is what it looks like
>>134124looks like you have set BANTABLE in config.php to an existing table with a different schema? drop that table then visit imgboard.php, and the table should be created with the correct schema for you automatically.
thanks! i will let you know if there is anymore problems. this thread will expire before i present it so i will mak a thread then
>>134124https://github.com/mxrnx/fikaba/blob/master/docs/migrate.md this probably fixes it if it happens again.use YOURDATABASE;alter table YOURPOSTTABLE add ip text;alter table YOURPOSTTABLE add id text;alter table YOURPOSTTABLE add fname text;
use YOURDATABASE;alter table YOURPOSTTABLE add ip text;alter table YOURPOSTTABLE add id text;alter table YOURPOSTTABLE add fname text;