User Feedback Archive : June 2017

Posted by Sergey
2017-06-29

Thank you for fast reply on my previous question. I think you don't understand me because of my bad english. Your address book have record create date/time, record edit date/time and who did it ... Read More
Posted by Tom
2017-06-30

If you want to display the username in the search page, open web/staff/asc/df.fl.addresses.inc.php and find the following array:
... Read More
Posted by Oscar
2017-06-29

I get this error if I get more then 250 Colunm

Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0

can you help me
Posted by Tom
2017-06-30

Hi,

>I get this error if I get more then 250 Colunm

You really added 250 columns to the table??
That's an unusal modification.

>Warning: Unknown: Input variables exceeded 1000. To increase the ... Read More
Posted by Karl
2017-06-29

Tom Thanks for the prompt previous answer.

I have two "Drop Down" selections (see below) but in the db table it's showing "S1001" instead of the value "Mr"

This was created using the form builder ... Read More
Posted by Tom
2017-06-30

To put "Mr" into the database, please edit it like this:
define( 'SEL_TITLE', "
Mr=Mr
Mrs=Mrs
Miss=Miss
Ms=Ms
Rev=Rev
" );
Posted by Sergey
2017-06-28

Hello dear Tom. I need to create a checkbox with date/time parameters like parameters that has in record "last date edit/date create". For example, when i checked the checkbox the script write ... Read More
Posted by Tom
2017-06-29

I think you can achieve it with ajax programming but sorry it's beyond the scope of this feedback box.
Posted by Karl
2017-06-28

Hi Tom (firstly thanks great script - needs donate button)

1. Staff ID in Search Results = is it possible to include the staff id & username in the address table.
2. After login user gets "add new ... Read More
Posted by Tom
2017-06-29

>1. Staff ID in Search Results = is it possible to include the staff id & username in the address table.

Sorry, currently there isn't an easy way to join two tables.

>2. After login user gets ... Read More
Posted by Mark
2017-06-25

| zip | varchar(10) | NO | PRI | | |
mysql> select zip from geocode limit 10;
+-------+
| zip |
+-------+
| 00501 |
| 00544 |
| 00601 |
| 00602 |
| 00603 |
| 00604 |
| 00605 | ... Read More
Posted by Tom
2017-06-26

Please don't use CVPrimaryKey class. It's an integer class
XA_CLASS=>'CVPrimaryKey',
If the zip code is really the primary key of the table, please don't do it. Keep it as an integer.
Posted by mike
2017-06-22

hello, it wouldd be real nice if you could add a field ,where the user can upload a file (photo,txt etc.)
Regards
Posted by Tom
2017-06-23

Actually, an add-on for file upload exists. It's a commercial product, though.
http://www.phpkobo.com/fileup-addon
Posted by Michael P
2017-06-17

I mean non-editable for non-admin?
Posted by Tom
2017-06-19

>I mean non-editable for non-admin?

Then just disabling the save button is the easiest way. It would be a lot of work to make all fields non-editable.
Posted by Michael
2017-06-15

Sorry to bother you again Tom.

Can you explain a way to make an input field non editable. After I insert a value in an input field is there a way to make it so the field cannot be edited.
Thanks
Posted by Tom
2017-06-16

>After I insert a value in an input field is there a way to make it so the field cannot be edited.

You mean non-editable for both admin and non-admin? If yes, there is no quick solution. You can ... Read More
Posted by Dave
2017-06-13

Follow the comments left by other members on how to disable the delete button to staff, but cant seem to get this to work, any help would be great, thanks
Posted by Tom
2017-06-14

Maybe this article will help you.
http://www.phpkobo.com/article--m2413
Posted by Mark
2017-06-10

Maybe you would consider supporting a procedure or function the same way you support tables. I person would define the procedure or function with in field list and out field list. Then they would be ... Read More
Posted by Tom
2017-06-11

Thanks for suggestion! Address book script is an old script. The first version was written 7 years ago and have been used for a single table database since then. Many things happened to other series ... Read More
Posted by Mark
2017-06-09

I have zipcode as a key.
The values display without leading zeroes.
Is there an easy fix to be added to the def file?
Posted by Tom
2017-06-11

>I have zipcode as a key.
>The values display without leading zeroes.
>Is there an easy fix to be added to the def file?

I think you stored zip code in a integer field.
If you put it in a text ... Read More
Posted by Dave
2017-06-09

I am trying to change one of the text fields to a data picker, having difficulty, can anyone help please ?

Thanks
Posted by Tom
2017-06-11

>I am trying to change one of the text fields to a data picker, having difficulty, can anyone help please ?

Hi, this article will help you:
http://www.phpkobo.com/article--m2033
Posted by Mark
2017-06-09

I managed to add a new menu item and a new table.
I'm wondering how to implement a result set based on the join of two tables?

What would help is a file the explained the meaning of all your little ... Read More
Posted by Tom
2017-06-11

>I'm wondering how to implement a result set based on the join of two tables?

Sorry, there isn't a turn key solution for it because this was designed for a single table database.

>what they ... Read More
Posted by Michael P
2017-06-07

Hi Tom. I have made numerous modifications to your software and it runs perfectly.
My situation is this: I have a front end that grabs an input value from the user. The user is then directed to my ... Read More
Posted by Tom
2017-06-08

To initialize a form field, open web/form/app/cls_ps_(table-name).inc.php
Find the lines shown below:
... Read More
Posted by Jan Wiekens
2017-06-03

Hi,
It's a very nice scripting. But after a few minutes it seems like that i'm automatic logout from the adressbook? Is it possible to set this option to be in the adressbook for more time without ... Read More
Posted by Tom
2017-06-05

>Is it possible to set this option to be in the adressbook for more time without logging out?

Hi, The script doesn't set the timeout period of php session. It's determined by your php.ini file. So ... Read More