Gossamer Forum
Home : Products : DBMan : Customization :

Re: Stuck...

Quote Reply
Re: Stuck... In reply to
With checkboxes, the easiest (and best, IMNSHO Smile) way is to make a field in your database for each option.

Code:
Apples => [8, 'alpha', 0, 6, 0, '', ''],
Oranges => [9, 'alpha', 0, 7, 0, '', ''],
Pears => [10, 'alpha', 0, 5, 0, '', ''],
and then set up your checkbox fields:

Code:
%db_checkbox_fields = (
Apples => 'Apples',
Oranges => 'Oranges',
Pears => 'Pears'
);
It may seem like a pain to have all of those fields, but you will be better off in the long run.

In Reply To:
i dont want a new pass being made ... i want it too send existing pass
Then you will be compromising the security of your database. Let me see if I can explain.

Passwords are saved to the .pass file in encrypted form. There is no way to unencrypt them. If you save them in unencrypted form, anyone who might have access to your files could read them and log in as admin or anyone else. I wrote a mod that would save the passwords unencrypted and it worked. And then a client of mine had someone log in as admin and do a lot of damage to his database. The only way this person could have logged in was to have read the .pass file.

However, if you want to risk it, I'll rewrite the "insecure" mod for you. (There's some things that need to be updated. I've learned a lot since I wrote that mod! Smile)

I'm glad you like the Configurator. It has saved me a lot of time, both in setting up my own databases and in not having to answer questions from other folks. Wink

JPD
http://www.jpdeni.com/dbman/
Subject Author Views Date
Thread Stuck... MtK 1752 Jul 11, 2000, 1:37 AM
Thread Re: Stuck...
JPDeni 1701 Jul 11, 2000, 3:26 AM
Thread Re: Stuck...
MtK 1691 Jul 11, 2000, 2:11 PM
Thread Re: Stuck...
JPDeni 1695 Jul 11, 2000, 2:27 PM
Thread Re: Stuck...
michaels 1689 Jul 28, 2000, 2:14 PM
Post Re: Stuck...
kellner 1654 Jul 28, 2000, 3:12 PM
Thread Re: Stuck...
JPDeni 1660 Jul 28, 2000, 4:05 PM
Post Re: Stuck...
michaels 1653 Jul 28, 2000, 4:29 PM