User Feedback Archive : July 2017

Posted by Ajit Sharma
2017-07-12

Please help me

I want to change form lable name and want to view more option in admin dashboard
Posted by Tom
2017-07-13

>I want to change form lable name

You can change labels in this file:
web/codelib/cfg/res.eng.app.inc.php
Posted by Dave
2017-07-09

Is there anyway i can place a button on the address information page that allows me to duplicate all the fields and submits it has a new record/address giving it a new ID ?

Thanks
Posted by Tom
2017-07-09

Sorry, it's not implemented. it sounds useful, though.
Posted by Norm
2017-07-07

Thanks Tom for the reply.

Since encrypting a password field is fairly common, it would be great if when a person initially generates (derive) the files for an individual's address book, that the ... Read More
Posted by Tom
2017-07-09

If it's the staff table, then the EncryptPassword function in web/staff/app/cls_ps_addresses.inc.php does encryption. But it won't do anything for you because you want to encrypt a field in a ... Read More
Posted by Ken Anklovitch
2017-07-06

Even when I click on About or Logoff it kicks me back out to the Login page. In other words I can login the first time properly but once I try to do anything I get kicked back out.

Thanks Tom
Posted by Tom
2017-07-06

Here is my theory. There is an error in your select configuration file and the script couldn't start the session properly. That's why you get kicked out. Remove the content from the select ... Read More
Posted by angelo
2017-07-06

Hello, congratulations to the script .... can you just delete the administrator? What is the difference between administrator and staff?
Posted by Tom
2017-07-06

>What is the difference between administrator and staff?

Administrators can access the staff table while non-admin can't. That's the only difference.
Posted by Ken Anklovitch
2017-07-05

Thanks Tom, my drop down is working but now I have a very perplexing problem. When ever I do a search or try to add or edit a new record it kicks me back out to the login in page asking for my user ... Read More
Posted by Tom
2017-07-06

OK, I'll reply to another post of yours.
Posted by Norm
2017-07-05

I should have added in my previous request, the the password filed I'm referring to, is one I've created for the Members. I'd like to encrypt these somehow.

While poking around the various php ... Read More
Posted by Tom
2017-07-06

"cls_password_encrypt" could be used for the buit-in staff table but cannot be used for the one you created. I assume you are going to write code to authenticate for your Member table, right?. Then ... Read More
Posted by Ken Anklovitch
2017-07-04

Hello Tom
I have the following code

CONFIG.SELECTION.INC

define( 'SEL_CONTACT_TYPE', "
C=Customer
S=Supplier
F=Friend
O=Other
" );


DF.FL.CONTACTS.INC

'contact_type'=>array( ... Read More
Posted by Tom
2017-07-05

I think CONFIG.SELECTION.INC is not being referenced in common.inc.php in the same folder. Check common.inc.php of the original script, which you know is working.
Posted by Sharan
2017-07-04

Hi Tom,
Need some custom form with hidden fields & Date input and edit/update above fields in admin Panel.
Scenario:
Customer submits product service form.
Tracking issues, updating status whether ... Read More
Posted by Tom
2017-07-05

You can replace <?php echo $hm->Zb('rs:def:field-name'); ?> with a hidden field like <input type="hidden" name="field-name" value="..."/>
Posted by Sergey
2017-07-04

Thank you Tom for answer, but i find another good choice for me in... web/codelib/sys/CVField.inc.php i find:

function &BuildHtmlTag( &$msg )

and add this code:


if ( $this->Get(XA_INPUT_TYPE) != ... Read More
Posted by Tom
2017-07-05

OK, that's great!
Posted by Sarban
2017-07-04

Hi
I've installed your script and haven't been able to get the email working
Posted by Tom
2017-07-05

You can check tbl_genlog with phpMyAdmin. The table contains mail error messages if any.
Posted by Sergey
2017-07-04

Sorry dear Tom. But when i change in codelib/cfg/config.options.inc.php from 90 to 1:
the script logging me out after 1 minute when i do nothing.. sorry for my bad english
Posted by Tom
2017-07-05

No, I think you are confused with something else.
Posted by Lennox
2017-07-04

Can I run your code without necessarily installing it on another website?
Posted by Tom
2017-07-05

Hi,

>Can I run your code without necessarily installing it on another website?

It's possible if you exactly copy the database and script.
Posted by Sergey
2017-07-02

Sorry for disturb you dear Tom)) Please tell me how can i edit size, image and so on of "save/cancel" button in tpl.table_name.detail.inc.php. Many thankx to you!
Posted by Tom
2017-07-04

You can use browser's native buttons so you can change the appearance with css.
To do so, open web/codelib/sys/CHtmlMacro.inc.php in a text editor. Find the following line:
... Read More
Posted by Sergey
2017-07-01

Dear Jan, you can change logout time by opening codelib/cfg/config.options.inc.php and do change in array:

//-- Specifies the time length to keep the log
define( 'SYS_KEEP_LOG_PERIOD', 90 );

90 - ... Read More
Posted by Tom
2017-07-04

Hi, SYS_KEEP_LOG_PERIOD has nothing to do with sesstion timeout. It's for debugging only.
Posted by Sergey
2017-07-01

No i don't want to display username in search page)))) I have another questions about how i can add types to input field like "number" or "tel" or another... for example <input type=number ..... ... Read More
Posted by Tom
2017-07-04

To change the type attribute to "password", add ", ZB_ATTR, array( "type"=>"password" )"
For example, here is the last_name field:
<?php echo $hm->Zb('rs:def:last_name'); ?>
Add ZB_ATTR like this:
... Read More