|
You need to edit your wp-config.php file...
add this line: @ini_set("memory_limit","16M"); right after the line: define ('WPLANG', ''); and above where it says /* That's all, stop editing! Happy blogging. */
so it looks like this...
define ('WPLANG', '');
@ini_set("memory_limit","16M");
/* That's all, stop editing! Happy blogging. */
|