Still trying to install

B

Bob

Guest
I can not get this script installed.

After running install.php I get error messages.
These errors say there is a problem with db_function.php and gen_function.php

I then check the mysql server and find a new table has been generated in my database but it is named dadabik_address not address as I specified in config.php

Can anyone help me?
I am sure I have entered $host,$user,$pass,$db_name and $table_name correctly.

Bob
 
H

holli

Guest
I had the same problem. It wasn't working because I didn't create the initial table and put all of the fields in it before installing. Dadabik will only create the 'internal table' with the fields that are needed in it.

After I figured that out, it still created the internal table with the name of my table and the name of what I specified for the internal table... here's the part of my config.php file





// select main table name
$table_name = "test"; // the table you want to manage with DaDaBIK, e.g. my_tab

//////////////////////////////////////////////////// please specify at least the above parameters

// select internal table name
$table_internal_name = "design".$table_name; // you can leave this option as is




and it created the internal table as designtest instead of design. I don't really mind now that I've got the script working though, I just thought I'd throw that out there in case it might help you out.
 
E

Eugenio

Guest
Bob wrote:
>
> I can not get this script installed.
>
> After running install.php I get error messages.
> These errors say there is a problem with db_function.php and
> gen_function.php
>
> I then check the mysql server and find a new table has been
> generated in my database but it is named dadabik_address not
> address as I specified in config.php


That's correct.
Please check for case sensitivity, a user had your problem and solve it:

http://dadabik.sourceforge.net/forum/read.php?f=1&i=265&t=264

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