I get [08] Error Message
I get "Error during query execution"
Please open the file include/config.php, look for the variable
named $debug_mode. Set it to 1, so that you'll be able to see
what the error is. If you still cannot figure it out request for support.
I can't see the edit/delete record icons in the results view
You did not set a primary key in the table, so you are able to see the
records but DaDaBIK cannot edit/delete them.
I get "your database is empty" error, why?
You first have to set up a database and then you can install DaDaBIK.
Page not showing after Insert/Update.
Open include/config.php and make sure the variable
$site_url is correct (normally you can leave it empty).
(E.g http://www.yoursite.com/dadabik_folder/)
I can't login into DaDaBIK
Before asking for support double check that the parameters $site_url and $site_path in include/config.php are correct. 99% of the time login problems are due to mistakes in those parameters. Normally, you can leave those parameters empty.
If for some reason PHP sessions are not working correctly the login will also be affected; after having checked $site_url and $site_path run the script http://www.yoursite.com/dadabik_folder/check_sessions.php and reload several times the page: you should see a counter that increments by 1 every time you reload the page, otherwise sessions are not working.
Finally, if in your database you have a lot of tables and/or a lot of table fields, you might experience a memory shortage problem: for example if your memory limit is 128M (you can see your memory limit via phpinfo()) , you can try to increase it to 256M or 512M adding this line:
ini_set('memory_limit', '256M');
as the first line in the /include/common_start.php file.