Main menu

Forum


× Help Forum English

Registration pages

  • gooner
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 8 mois #7335 par gooner
Registration pages a été créé par gooner
I have turned the registration off in the iCagenda, options, registrations settings. But I am using sh404sef for my urls management and have noticed that every event keeps generating a registration page.

How do I stop iCagenda from producing these registration pages.
Pièces jointes :

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 8 mois #7377 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages
Hello,

DO you have turned off registration after or before the creation of those events ?

Best Regards,
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • gooner
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 8 mois #7386 par gooner
Réponse de gooner sur le sujet Registration pages
Before

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 8 mois - il y a 10 ans 8 mois #7417 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages

gooner écrit: Before


Thanks!

I'm not using sh404sef, but it seems that this extension is using the router.php file of iCagenda, and so generate the registration page link...
In fact, this makes sense...

I will try to see what could be done to prevent this...

Do you have possibility to edit files, and do some tests if i send you a few lines of code in php ?

Thank you!
Regards,
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Dernière édition: il y a 10 ans 8 mois par Lyr!C.

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 8 mois #7437 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages
Hi!

Test to upgrade to 3.3.6 (just released yesterday). And check again with sef, with a purge.

Regards,
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • gooner
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 7 mois #7551 par gooner
Réponse de gooner sur le sujet Registration pages
It is still producing the registration pages, everytime I delete it regenerates them.

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 7 mois - il y a 10 ans 7 mois #7556 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages

gooner écrit: It is still producing the registration pages, everytime I delete it regenerates them.


Hi!

Thanks for feedback... ;)
I will try to work on this issue for next 3.4.0 (which is in developement, and will be first release as alpha, beta, for user of the pro versions)

Regards,
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Dernière édition: il y a 10 ans 7 mois par Lyr!C.
Les utilisateur(s) suivant ont remercié: gooner

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 6 mois #7651 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages
Hello!

Could you try to edit a file to see if it could solved this issue ?

Edit the file ROOT/components/com_icagenda/helpers/icmodel.php, around lines 3400 :

Replace this :
		if (($regLink == 1) && is_numeric($regLinkArticle))
		{
			$regUrl = JURI::root().'index.php?option=com_content&view=article&id='.$regLinkArticle.'" target="'.$browserTarget;
		}
		elseif ($regLink == 2)
		{
			$regUrl = $regLinkUrl.'" target="'.$browserTarget;
		}
		else
		{
			$regUrl = $icagenda_form.'" target="'.$browserTarget;
		}

By this :
if (($regLink == 1) && is_numeric($regLinkArticle))
		{
			$regUrl = JURI::root().'index.php?option=com_content&view=article&id='.$regLinkArticle.'" rel="nofollow" target="'.$browserTarget;
		}
		elseif ($regLink == 2)
		{
			$regUrl = $regLinkUrl.'" rel="nofollow" target="'.$browserTarget;
		}
		else
		{
			$regUrl = $icagenda_form.'" rel="nofollow" target="'.$browserTarget;
		}

Adding a rel="nofollow" could maybe help to prevent checking of such url...

Regards,
And thank you! ;-)
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 6 mois #7689 par Lyr!C
Réponse de Lyr!C sur le sujet Registration pages
Hi!

Do you have tested my change posted in message before ?

Regards,
Cyril

Latest version : iCagenda 3.9.8
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

Modérateurs: Lyr!C
Temps de génération de la page : 0.141 secondes

 

Follow Us

Créez vos templates Joomla avec Template Creator CK

acymailing logo new