I installed the Upload [GH] and thought I had everything working. I made 1 tweek and messed things up. I've tried undoing whatever I had done but it's still not fixed and is messed up more. Now when I click submit, I get the following error:
Notice: Undefined index: _PLUGINS_ in E:\www\www.ravenbands.org\administrator\components\com_chronoforms\form_actions\custom_code\custom_code.php(18) : eval()'d code on line 3
Any clue as to what I might have done?
Tami
Notice: Undefined index: _PLUGINS_ in E:\www\www.ravenbands.org\administrator\components\com_chronoforms\form_actions\custom_code\custom_code.php(18) : eval()'d code on line 3
Any clue as to what I might have done?
Tami
Hi Tami,
It's showing the error coming from line 3 of one of your Custom Code blocks.
It could be that my action doesn't set the code in the __PLUGINS__ array in the same way that Max's does. Maybe he added that in a later release - or I missed it.
Bob
It's showing the error coming from line 3 of one of your Custom Code blocks.
It could be that my action doesn't set the code in the __PLUGINS__ array in the same way that Max's does. Maybe he added that in a later release - or I missed it.
Bob
Hi Ravens,
you may place your code inside a PHP check like:
you may place your code inside a PHP check like:
<?php
if(isset($form->data['_PLUGINS_'])){
//code here
}
?>
This topic is locked and no more replies can be posted.