By loic on Monday, 07 September 2015
Posted in Technical Issues
Replies 3
Likes 0
Views 743
Votes 0
Hello,

from july i have some errors 500 detected by google related to
/application/canevas/.../group/.../...
or
/application/canevas/.../event/.../...

can you investigate and solve or redirect those url ?
thnaks in advance
loïc
Hey loic,

May i know do you know how to replicate this 500 error in your site?

Because I've tried to check with your attached screenshot and inside all of the link, but it seems like I can't replicate this issue when I go through group listing > view this group `pays-bas` > click create announcement , you can take a look of my screenshot below.

When you hover the create new announcement button, it will show the correct URL e.g. :

// Correct one
http://www.yoursite.com/applications/canevas/34-news/group/36-pays-bas?customView=form

// this URL listed on Google result, but can't replicate this URL in your site
http://www.yoursite.com/applications/canevas/38/group/36-pays-bas?customView=form


Looking forwards of your response.
·
Monday, 07 September 2015 16:38
·
0 Likes
·
0 Votes
·
0 Comments
·
hello arlex

that's probably means that's coming from previous ES version
now it's in google index and google will try again and again to access this pages...
i'll have to mannually redirect each page by htaccess...


Loïc
·
Thursday, 10 September 2015 13:28
·
0 Likes
·
0 Votes
·
0 Comments
·
hey loic,

I am sorry that delay of this reply,

If you would like to do the redirection quickly way, you can modifiy this few file ->
JoomlaFolder\components\com_easysocial\views\apps\view.html.php

				
return JError::raiseError(JText::_('COM_EASYSOCIAL_GROUPS_GROUP_NOT_FOUND'), 404);

// Replace to
$this->redirect(FRoute::dashboard(array(), false));
$this->close();


JoomlaFolder\components\com_easysocial\views\events\view.html.php
return JError::raiseError(404, JText::_('COM_EASYSOCIAL_EVENTS_INVALID_EVENT_ID'));

// Replace to
$this->redirect(FRoute::dashboard(array(), false));
$this->close();




JoomlaFolder\components\com_easysocial\views\groups\view.html.php
			return JError::raiseError(404, JText::_('COM_EASYSOCIAL_GROUPS_GROUP_NOT_FOUND'));

// Replace to
$this->redirect(FRoute::dashboard(array(), false));
$this->close();


Hope this help.
·
Friday, 11 September 2015 11:36
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post