I'm getting the following error when I try to adminster the 'modules' section. It's content is fairly clear, but when can I do to rectify it?
*Fatal error*: Allowed memory size of 8388608 bytes exhausted (tried to allocate 11520 bytes) in * /home/gilgongo/html/trowe/html/onthecusp/modules/upload.module* on line *141 *
Thanks, Tim
On 14-Dec-2005, at 9:28 AM, Tim Rowe wrote:
I'm getting the following error when I try to adminster the 'modules' section. It's content is fairly clear, but when can I do to rectify it?
You will need to increase the maximum amount of memory that PHP is allowed to use. This is specified by the line
memory_limit = 8M
in your php.ini file, or other configuration files (.htaccess may allow you to change this value also)
Try changing this to say 12M and see if that works.
Cheers, Djun
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 11520 bytes) in /home/gilgongo/html/trowe/html/ onthecusp/modules/upload.module on line 141
Thanks, Tim
On 12/14/05, puregin puregin@puregin.org wrote:
This is specified by the line
memory_limit = 8M
in your php.ini file
Presumably I'll have to get the server admin guy to change this (you do mean PHP on the server, don't you?)
, or other configuration files (.htaccess may
allow you to change this value also)
How would I express that in my .htaccess file?
Cheers, Tim
in .htaccess, you can write
php_value memory_limit 12M
HTH, Djun
On 14-Dec-2005, at 12:31 PM, Tim Rowe wrote:
On 12/14/05, puregin puregin@puregin.org wrote:
This is specified by the line
memory_limit = 8M
in your php.ini file
Presumably I'll have to get the server admin guy to change this (you do mean PHP on the server, don't you?)
, or other configuration files (.htaccess may allow you to change this value also)
How would I express that in my .htaccess file?
Cheers, Tim
-- [ Drupal support list | http://lists.drupal.org/ ]
Fingers crossed, this seems to have done the trick!
Thanks Djun
On 12/15/05, puregin puregin@puregin.org wrote:
in .htaccess, you can write
php_value memory_limit 12M
HTH, Djun
On 14-Dec-2005, at 12:31 PM, Tim Rowe wrote:
On 12/14/05, puregin puregin@puregin.org wrote:
This is specified by the line
memory_limit = 8M
in your php.ini file
Presumably I'll have to get the server admin guy to change this (you do mean PHP on the server, don't you?)
, or other configuration files (.htaccess may allow you to change this value also)
How would I express that in my .htaccess file?
Cheers, Tim
-- [ Drupal support list | http://lists.drupal.org/ ]
-- [ Drupal support list | http://lists.drupal.org/ ]
-- onthecusp.org.uk/ where two become one
Yay! glad you got it sorted out. If you get more memory errors, you may need to increase this amount.
Djun
On 14-Dec-2005, at 11:32 PM, Tim Rowe wrote:
Fingers crossed, this seems to have done the trick!
Thanks Djun
On 12/15/05, puregin <puregin@puregin.org > wrote:in .htaccess, you can write
php_value memory_limit 12M
HTH, Djun
Hello Tim,
You probably have too many modules enabled and Drupal is running out of memory. Here is the book page about this, with some tips about trying to boost your allocated memory for php:
-Brady
Tim Rowe wrote:
I'm getting the following error when I try to adminster the 'modules' section. It's content is fairly clear, but when can I do to rectify it?
*Fatal error*: Allowed memory size of 8388608 bytes exhausted (tried to allocate 11520 bytes) in */home/gilgongo/html/trowe/html/onthecusp/modules/upload.module* on line *141*
Thanks, Tim
Hi Brady
On 12/15/05, Brady Jarvis grohk@code0range.net wrote:
Hello Tim,
You probably have too many modules enabled
I suspect that's the case :)
Many thanks for the pointer.
Tim