Voxelmanip Forums
ROllerozxa ROllerozxa
Site Admin
Posted on 2022-06-06 08:44 Link | ID: 4
Acmlmboard is the worst forum software ever created, being cursed from the very start with bad coding practices, terrible code quality and security. So there's probably a lot of bugs hidden inbetween the cracks here, but I cannot find them without your help!

One thing I feel needs to be done is rewriting the announcements system. Right now announcement threads are thrown into the void and in general it's just a mess that also makes newthread.php unnecessarily complex. I'd like for it to instead fetch from a defined announcement forum and show the latest thread as a link on the index page, rather than how it is now.
luatic luatic
Posted on 2022-06-16 22:45 Link | ID: 18
Double escape bug in the footer breadcrumb:
ROllerozxa ROllerozxa
Site Admin
Posted on 2022-06-16 22:49 Link | ID: 19
already fixed, just hadn't pulled in the changes yet
Compa Compa
please just get off the internet already jamie
Posted on 2023-06-03 10:14 Link | ID: 632
I only just noticed this but the footer font size is smaller than everything else, is that intentional?
ROllerozxa ROllerozxa
Site Admin
Posted on 2023-06-03 15:28 Link | ID: 633
I only just noticed this but the footer font size is smaller than everything else, is that intentional?
If you check the CSS it is indeed intentional, .footer's font size is set to 0.85em. It's to make two lines fit better in the same height as the "powered by voxelmanip" badge.

Small font size vs. regular font size:
Compa Compa
please just get off the internet already jamie
Posted on 2023-06-03 15:56 (edited 2023-06-03 15:57) Link | ID: 634
Oh fair enough then. CSS alignment is... painful, to say the least.

I would have spoke over on landon's board but blarg.
ROllerozxa ROllerozxa
Site Admin
Posted on 2023-06-03 16:13 (edited 2023-06-03 17:32) Link | ID: 637
I would have spoke over on landon's board but blarg.
well I forgot the password to that account anyways... >_> and unfortunately there are still no PM capabilities in Cirrusboard.

(btw I'd be up for chatting a bit on Discord if you'd like, just send me a friend request)
Compa Compa
please just get off the internet already jamie
Posted on 2023-06-03 17:36 (edited 2023-06-03 17:46) Link | ID: 638
Oh alright lol... sure it wasn't a blank password

As for PM functionality, I guess here's a basic schema:

privconvs
--id-- int(11) not null auto_increment
--title-- varchar(128)
--uid-- int(11)
--recipients-- varchar(128)
--initial-- int(11) not null


privconvs_read
--uid-- int(11) not null
--pmsg-- int(11) not null


privconvs2
--id-- int(11) not null auto_increment
--uid-- int(11) not null
--pid-- int(11) not null
--deleted-- tinyint(2) not null default '0'
--deletedby-- int(11) not null
--reason-- varchar(256) not null
--text-- mediumtext not null


Feel free to expand on this as you wish. Support for mood avatars and disabling post layout/smilies/etc would be neat too.