1

Topic: Hello...and i have a small problem

great software, we are falling in love with it here

but i have a small snag

my boss asked me to rename Proteins to Antibodies

which i did, and modefied config.php

and everything works (we can add, copy, delete)
exept when we try to look at DETAILS for an entry
we get this error

[05] Error: you are attemping to manage a restricted table. Please go to the administration home page to let the table be used. It is also possible that the table is a users table, as defined in config.php, to which only administrators have access.

what did i do wrong, and how can i fix it

thanks you for your time

2 (edited by testly 2007-11-18 03:03:09)

Re: Hello...and i have a small problem

To have 'antibody' appear instead of 'protein'. just changing the first two terms in config.php is enough:

$modules_array = ...
'protein'=>array('Antibody','Antibodies'...

If you change the MySQL table name too, 'from 'proteins' to 'antibodies', you will get that error. One may around that is to:

1. change the name of the MySQL table 'dadabik_proteins' to 'dadabik_antibodies'

2. change the table name to 'antibodies', at the top of the code in the file modules/proteins.php

3. rename modules/proteins.php to antibodies.php

3

Re: Hello...and i have a small problem

thank you