businessdad
MVPHackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
businessdad MVP
Reactions
-
Re: Strings or Integers for Storing Types in Database
Personally, I go for integers every time I can, mainly because strings gave me too many headaches in the past. Case-sensitive systems and typos are always around the corner, and you can bet anything … (View Post)1 -
Re: Getting the irritating "502 bad gateway" error occasionally
This error has nothing to do with Vanilla. It's an Nginx error, which often occurs when you have more connections that the server is configured to handle. (View Post)2 -
Re: Questions about the GDN_Session table
Yes, it's definitely possible. You would have to do the following: * Implement your own session class, inheriting from Gdn_Session. * Rewrite all the public methods that store anything in the MySQL d… (View Post)3 -
Re: If someone wrote a clear and concise steps Github what to do and how to use it would beGreat
I would like to add that there is another interesting strategy, which is the one we use: http://scottchacon.com/2011/08/31/github-flow.html. We adopted it because we found it easier to follow and man… (View Post)1 -
Re: Cardinal sins of Vanilla plugin development
That's an excellent explanation. In fact, we added two columns to the User table because we use them to establish relationships, while we rely on SaveAttribute() for any non-relational user custom se… (View Post)2