Main menu

Forum


The developer takes a few days off for Summer vacation...
...and will be back with charged battery!

From 14 June to 29 June, 2025 included
During this period,
assistance from developer will not be provided.

NEWS: iCagenda 4.0.0-alpha1 will be available for testing for users with a PRO subscription in July!

× Help Forum English

Registration pages

  • gooner
  • Autore della discussione
  • New Member
  • New Member
Di più
11 Anni 1 Mese fa #7335 da gooner
Registration pages è stato creato da 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.
Allegati:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 1 Mese fa #7377 da Lyr!C
Risposta da Lyr!C al topic 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.11
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) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • gooner
  • Autore della discussione
  • New Member
  • New Member
Di più
11 Anni 1 Mese fa #7386 da gooner
Risposta da gooner al topic Registration pages
Before

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 4 Settimane fa - 11 Anni 4 Settimane fa #7417 da Lyr!C
Risposta da Lyr!C al topic Registration pages

gooner ha scritto: 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.11
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) .

File allegato:

Ultima Modifica 11 Anni 4 Settimane fa da Lyr!C.

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 3 Settimane fa #7437 da Lyr!C
Risposta da Lyr!C al topic 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.11
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) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • gooner
  • Autore della discussione
  • New Member
  • New Member
Di più
11 Anni 1 Settimana fa #7551 da gooner
Risposta da gooner al topic Registration pages
It is still producing the registration pages, everytime I delete it regenerates them.

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
11 Anni 1 Settimana fa - 11 Anni 1 Settimana fa #7556 da Lyr!C
Risposta da Lyr!C al topic Registration pages

gooner ha scritto: 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.11
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) .

File allegato:

Ultima Modifica 11 Anni 1 Settimana fa da Lyr!C.
Ringraziano per il messaggio: gooner

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
10 Anni 11 Mesi fa #7651 da Lyr!C
Risposta da Lyr!C al topic 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.11
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) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
10 Anni 11 Mesi fa #7689 da Lyr!C
Risposta da Lyr!C al topic Registration pages
Hi!

Do you have tested my change posted in message before ?

Regards,
Cyril

Latest version : iCagenda 3.9.11
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) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

Moderatori: Lyr!C
Tempo creazione pagina: 0.133 secondi

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new