Sorry, Waffle was not able to connect to your database. You have provided the following database connection details in your config.ini file:
username = root password = ****** hostname = localhost database = alsterkind_main
Please confirm that the alsterkind_main database exists, and that the root user has access to it ( SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, FILE, INDEX, ALTER, CREATE TEMPORARY TABLES ). Once you have created/configured your database you can select from either of the following options.
If you just want to see Waffle running on your server, provide your MySQL connection information below and we will install a demonstration site for you:
If you want Waffle to really be functional, you will need to modify the config.ini file to have your proper database connection settings and then create the minimum tables required for Waffle. Your config file is located here:
/var/customers/webs/Alsterkind/public_html/main/
There are two SQL scripts you run to get the system up. A minimum install can be created with this SQL script:
/var/customers/webs/Alsterkind/public_html/main/waffle/sql/min.sql
An example site (with data) can be installed with this script:
/var/customers/webs/Alsterkind/public_html/main/waffle/sql/demo.sql
Each of the scripts can be imported using the MySQL command-line tool, for example:
mysql -u root -p -h localhost \ alsterkind_main < "/var/customers/webs/Alsterkind/public_html/main/waffle/sql/min.sql"
Have fun!