error

B

bob

Guest
I'm pretty new to php, mysql and databases in general, but i have been able to create a database using sqlyog and am getting this page error. I cannot find this in the forums. Thank you very much.

---------------------------------------------------
It is impossible to run DaDaBIK, possible reasons:
- no tables installed or
- you have decided to exclude all the tables from the DaDaBIK interface.

Please go tho the administration interface.
----------------------------------------

http://www.my.com/my_dadabik/index.php

..running:php 4.1.2 and mysql 3.23.39
 
P

PLMresearch

Guest
You need to:

a. ensure that you've set the config files correctly (e.g. server url, db name and password, etc.)

b. install the tables via the admin interface (within the admin.php file)

Hope this helps.

(Latest version of DaDaBIK when this message was posted: 2.2.1)
 
B

bob

Guest
DaDaBIK 2.2.1 - Administration
Error during query execution.

Thanks for your answer. I'll get this yet.
Everythings seems to be set right, now this error. Don't give up on me!!
Thanks you.
bob
 
B

bob

Guest
With debugging on and sql error messages, I get this one, to be more specific.
-----------------------------------------------------------------------------------------
DaDaBIK 2.2.1 - Administration
Error during query execution.
DROP TABLE IF EXISTS dadabik_table_list
MySQL server said: Access denied for user: 'nobody@localhost' (Using password: NO)
-----------------------------------------------------------------------------------------
config.php

// display the main sql statements (insert/search/delete/update) for debugging (0/1);
$display_sql = 1;

// display all the sql statements and the MySQL error messages in case of DB error for debugging (0/1);
$debug_mode = 1;

Thank you.
bob
 
E

Eugenio

Guest
bob wrote:

> With debugging on and sql error messages, I get this one, to
> be more specific.
>
> -----------------------------------------------------------------------------------------
> DaDaBIK 2.2.1 - Administration
> Error during query execution.
> DROP TABLE IF EXISTS dadabik_table_list
> MySQL server said: Access denied for user: 'nobody@localhost'
> (Using password: NO)
>
> -----------------------------------------------------------------------------------------
> config.php
>
> // display the main sql statements
> (insert/search/delete/update) for debugging (0/1);
> $display_sql = 1;
>
> // display all the sql statements and the MySQL error
> messages in case of DB error for debugging (0/1);
> $debug_mode = 1;

Probably your db settings in config.php are not correct.

(Latest version of DaDaBIK when this message was posted: 2.2.1)
 
Top