Fatal error: print_r() ref.outcontrol: Cannot use output buffering in output buffering display handlers in...
Fatal error: ob_start() ref.outcontrol: Cannot use output buffering in output buffering display handlers in...
The bug is that Platinum uses the wrong logic:
if (function_exists('attribute_escape')) {
$search = attribute_escape($s);
} else {
$search = esc_attr($s);
}
should be
if (function_exists('esc_attr')) {
$search = esc_attr($s);
} else {
$search = attribute_escape($s);
}
The same block is in the file twice.
platinum-seo-pack/platinum_seo_pack.php
It’s been deprecated since WordPress 2.8, so you could just forget the if/else and simply use:
$search = esc_attr($s);
https://www.ads-software.com/plugins/platinum-seo-pack/
]]>after installation of plug-in, I go to options and there is error:
<form name=”form1″ method=”post” action=”/wp-admin/options-general.php?page=
Fatal error: Call to undefined function: attribute_escape() in /hosting/www/sionskykopec.cz/www/wp-content/plugins/wp-simpleviewer/wp-simpleviewer.php on line 455
I did all of few steps mentioend in installation.
Thanks for help or tip, where couldbe the problem.
robke
]]>I don’t want to unnecessarily run data through extra functions if it isn’t required or is already successfully processed to remove problems.
]]>where script.php is the script file in which i have created the menu functions
]]><br />
I posted the source of the page starting with the form code here:
https://wordpress.pastebin.ca/309933
Screenshot of the login page:
https://img139.imageshack.us/img139/4057/wtfvx4.jpg
I’m so frustrated trying to figure this out