Hello, I am setting up a Wordpress application on Webfaction. The Wordpress notice me that the WP Memory Limit now is 40 MB, and said "We recommend setting memory to at least 64MB." I opened the file "wp-settings.php" and found this: // Set initial default constants including WP_MEMORY_LIMIT, WP_MAX_MEMORY_LIMIT, WP_DEBUG, WP_CONTENT_DIR and WP_CACHE. wp_initial_constants(); how should I increase the memory to 64MB or more? thank you! asked 19 Jun '14, 12:56 fish |
The best way is to add the following to php.ini per our Documentation. You may have to create the php.ini first. memory_limit = 64M answered 19 Jun '14, 13:03 aaront ♦♦ |