MyBB Community Forums

Full Version: Question about security questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way i can get more than 3 answers on 1 security question? that'd be awesome
^ IIRC, setting up a number of answers for a security question should be already possible.
(each answer is to be set on a separate line at the forum admin panel)
Oh ok i see. but since my security questions are long and they act as a code i cant add more than 3.
So if i'm correct the problem here is the length of my answer. Currently i cant add more than 150 characters and since one of my codes is 48 characters long i can only add 3 of them which counts to 147 characters. Is there any way i can increase the length of the answers (if all that makes sense)
i also have some thing like that on my forum. if any finds a possible way please respond
characters limit may be increased through modifying database field.
SQL query can be like below
ALTER TABLE mybb_questions MODIFY COLUMN answer varchar(900) NOT NULL default '';

[MyBB SQL queries guidance]
thanks that worked, with this i am making the maximum characters "900" right
^ yes. there is no direct setting to modify its value. so workaround is to modify through database.