Closed (won't fix)
Project:
Taxonomy Access Control Lite
Version:
5.x-1.3
Component:
Code
Priority:
Critical
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
20 Sep 2008 at 12:05 UTC
Updated:
20 Sep 2008 at 18:44 UTC
Hello,
Whenever I want to make any changes on TAC_lite module, I get the following error:
Fatal error: Allowed memory size of 94371840 bytes exhausted (tried to allocate 25936 bytes) in /home/.../drupal/includes/image.inc on line 326
After this message anonimous users are not able to see any node, till I reset the "node_access" table.
This error also happened when tryint to use Taxonomy Access Control module and seems to be related with "image module" (you may want to see this opened issue)
That's line 326 at image module:
return $open_func($file);
And here's a piece of content:
/**
* GD helper function to create an image resource from a file.
*/
function image_gd_open($file, $extension) {
$extension = str_replace('jpg', 'jpeg', $extension);
$open_func = 'imageCreateFrom'. $extension;
if (!function_exists($open_func)) {
return FALSE;
}
return $open_func($file);
}
Hope someone can help me.
thanks
Comments
Comment #1
c-c-m commentedBy the way, I forgot to add node_access table (both, structure and content):
Comment #2
Dave Cohen commentedWhy do you think this has anything to do with tac_lite? Shouldn't you be submitting an issue to the image module?