I’ve just upgraded from EE 1.52 to EE 1.6, and I’m getting the value ‘M10o93H7pQ09L8X1t49cHY01Z5j4TT91fGfr’ appearing throughout my site in place of content.
Two examples are:
<title>{exp:weblog:info weblog="{my_weblog}"}{blog_title}{/exp:weblog:info}</title>This was working fine prior to the upgrade, and was not changed. It now outputs:
<title>M00o93H7pQ09L8X1t49cHY01Z5j4TT91fGfr</title>Also, a few plugins seeming to be doing the same thing. One example (posted here) is doing the same sort of behaviour:
{exp:static_page_root_path}
<li class="{short_name} {current}"><a href="http://{url_title}" title="{title}">{title}</a></li>
{/exp:static_page_root_path}now produces only:
<ul>
M10o93H7pQ09L8X1t49cHY01Z5j4TT91fGfr
</ul>Furthermore, if I edit the plugin code and add the following:
function Static_page_root_path ( $str = '' )
{
echo "AAA";
$this->return_data = 'AAA';
exit();It has no affect - I still get the hash string result. It doesn’t look like the plugin code is even being executed.
Any ideas?