Memory issues
-
I am currently testing this on a localhost test site running PHP 7.1, but I’m having problems with running out of memory.
When I try to create a quote, I get this message:
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 1485568136 bytes) in ~/wp-content/plugins/sliced-invoices/admin/includes/sliced-admin-logs.php on line 393
And when I accept a quote, which should then turn into an invoice, I get this:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 1485568056 bytes) in ~/wp-content/plugins/sliced-invoices/admin/includes/sliced-admin-logs.php on line 393
I am not having any such problems with any other plugins. My
wp-config.php
file includes the following settings:define('WP_MEMORY_LIMIT' , '128M' ); define( 'WP_MAX_MEMORY_LIMIT' , '512M' );
That should be more than enough.
I don’t know if it’s related, but the Query Monitor plugin is also reporting this PHP Notice:
Undefined index: post wp-content/plugins/sliced-invoices/admin/includes/sliced-admin-metaboxes.php:692
- The topic ‘Memory issues’ is closed to new replies.