Posted by Arie
2014-06-16

Hi Tom,

Thanks for the response. I located the file and the array and made the suggested changes but get this error:

Critical Error : Page Not Found ( poll/_def/ )

My original array:
$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=>'poll/_def'
);

Changed array:
$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_DEFAULT_PAGESET=>'poll/_def'
);

I have tried with the other items of the original array also included but get the same error.

What I am I doing wrong?

Thanks
Posted by Tom
2014-06-16

You don't need /_def, so the result should look like

$spec_sys_base = array(
XA_CLASS=>'cls_sys_base',
XA_DEFAULT_PAGESET=>'poll'
);