Hi Nant,
This is the error:
Notice: Undefined index: templates in /var/www/vhosts/mysite.com/httpdocs/administrator/components/com_comprofiler/plugin.class.php on line 441
Warning: array_keys() [function.array-keys]: The first argument should be an array in /var/www/vhosts/mysite.com/httpdocs/administrator/components/com_comprofiler/plugin.class.php on line 441
Warning: Invalid argument supplied for foreach() in /var/www/vhosts/mysite.com/httpdocs/administrator/components/com_comprofiler/plugin.class.php on line 441
this is on the line mentioned in the error:
* @return mixed result of function call or NULL if non-existant
*/
function callTemplate( $element, $subClass, $method, $args, $output = 'html' ) {
if ( $output == 'htmledit' ) {
$output = 'html';
}
foreach ( array_keys( $this->_pluginGroups ) as $pluginId ) {
if ( $this->_pluginGroups[$pluginId]->element == $element ) {
return $this->call( $pluginId, $method, 'CB'.$subClass.'View_'. $output . '_' . $element , $args );
}
}
return null;
}
/**
I also increased the php memory limit to 64M as mentioned in your other FAQ article, but that's not the issue here i think.
BEst regards,
Iqualjo