Hello,
I’m trying to help my friend to fix problems with his website. Problems are:
1) SEO friendly urls made using sh404SEF plugin causes urls to end in
?tab=getmyhousesTab
To fix this I modified file sef_ext/
com_realstatemanager.php
Replace:
Code: |
if(isset($Itemid)) {
shRemoveFromGETVarsList('Itemid');
}
|
to
Code: |
if(isset($Itemid)) {
shRemoveFromGETVarsList('Itemid');
}
if(isset($tab)) {
$title[]=$tab;
shRemoveFromGETVarsList('tab);
}
|
This fixed the url problem, but broke the realstatemanager search from. When I try to search housing, I get almost blank page and no results. Removing the code and search works again. Any workaround for this?
2) Xmap extension doesn’t seem to work When I click
[XML Sitemap] button I get:
“You need to install RealEstateManager first”
Looking into file plugins/ xmap/ com_realstatemanager/
com_realstatemanager.php
line 13 reads:
Code: |
$f_path = JPATH_SITE.'/components/com_realestatemanager/functions.php';
|
now there is no such file as
functions.php. Removing folder xmap/ com_realstatemanager and XML sitemap works, but doesn’t include realstatemanager pages.
Looking into extension manager, the website is running following versions:
RealEstateManager 2.3 PRO
Xmap plugin for RealEstateManager 2.3
RealEstateManager Search Pro 2.2 PRO
Are there updates for components somewhere? I can provide more information upon request.
- Jani