It’s only a notice, nothing of so bad, it must be checked at our side.
Hi Stefano
When I suppose to get assistance from your side.I need help urgently.
Hi, if you cannot wait the patch, just try to enter the plugin subscription steps panel and save the options.
Hi Stefano
I would like to one favor from you that i have developed a custom registration plugin module in wp.I works in localhost properly,but if when I upload it on live server ,then dashboard shows blank page,ever web page becomes blank.After deactivate it via ftp site works well.
Where I made mistake in development.,what are possible causes behind it
Thanks
Hi, it can be an incompatibility of PHP version, or the use of <? instead of <?php. You should look at the error log of the server, if there is a conflict, for example, for an already defined function, you can be able to see it.
Eventually start to put a “return” in your main file line by line until you discover the line giving problem.
Another option, if you cannot access the standard error log of the server, is to add those lines in your wp-config.php file:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
and you’ll find a debug.log file inside the wp-content folder which can give you some information about what’s going on.
Stefano Lissa.
Hi Stefano
I have enable debug mode true in “wp-config” file ,it doesnot show any warning,notice ,error etc.Only blank page shows.
How incompatibility of PHP version can be handle?
Thanks
But even the debug.log file is empty?
Hi
I also found debug.log file is empty
1.How can I find main reason of conflict?
2.How php version incompatibility can be resolve?
please guide me
Thanks
You must debug your code. Just stop it somewhere and then change the stop point until you find the offending line of code.