after some (much) efforts and investigations I've done some steps forward. first of all I wasn't able to change the error permissions as @sbillard suggested, but I reconsidered that even if I succeded in that task it was like taking care of the symptoms and not of the disease. however:
- as I stated in my previous post the error DIDN'T show while I was logged in
- line 1083 was definitely responsible of the error [i]but[/i] in my class-image.php file (1.4.1.6)
- this was my function, line 1083 being the last one:
` function checkAccess(&$hint=NULL, &$show=NULL) {
$album = $this->getAlbum();
if ($album->isMyItem($this->view_rights)) {
return true;
}
return $album->checkforGuest($hint=NULL, $show=NULL);
}
`
therefore I've checked what if I comment the whole function and everything worked fine, error removed.
then I downloaded the last build and replaced the whole old function checkAccess with the new version.
I did test intensively -as much I could- but site is now running well showing no errors!
Being not a coder I'm aware that some other problem could arise, so my question is: having pointed out which was the problem, do you recommend any other step?