You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
larsemil edited this page Nov 8, 2012
·
2 revisions
To install ddEventz on your local machine do the following:
Grab the lastest version from git:
git://github.com/Daladevelop/ddEventz.git
In the ddEventz folder just created you can now find the project. For ddEventz to work you need a working mysql-server and a database created for it. After that is done copy settings-example.php to settings.php and fill in your details:
DEFINE('DBUSER', 'your db user');
DEFINE('DBPASSWORD', 'the password for your database');
DEFINE('DBHOST', 'localhost');
DEFINE('DBDATABASE','yourdb');
`
When this is done you should be able to rock and roll. Some plugins needs tokens and this might not be fully functional yet, if thats the case, try to get them and then also put them in the settings.php as its not pushed to github.
Tables should be created automaticly.
NOTICE FOR DEVS
If you add more tables to the database that is needed make sure to update the db.class.php as well so that it will automaticly creat the table upon running for the first time after pulling the code.