Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mayeenulislam/a52b78395f9907f466e8dac2d29a60ec to your computer and use it in GitHub Desktop.
Save mayeenulislam/a52b78395f9907f466e8dac2d29a60ec to your computer and use it in GitHub Desktop.
Save Plugin Error Messages in the database for The Plugin Generated x Characters of Unexpected Output During Activation errors
<?php
function tl_save_error() {
update_option( 'plugin_error', ob_get_contents() );
}
add_action( 'activated_plugin', 'tl_save_error' );
/* Then to display the error message: */
echo get_option( 'plugin_error' );
/* Or you could do the following: */
file_put_contents( 'C:\errors' , ob_get_contents() ); // or any suspected variable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment