By brandy on Sunday, 22 September 2013
Posted in General Issues
Replies 4
Likes 0
Views 624
Votes 0
When I click on a blog to view it at the top is a notice:

Notice: Undefined property: EasyBlogTableBlog::$text in /home/content/88/6171288/html/plugins/sh404sefcore/sh404sefsimilarurls/sh404sefsimilarurls.php on line 37

What causes this and how do I fix it?

Thank you!! We are in joomla 2.5.14, easyblog 3.8.14662
I apologize for my delay. I thought the issue was resolved, but apparently not as I just noticed the error message again. Thank you for your help!
·
Sunday, 02 February 2014 11:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Brandy,

I am unable to connect FTP, please advice?
screenshot --> http://screencast.com/t/jEQ2DUwgA8zy

Thanks:)
·
Sunday, 02 February 2014 15:37
·
0 Likes
·
0 Votes
·
0 Comments
·
It works for me? I use smartftp.
·
Tuesday, 04 February 2014 00:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Brandy,

That error message is actually generated by Sh404 and not EasyBlog. To fix this, I had to replace the code in the file /plugins/sh404sefcore/sh404similarurls/sh404similarurls.php and at line 38, replaced the codes below,


$rowContent->text = str_replace( '{%sh404SEF_404_URL%}', htmlspecialchars( $url, ENT_COMPAT, 'UTF-8'), $rowContent->text );


With,


if( isset( $rowContent->text ) )
{
$rowContent->text = str_replace( '{%sh404SEF_404_URL%}', htmlspecialchars( $url, ENT_COMPAT, 'UTF-8'), $rowContent->text );
}


You should try contacting SH404 about this too.
·
Tuesday, 04 February 2014 00:36
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post