Home arrow Forum

Remository Forum

 


darksoul88

Karma: 0  
SEO & SEF BUG - 2009/06/02 23:14 There is a bug when (in the version 3.5.1) i have enabled mod_rewrite.

Remository dont show the correct url :
is :
http://www.samples-share.com/it/component/remository/
but must be :
www.samples-share.com/download-free-samples-loops-patch-music-vst-plugins-sequencers-sf2.html

The problem is appeared when i enabled mod_rewrite.
Into the remository page, i cant show any module if i dont set the module in all pages!

You can go correct into the 2nd link only if set the joomla menu to remository.
try to go to the homepage.
www.samples-share.com

Post edited by: darksoul88, at: 2009/06/02 23:18
  | | Sorry, you do not currently have permission to write here.
AlCher

Karma: 0  
Re:SEO & SEF BUG - 2009/06/04 19:37 Pls, see
http://remository.com/forum/func,view/id,12815/catid,24/
http://remository.com/forum/func,view/id,12867/catid,24/limit,6/limitstart,12/

This should help you.
  | | Sorry, you do not currently have permission to write here.
darksoul88

Karma: 0  
Re:SEO & SEF BUG - 2009/06/07 08:37 i tried, but if i modify the router.php, site became inaccessible
  | | Sorry, you do not currently have permission to write here.
AlCher

Karma: 0  
Re:SEO & SEF BUG - 2009/06/07 10:49 1. in ../com_remository/remository.interface.php around lines 500-505
Code:

 function setPageTitle ($title) {     $this->getMainFrame();     if (method_exists($this->mainframe'SetPageTitle')) $this->mainframe->SetPageTitle($title);     if (defined('_JOOMLA_15PLUS') AND $this->getCfg('sef')) {         // $this->appendPathway($title, remositoryRepository::getInstance()->RemositoryBasicFunctionURL());     } }


2. in ../com_remository/router.php
Code:

 function remositoryBuildRoute (&$query) {     foreach ($query as $key=>$value) {         $item[] = strtolower($key).'='.$value;         if ('option' != $key AND 'Itemid' != $key) unset ($query[$key]);     }     $sefstring = isset($item) ? sef_remository::create(implode('&'$item)) : '';     return $sefstring explode('/'$sefstring) : array(); }


It is work for me.
Remove amp; from the code - the forum distorts code.

Post edited by: AlCher, at: 2009/06/07 10:54
  | | Sorry, you do not currently have permission to write here.
darksoul88

Karma: 0  
Re:SEO & SEF BUG - 2009/06/08 12:35 Can you upload in a file hositng the two files.?
Like www.zshare.net ?
the router.php and interface.php
Please, im not able to remove amp;
  | | Sorry, you do not currently have permission to write here.
AlCher

Karma: 0  
Re:SEO & SEF BUG - 2009/06/08 19:00 in ../com_remository/router.php

Code:

 function remositoryBuildRoute (&$query) {


must be without amp;, i.e.
function remositoryBuildRoute (&$query) {

Code:

 $sefstring = isset($item) ? sef_remository::create(implode('&'$item)) : '';


without amp;, i.e.
$sefstring = isset($item) ? sef_remository::create(implode('&', $item)) : '';

Post edited by: AlCher, at: 2009/06/08 19:05
  | | Sorry, you do not currently have permission to write here.
darksoul88

Karma: 0  
Re:SEO & SEF BUG - 2009/06/08 22:11 Tanks, cool!!
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/03/10 18:24 Hello there... I feel stupid... but that didnt work in my case!
/component/remository/ part is still there and ruins everything

My Remository version is 3.52.8 (latest) and Joomla 1.5.15 (latest).

Any help please?

Post edited by: savvasha, at: 2010/03/10 18:26
  | | Sorry, you do not currently have permission to write here.
darksoul88

Karma: 0  
Re:SEO & SEF BUG - 2010/03/10 21:32 This problem has been solved in the version you are using. I dont have to do any hacks. You are running SEF urls in your site? did the not work only on remository pages? what your problem.. please provide the link to your website.
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/03/12 05:50 Hello there,

I have enabled all three sef options from the configuration of joomla backend.
Well my site is in greek so I will try to explain what is happening.
In main_menu I have a link to remository with alias name "vasi_thematwn". So the actual sef link is http://www.esagogi.com/vasi-thematwn.html . But if you go from there to any other container then "vasi-thematwn" dissapears and "component/remository/" appears http://www.esagogi.com/component/remository/ .

Both links work fine, but only on "vasi-thematwn" the modules are working...

Post edited by: savvasha, at: 2010/03/12 05:52
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/03/30 13:22 Hello again,

Is it possible for someone to help me solve this problem? Thanks
  | | Sorry, you do not currently have permission to write here.
admin

Karma: 98  
Re:SEO & SEF BUG - 2010/03/30 16:10 The links that do not SEF as you want must have either the wrong or no Itemid. Turn off SEF temporarily and check exactly what the problem is. Martin Brampton aka Counterpoint
http://aliro.org
http://black-sheep-research.com
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/04/15 15:16 Hello again.

Well, Martin you were right (as usual ). The problem was with the Itemid.
While my main remository menu was having Itemid=27, the component was using as Itemid the one of a sub-menu.

The specific sub-menu was a url-type menu that was linking to a sub-container at the remository-component. When I trash and delete ALL the submenus under main remository menu, the problem was fixed.

Strange... Is there a workaround so as to be able to have submenus with remository? For example instead of choosing the url-type menu, to choose the remository-type in which I can select the container that I want?

Thanks again Martin for your great work
  | | Sorry, you do not currently have permission to write here.
admin

Karma: 98  
Re:SEO & SEF BUG - 2010/04/15 17:38 I hope it will be possible to do that some time in the not too distant future Martin Brampton aka Counterpoint
http://aliro.org
http://black-sheep-research.com
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/08/10 11:18 For example instead of choosing the url-type menu, to choose the remository-type in which I can select the container that I want?
Hello Martin. Did you implement the above in your latest release of Remository?

Thanks
  | | Sorry, you do not currently have permission to write here.
admin

Karma: 98  
Re:SEO & SEF BUG - 2010/08/11 21:50 Yes, you can do that with the latest release. Martin Brampton aka Counterpoint
http://aliro.org
http://black-sheep-research.com
  | | Sorry, you do not currently have permission to write here.
savvasha

Karma: 0  
Re:SEO & SEF BUG - 2010/09/01 12:28 Nice work Martin! I am using it right now and it works well except of one thing.

I think that the pathway is loosing the "Home" path if you go to a sub-container using the Menu link.

What I mean. Using the menu I make a link to the sub-container with alias "dimotikomenu". So my link is http://www.mydomain.com/vasithematwn/dimotikomenu.html. The main remository link should be http://www.mydomain.com/vasithematwn.html. Instead of it, in the pathway it shows "Go to the Main Page of Remository" and instead of using the /vasithematwn.html link, it uses the /vasithematwn/dimotikomenu.html which just "refresh" the current page you are watching...

I hope you understand what its going wrong with my... ridiculous description
  | | Sorry, you do not currently have permission to write here.

Save FM Radio

Login

Subscribe to Premium Support

Get priority support for Remository and Glossary, sign up now for a Premium Support monthly subscription:

Your Remository user name

Or purchase a year's support:

Your Remository user name

Recommended SEF

SEF Advance

Who is Online

Remository welcomes guests and visitors

We have 8 guest online