• Resolved timstiffler

    (@timstiffler)


    I have a client’s website with a fairly large table on it. When you search from the search bar on any of the web pages (except when you are actually in the table) you get the following error:

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 72 bytes) in /home/timothy0418/public_html/wordpress/wp-content/themes/Nimble/epanel/custom_functions.php on line 181

    What do I need to do to fix this?
    The wed site is http://www.theremnanttrust.com/wordpress/

    Thanks! OH BTW – LOVE the plugin!!!

    https://ww.wp.xz.cn/plugins/tablepress/

Viewing 1 replies (of 1 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    The problem here is that the PHP Memory limit is reached during the request. To fix that, please try increasing that PHP memory limit on the server, by increasing the value of the WP_MEMORY_LIMIT constant in the wp-config.php file, e.g. to 512M, via the instructions from https://codex.ww.wp.xz.cn/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Alternatively, you could turn off TablePress’s integration into the WordPress search, by adding this line to the theme’s “functions.php” file:

    add_filter( 'tablepress_wp_search_integration', '__return_false' );

    Regards,
    Tobias

Viewing 1 replies (of 1 total)

The topic ‘Fatal error: Allowed memory size’ is closed to new replies.