Another way to get started is to go to
1.
Download source files from the bottom of the page.
2.
Unpack them and put them in taskdb\
3.
Put the unpacked xataface files in taskdb\xataface
4.
Use this as the contents of the index.php
<?php
require_once 'xataface/public-api.php';
df_init(__FILE__, 'xataface')->display();
5.
Make a taskdb\templates_c folder that is writable so the the system is able to write cached templates there.
6.
Edit the conf.ini with your database credentials.
7.
Edit the [_tables] stanza in the conf.ini as follows:
table_name = "The name you want to appear in your app"
example:
[_tables]
nte_note = "Notes"
nte_about_this_app = "About_this_app"
8.
The app should start when you put the following in your browser address bar and go to it.
localhost\taskdb
Hope this helps.