-
iCagenda
-
iCagenda - English
-
Registration pages
Registration pages
-
gooner
-
Autore della discussione
-
New Member
-
Riduci
Di più
-
Messaggi: 3
-
Ringraziamenti ricevuti 0
-
-
10 Anni 8 Mesi fa #7335
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.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
Lyr!C
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 8 Mesi fa #7377
da Lyr!C
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)
.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
gooner
-
Autore della discussione
-
New Member
-
Riduci
Di più
-
Messaggi: 3
-
Ringraziamenti ricevuti 0
-
-
-
Lyr!C
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 8 Mesi fa - 10 Anni 8 Mesi fa #7417
da Lyr!C
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.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)
.
Ultima Modifica 10 Anni 8 Mesi fa da Lyr!C.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
Lyr!C
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 8 Mesi fa #7437
da Lyr!C
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)
.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
gooner
-
Autore della discussione
-
New Member
-
Riduci
Di più
-
Messaggi: 3
-
Ringraziamenti ricevuti 0
-
-
10 Anni 7 Mesi fa #7551
da gooner
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
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 7 Mesi fa - 10 Anni 7 Mesi fa #7556
da Lyr!C
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.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)
.
Ultima Modifica 10 Anni 7 Mesi fa da Lyr!C.
Ringraziano per il messaggio: gooner
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
Lyr!C
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 6 Mesi fa #7651
da Lyr!C
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)
.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
Lyr!C
-
-
Administrator
-
-
Lead Developer
Riduci
Di più
-
Messaggi: 6784
-
Ringraziamenti ricevuti 608
-
-
-
-
10 Anni 6 Mesi fa #7689
da Lyr!C
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)
.
Si prega Accedi o Crea un account a partecipare alla conversazione.
-
iCagenda
-
iCagenda - English
-
Registration pages
Tempo creazione pagina: 0.128 secondi