Thanks Grafix. Obelix - you can increase your PHP memory limit by editing the following line in your php.ini file:
memory_limit = 8M
Increase the 8M to 16M or whatever value you desire to give yourself more memory. That should help prevent the Fatal error: out of dynamic memory errors from recurring.
You can also increase the default upload limit on files from 2MB by editing the following line:
upload_max_filesize = 2M
You'll need to restart Apache to have changes to php.ini take effect. Note that Apache is restarted by default during several server actions, including the creation of a new account.
If you don't know how to access your php.ini file, you can try using SSH, and loging in via Putty. Log in as user root. Once logged in, type the following at the command prompt:
vi /usr/local/lib/php.ini
Type the following to find the php.ini line addressing your memory limit:
/memory_limit
Once you find the line, press the i key on your keyboard to switch to insert mode. This will let you modify the memory value.
Once you're done, type :wq to save your changes and exit.
If you don't have access to php.ini (ie. are on a shared server), you can try modifying the memory value via your .htaccess file. Add the following line:
php_value memory_limit 48M
In this case we've allocated 48MB of memory. Increase/ decrease this value as necessary.