• Resolved Hawaii Loves Art

    (@hawaii-loves-art)


    opened the wp-config file and there is not all that much in there. what seems to be missing are advanced options based on what I read on codex page about wp-config.

    things like define( ‘WP_MEMORY_LIMIT’, ’96M’ ); and similar. Looked in PHP.ini and it’s not in there either.

    so where is it?

Viewing 3 replies - 1 through 3 (of 3 total)
  • There are many items that you can add to wp-config that aren’t there by default – many of which are listed in the Codex at https://codex.www.ads-software.com/Editing_wp-config.php.

    Generally speaking, you can add these anywhere in wp-config, as long as they’re above this line:

    /* That’s all, stop editing! Happy blogging. */

    Hey try these steps to solve your issue

    1. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M try 64M:
    memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)

    2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 64M

    3. Try adding this line to your wp-config.php file:
    Increasing memory allocated to PHP
    define(‘WP_MEMORY_LIMIT’, ’64M’);

    If above steps doesn’t solve your issue then you need to
    4. Talk to your host.

    Here is some extra detailed if do look at this may be it could help
    https://premium.wpmudev.org/blog/increase-memory-limit/

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘missing wp-config information?’ is closed to new replies.