A recent error that occured when opening up one of my WordPress pages (that uses a specific plugin)
wordpress Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 42 bytes) in
This means a memory error, usally caused by a plugin taking too much RAM frrom the sever.
A quickfix can be implemented per this:
1- Open wp-config.php
2- add the single code line of
define( ‘WP_MEMORY_LIMIT’, ‘256M’ );
3– SAVE – upload
