Hi,
The code at line 1095 is
PHP Code:
function trigger_error($error_msg, $error_type = E_USER_WARNING)
{
trigger_error("Smarty error: $error_msg", $error_type);
}
It just throws an error when the trigger_error function is called. I searched for the error that it was throwing and found out that on line number 1591
PHP Code:
if (!$params['quiet']) {
$this->trigger_error('unable to read resource: "' . $params['resource_name'] . '"');
}
It was in the function PHP Code:
function _fetch_resource_info(&$params){
This error is generated when $_return is empty.
See the function i mentioned above and you will understand what im talking about.
Some information that smarty uses is missing ...
and do give the permissions too.
Hope it is helpful !!!
Bookmarks