nocean / SEOSimple

Joomla plugin automatically generates description meta tags by pulling text from the content to help with SEO. It also gives you the ability to set different title configurations.
GNU General Public License v2.0
5 stars 4 forks source link

Strcit Standards :- Any ideas guys ????? #8

Open kevboab opened 8 years ago

kevboab commented 8 years ago

Strict Standards: Only variables should be assigned by reference in plugins/system/SEOSimple/SEOSimple.php on line 80

Strict Standards: Only variables should be assigned by reference in plugins/system/SEOSimple/SEOSimple.php on line 84

nocean commented 8 years ago

Apologies for the delay. What version of Joomla + the plugin are you using?

towerman86 commented 8 years ago

Hi,

I have had the same problem but it seems that =& and &= can be the problem for some hostings. I've changed some rows deleting & as I have read here

I hope that it helps ;)

kevboab commented 8 years ago

joomla 3.5 and SEO Simple from your site J3.0

Date: Fri, 1 Apr 2016 05:29:42 -0700 From: notifications@github.com To: SEOSimple@noreply.github.com CC: kevin.russell1974@gmail.com Subject: Re: [nocean/SEOSimple] Strcit Standards :- Any ideas guys ????? (#8)

Apologies for the delay. What version of Joomla + the plugin are you using?

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub

kevboab commented 8 years ago

Strict Standards: Only variables should be assigned by reference in plugins/system/SEOSimple/SEOSimple.php on line 24Strict Standards: Only variables should be assigned by reference in plugins/system/SEOSimple/SEOSimple.php on line 25

Date: Fri, 1 Apr 2016 05:29:42 -0700 From: notifications@github.com To: SEOSimple@noreply.github.com CC: kevin.russell1974@gmail.com Subject: Re: [nocean/SEOSimple] Strcit Standards :- Any ideas guys ????? (#8)

Apologies for the delay. What version of Joomla + the plugin are you using?

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub

webprofusion-chrisc commented 7 years ago

@nocean we are suddenly seeing this on a client site was well, they've just upgraded to the latest joomla. The solution seems to be to change reference assignments ($var = &object) to $var = object so for instance in onAfterDispatch:

    $app = &JFactory::getApplication();
    $document =& JFactory::getDocument();

changes to

    $app = JFactory::getApplication();
    $document =JFactory::getDocument();

If by any chance this plugin is no longer maintained please indicate here and we can replace it.

kevboab commented 7 years ago

Hi Chris, I eventually gave up with this plugins problems and moved over to Easy Front End SEO which I find much better and simpler to use. More control over the content also.

https://extensions.joomla.org/extension/easy-frontend-seo

Kind regards,

Kev Russell

On 25 Oct 2016, at 05:53, Christopher Cook notifications@github.com<mailto:notifications@github.com> wrote:

@noceanhttps://github.com/nocean we are suddenly seeing this on a client site was well, they've just upgraded to the latest joomla. The solution seems to be to change reference assignments ($var = &object) to $var = object so for instance in onAfterDispatch:

$app = &JFactory::getApplication();
$document =& JFactory::getDocument();

changes to

$app = JFactory::getApplication();
$document =JFactory::getDocument();

If by any chance this plugin is no longer maintained please indicate here and we can replace it.

You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/nocean/SEOSimple/issues/8#issuecomment-255936398, or mute the threadhttps://github.com/notifications/unsubscribe-auth/APz62k-KDSVsDrtrFXuflcu2wZI1XYjAks5q3YtDgaJpZM4G_uai.

solracsf commented 7 years ago

See https://github.com/nocean/SEOSimple/pull/11