Fatal error, out of memory problem

Avatar
  • Answered
Hi! We're having problems in our server/Magento.
We've read and tried to fix this very long but without any luck.
Our php.ini looks like this, any idea someone?

Problems can be for some clients to get in on site, while some at the same time can get in.

; This file is for CGI/FastCGI installations.
; Try copying it to php5.ini, if it doesn't work

; adjust memory limit

memory_limit = 512M

max_execution_time = 18000

; disable magic quotes for php request vars

magic_quotes_gpc = off

; disable automatic session start
; before autoload was initialized

flag session.auto_start = off

; enable resulting html compression

zlib.output_compression = off

; disable user agent verification to not break multiple image upload

suhosin.session.cryptua = off

; turn off compatibility with PHP4 when dealing with objects

zend.ze1_compatibility_mode = off

; PHP for some reason ignores this setting in system php.ini
; and disables mcrypt if this line is missing in local php.ini

extension=mcrypt.so

apc.filters = "-*test\.php"

post_max_size = 30M
Avatar
Scott
Hello, You may still need to increase the memory_limit size higher than 512M. Also, be sure that your php.ini is recursive, otherwise it will only work in the folder that is is located in while the rest of your code will use the server default php.ini, which may have a lower memory_limit set. Kindest Regards, Scott M