Hi,
[list=a]There's a bug in the Email Verification Sender Action: description and fix are in this post
Fix is to replace this code
There's a Params Fatal error that is fixed in this post
There's a bug in the Menu installer. See here for the fix.
There's an Email error that refers to _remove.
Fix is here [/list:o]
Bob
[list=a]
Notice: Undefined index: action in R:\xampp\htdocs\joomla1.5k\administrator\components\com_chronoforms\form_actions\email_verification_response\email_verification_response.php on line 19
Fix is to replace this code
//save the data to db
if ( $_GET['action'] == 'verify' ) {
if(isset($_GET['hash']) && !empty($_GET['hash'])){
with this around line 18 //save the data to db
$action =& JRequest::getString('action', '', 'get');
if ( $action == 'verify' ) {
$hash = & JRequest::getString('hash', '', 'get');
if( $hash ){
Fatal error: Call to undefined method CfactionEmail::_remove() in /home/content/b/u/e/buenavista77/html/libraries/joomla/filter/filterinput.php on line 172
Fix is here
Bob
This topic is locked and no more replies can be posted.