Caylus
✭✭Caylus ✭✭
Reactions
-
Re: Unable to access any module post upgrade to 2.5.1
I had somewhat the same problem. You have to delete /applications/vanilla/controllers/class.settingscontroller.php if you're upgrading from <2.4. https://open.vanillaforums.com/discussion/comment/… (View Post)7 -
Re: Column 'CountComments' cannot be null error in Vanilla Porter
Hey Lament, Whu606's stays valid: I'd try exporting and importing your database via your webhost and not bother with the porter: https://mediatemple.net/community/products/dv/204403864/export-and-imp… (View Post)1 -
Re: Unable to auto-detect API connection
Hey _Mamokin, I created a pull request for the Social Login addon a while ago. https://github.com/oneall/social-login-vanilla-forum/pull/6/files You've got to change $Sender->AddCssFile($this->… (View Post)1 -
Re: HTML tags doesn't appears in the rendered code
Hey Bruno, you can add your custom classes to $this->AllowedClasses in the HtmlAwed plugin! HtmlAwed removes all classes that are not in that list from tags as a security feature. (View Post)2 -
Re: Call to a member function AddCssFile() on null
It actually does, since variables in PHP are case sensitive (only methods are case insensitive): This line defined an argument $sender And this line references a variable $Sender which !== $sender. A… (View Post)2