Menu Content/Inhalt
Home arrow Forum Support
JoomlaStats
Welcome, Guest
Please Login or Register.    Lost Password?
Re:SEO/SEF issue? (1 viewing) (1) Guest
Go to bottom Post Reply Favoured: 0
TOPIC: Re:SEO/SEF issue?
#5596
georgealto (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
SEO/SEF issue? 7 Months, 1 Week ago Karma: 0  
In the release notes I see the following:

"SEO, SEF should not be used if You use this version."

I guess that means that this component does not work with any other SEO/SEF component - is that correct?

Why is that? Are there plans to make changes so that you can also have SEO/SEF turned on your site.

How does this component compare to AWSTATS?
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#5602
ahalbig (User)
Gold Boarder
Posts: 41
graphgraph
User Offline Click here to see the profile of this user
Re:SEO/SEF issue? 7 Months, 1 Week ago Karma: 1  
Hi, I have SEF enabled it is working pretty well. There is just one issue know by me, where we can't recongnise search enquires using the integrated Joomla search option.

We are unfortunately limited in our spare time, but we are always happy if someone has a piece of code or if he can points us to the solution of any issues - this would definitely speed up the process to fix those issues!
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#5609
georgealto (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Re:SEO/SEF issue? 7 Months, 1 Week ago Karma: 0  
thanks for the reply.

since i haven't heard from the authors of the module, i guess i'll give it a try on my site.

but it would be good to know why the extension authors would put that statement in the release notes though.
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#5738
Fly06 (User)
Junior Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:SEO/SEF issue? 4 Months, 3 Weeks ago Karma: 0  
Hi there,

I have found a similar problem.

When the SEF is off, the urls displayed in the 'visited pages' are correct.

But when the SEF is turned on, there aren't. Some segments are missing in the displayed urls. The query string part is ok, the first segment(s) too but it seems that component-related segments are missing...

For instance, on my website, if I click on this url: http://www.fly06.fr/news/joomla-tips/53-balisage-h1-sous-joomla-15

it becomes in the stats: http://www.fly06.fr/news/joomla-tips

Any help/fix on this would be really appreciated

-Fly06
 
Report to moderator   Logged Logged  
  The administrator has disabled public write access.
#5741
Fly06 (User)
Junior Boarder
Posts: 5
graphgraph
User Offline Click here to see the profile of this user
Re:SEO/SEF issue? 4 Months, 3 Weeks ago Karma: 0  
I think I have found where the problem lies.

file : count.classes.php
class : js_JSCountVisitor
method : getRequestedUri()

The returned url is wrong when the SEF is ON because the $_SERVER['QUERY_STRING'] variable does not contain the component-related parameters encoded in the path part of the url.

To solve this issue, I replaced this single line:
Code:

$request_uri = $this->sefRelToAbs('index.php?' . $_SERVER['QUERY_STRING']);
by these ones:
Code:

$uri = clone(JURI::getInstance()); $router =& $app->getRouter(); $result = $router->parse($uri); $query_string = $uri->buildQuery($result); $request_uri = $this->sefRelToAbs('index.php?' . $query_string);
-Fly06
 
Report to moderator   Logged Logged  
 
Last Edit: 2010/04/16 13:32 By Fly06.
  The administrator has disabled public write access.
Go to top Post Reply
get the latest posts directly to your desktop