Posted by Dmitry
2014-08-23

how to get access to search without login / password
Posted by Tom
2014-08-24

>how to get access to search without login / password

To remove the login feature, open web/staff/app/cls_sys_base.inc.php, and find $spec_sys_base array. It looks like this:
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_AUTH=>true,
XA_DEFAULT_PAGESET=>'frame',
XA_FRAME_FIELDSET=>'staff',
XA_FRAME_FIELDSET_ID=>'staff_id',
XA_START_PAGE=>'(--your-table-name--)/_def'
);
( Note (--your-table-name--) varies from a script to another. )
Next, replace $spec_sys_base with the following code:
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_DEFAULT_PAGESET=>'(--your-table-name--)',
);
Note (--your-table-name--) should be the same as (--your-table-name--) in the first snippet.
Suppose your table name is "contacts", then the result will be
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_DEFAULT_PAGESET=>'contacts',
);