R_J
AdminR_J Admin
-
Re: Best way of override a class in Vanilla Forums
Based on what I can find in some plugins here, I guess you could try to pt the following code in conf/bootstrap.before.php: $tmp = Gdn::factoryOverwrite(true);Gdn::factoryInstall( Gdn::AliasTheme, … (View Post)2 -
Re: Help: How to reset all users avatar into default or nothing.
UPDATE GDN_User SET Photo = REPLACE( Photo, 'http://mysite.com/forum/uploads/./uploads/avatars', 'avatar' ) WHERE Photo LIKE ('http://mysite.com/forum/uploads/./uploads/avata… (View Post)2 -
Re: CDN Linker Plugin
Answering questions here is fun! If not I wouldn't do it. It's only that a) I cannot test RewriteRules since I'm using nginx and not apache and b) I haven't done that anytime befo… (View Post)2 -
Re: Help: How to reset all users avatar into default or nothing.
You were very close: the Photo column is NULL by default. UPDATE GDN_User SET Photo = NULL no WHERE needed. I guess you were trying to convert the old avatars and that's what I would still try i… (View Post)2 -
Re: Does not work @
Don't edit Vanilla files! You will end up with problems that no one will be able to help you with. If you only want to read the code, look at /library/core/functions.general.php getMentions() /l… (View Post)3
