Thanks Lunabyte. That's good to know. And I agree. I'm a bit stunned that I only get 8M but I'm trying to see if they'll increase my allowance.
What hosting service have people found generally works well with mu? What are the traps for young players to look out for? Certainly no one seems to advertise memory allowance!
Also, for others with memory problems I've posted some excerpts from other helpful posts below. (Didn't help me unfortunately but I'm sure will be of help to others.)
From: http://wordpress.org/support/topic/82717
just add this line in your .htaccess file (you add using file manager )
php_value memory_limit 0M
it will work better
NOTE:0=ZERO
From http://drupal.org/node/29268
Depending on your host, this can be done in a number of places with the most likely being php.ini or htaccess depending on your hosting situation.
Add for example:
• memory_limit = 12M to your php.ini file (recommended, if you have access)
• ini_set('memory_limit', '12M'); to your sites/default/settings.php file
• php_value memory_limit 12M to your .htaccess file in the Drupal root
You will need to experiment with the value that is right for you.