x00
MVPx00 MVP
Reactions
-
Re: how to add 2 links to a piece of code which is actually in me.php
You have a hook FlyoutMenu It is much better to use hooks rather then view overrides becuase of updates. Create a themehook file (search for examples) and put this method in your class. public functi… (View Post)3 -
Re: I want to stop users from being able to use usernames with spaces
depends what characters you will allow. $Configuration['Garden']['User']['ValidationRegex'] = '[A-Za-z0-9\-_]'; Allows alphanumeric plus underscore an dash but no spaces. You can adjust the length $C… (View Post)1 -
Re: Outgoing Email, SMTP setup and CRAM-MD5
with SSL/TLS there is no need for encrypted passwords as it is not sent over plain text. (View Post)1 -
Re: Need help regenerating old 2012-07-06 sql dump file into new 2.2 version sql file.
The dump needs to creates the tables (if you didn't select that option when making the dump you made a mistake). You should insert into a new database. (View Post)1 -
Re: No Captcha ReCaptcha 0.1.6b breaks registration of V 2.2
There is no update for this but I have submitted a pull request https://github.com/vanilla/vanilla/issues/3117 workaround would be to edit library/vendors/recaptcha/functions.recaptchalib.php and put… (View Post)7