Main menu

Forum


× Help Forum English

Registration pages

  • gooner
  • Topic Author
  • New Member
  • New Member
More
10 years 8 months ago #7335 by gooner
Registration pages was created by 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.
Attachments:

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 8 months ago #7377 by Lyr!C
Replied by Lyr!C on 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.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) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • gooner
  • Topic Author
  • New Member
  • New Member
More
10 years 8 months ago #7386 by gooner
Replied by gooner on topic Registration pages
Before

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 8 months ago - 10 years 8 months ago #7417 by Lyr!C
Replied by Lyr!C on topic Registration pages

gooner wrote: 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) .

File Attachment:

Last edit: 10 years 8 months ago by Lyr!C.

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 7 months ago #7437 by Lyr!C
Replied by Lyr!C on 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.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) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • gooner
  • Topic Author
  • New Member
  • New Member
More
10 years 7 months ago #7551 by gooner
Replied by gooner on topic Registration pages
It is still producing the registration pages, everytime I delete it regenerates them.

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 7 months ago - 10 years 7 months ago #7556 by Lyr!C
Replied by Lyr!C on topic Registration pages

gooner wrote: 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) .

File Attachment:

Last edit: 10 years 7 months ago by Lyr!C.
The following user(s) said Thank You: gooner

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 6 months ago #7651 by Lyr!C
Replied by Lyr!C on 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.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) .

File Attachment:

Please Log in or Create an account to join the conversation.

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 6 months ago #7689 by Lyr!C
Replied by Lyr!C on topic 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) .

File Attachment:

Please Log in or Create an account to join the conversation.

Moderators: Lyr!C
Time to create page: 0.180 seconds

 

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new