Gossamer Forum
Home : Products : DBMan : Customization :

Array problem

Quote Reply
Array problem
I'm setting up the software and have added the fields how I want them yet when I auto-generate the form it includes crazy stuff like ARRAY(0x816a350): for a field name mixed in with the actual field names. Any ideas how to get rid of these?
Quote Reply
Re: Array problem In reply to
Not without seeing your .cfg file. Please copy your .cfg file to a web-accessible directory (one where you would place .html files) and rename it to default_cfg.txt. Then come back here and tell me where I can take a look at it.


------------------
JPD






Quote Reply
Re: Array problem In reply to
www.eriqnliz.com/default_cfg.txt
Quote Reply
Re: Array problem In reply to
One problem I see is

Code:
carclubmember> [13, 'alpha', 0, 1, 0, '', ''],

It should be

Code:
carclubmember => [13, 'alpha', 0, 1, 0, '', ''],

I'm not real sure about having a space as your $db_delim character. It would probably be better to have something else.

You're also going to have problems with

Code:
$auth_user_field = 9;

From the look of your .cfg file, it should be

Code:
$auth_user_field = 0;



------------------
JPD






Quote Reply
Re: Array problem In reply to
that did it, thank you.