0

I have a wordpress website and its show me white screen right now. There is one plugin of theme which I deactivate website start working and after activating the plugin I got this message on my admin dashboard

The plugin generated 6 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin

This plugin is main plugin of the website's theme and my website is nothing without this plugin. I try few things regarding this issue

I try to remove the unwanted space from php tag of the plugin files. I try to add

ob_start();

ob_clean();

in my plugins php file. Nothing works for me. Anybody have any idea? what I have to do?

Azad Chouhan
  • 270
  • 1
  • 5
  • 20

1 Answers1

0

Once you add this, the blank screen will now have errors, warnings, and notices. These may be able to help you determine the root cause.

<?php
 error_reporting(E_ALL); ini_set('display_errors', 1);
 define( 'WP_DEBUG', true);
?>
Anand Pandey
  • 2,025
  • 3
  • 20
  • 39