Hi Dmitry, Magnolia doesn't have any magic for adapting the memory settings - you just have to adapt the normal jvm settings. The switch you'll want to adapt is the "-Xmx" one - it is setting the max of memory that can be allocated by the jvm and in your case this appears to be too low.
In case you're running the magnolia tomcat bundle, you can find it in /apache-tomcat-<version>/bin/setenv.sh (or bat) - e.g.: export CATALINA_OPTS="$CATALINA_OPTS -XX:MaxPermSize=256m -Xms64M -Xmx512M -Djava.awt.headless=true" The above will set the max memory to 512 MB - adapting it e.g. to -Xmx1024M will allocate twice as much memory. Hope that helps Daniel Ps.: the indication that it's a memory issue should be in your log files (or console) -- Context is everything: http://forum.magnolia-cms.com/forum/thread.html?threadId=5e7ecfd2-fa7f-4a2d-ae4b-903bbe791a53 ---------------------------------------------------------------- For list details, see http://www.magnolia-cms.com/community/mailing-lists.html Alternatively, use our forums: http://forum.magnolia-cms.com/ To unsubscribe, E-mail to: <[email protected]> ----------------------------------------------------------------
