x00
MVPx00 MVP
Reactions
-
Re: SQL/Gdn_Model: Get previous and next entry WHERE...
Would it be a better idea to store the link when the mention is saved, each comment has a permalink? You could put the link in some kind of attribute on client side in the mention link, and make sure… (View Post)1 -
Re: Why is my SQL "expanded"?
Try to keep model/sql out of view or most controller logic. Views are for presentation not for heavy logic, instead put it in Data. that is also important, becuase Data is used in other DeliveryMetho… (View Post)2 -
Re: Why is my SQL "expanded"?
The actual event is BeforeAddConversation the only other simular event is BeforeConversationMeta First Gdn::Database()->SQL(), Gdn::SQL() and $Sender->SQLare equivalent in this context. If you … (View Post)4 -
Re: Cloudflare,caching and Increasing Page load speed
If you want to use cloud flare you may want to use something like this http://vanillaforums.org/addon/cloudflaresupport-plugin to forward the IP, for moderation etc. You may need to update the CloudF… (View Post)2 -
Re: SQL/Gdn_Model: Get previous and next entry WHERE...
first take a look a look at models how you extend an use Gdn_Model LIMIT 1 isn't necessarily inefficient, query engine should optimize that. @businessdad is the person to ask regarding SQL matters. $… (View Post)1