x00
MVPx00 MVP
Reactions
-
Re: [Solved] I Downloaded The Open Source Of Vanilla But I Can't Install It Any One Help Me
Read the documentation http://vanillaforums.org/docs/installation-requirements http://vanillaforums.org/docs/installation Start with a fresh copy (View Post)3 -
Re: Website not loading, access denied for user 'root'
Not related to your issue, but better not use the the root user for an application. Create a new user then you can grant the privalages that are necessary to the database. It is basic damage limitati… (View Post)2 -
Re: Gdn_Activity Table
yes is is a good idea to purge activities. You wan to keep wall messages in crontab 00 3 * * * mysql -u username -p pass forumdb -e "DELETE FROM GDN_Activity WHERE ActivityTypeID NOT IN ( SELECT… (View Post)5 -
Re: Subqueries and the SQL Builder
if you want to denormalise add a count column, however you normally handle basic relational through JOINS not sub queries. SELECT g.*, COUNT(w.*) AS 'TeamSize' FROM `yarbs_games` AS g LEFT JOIN `yarb… (View Post)2 -
Re: Which PHP files are necessary for public access?
regarding the question it has already been answered.There may be specific exceptions, however on a basic install that is basically what you need to know. MVC simplifies things, it all goes through th… (View Post)2
