Memory Hole
Tired of seeing this?
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes)
Open wp-config.php, scroll to the bottom. Where you see this:
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
change it to this:
/** Sets up WordPress vars and included files. */
define('WP_MEMORY_LIMIT', '64M');
require_once(ABSPATH . 'wp-settings.php');