This is typically seen on sites with a splash page. The URL by default will invoke the splash page so you must append the index.php to the url to invoke the index page. See fix below for Groups module. You will need to follow similar procedure for other modules (such as events). The bold text is what have been added to the function.
In modules\boonex\groups\classes\BxGroupsModule.php
Find the function serviceHomepageBlock () and replace with :
function serviceHomepageBlock () {
if (!$this->_oDb->isAnyPublicContent())
return '';
bx_import ('PageMain', $this->_aModule);
$o = new BxGroupsPageMain ($this);
$o->sUrlStart = BX_DOL_URL_ROOT . 'index.php?';
$sDefaultHomepageTab = $this->_oDb->getParam('bx_groups_homepage_default_tab');
$sBrowseMode = $sDefaultHomepageTab;
switch ($_GET['bx_groups_filter']) {
case 'featured':
case 'recent':
case 'top':
case 'popular':
case $sDefaultHomepageTab:
$sBrowseMode = $_GET['bx_groups_filter'];
break;
}
return $o->ajaxBrowse(
$sBrowseMode,
$this->_oDb->getParam('bx_groups_perpage_homepage'),
array(
_t('_bx_groups_tab_featured') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=featured', 'active' => 'featured' == $sBrowseMode, 'dynamic' => true),
_t('_bx_groups_tab_recent') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=recent', 'active' => 'recent' == $sBrowseMode, 'dynamic' => true),
_t('_bx_groups_tab_top') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=top', 'active' => 'top' == $sBrowseMode, 'dynamic' => true),
_t('_bx_groups_tab_popular') => array('href' => BX_DOL_URL_ROOT . 'index.php?bx_groups_filter=popular', 'active' => 'popular' == $sBrowseMode, 'dynamic' => true),
)
);
}
Came looking for help on this and find that issues with this mod weren't resolved, here on forum at least,
I have the public groups block appearing on front page, but clicking on link to 'featured' or 'top' causes the index.html to merge with the index.php and do some stuff that would actually be kinda cool if I wanted it to happen - any suggestions will be welcome http://hallspublishing.net/index.php
Paypal email is jeromemingo@gmail.com - http://www.boonex.com/market/posts/modzzz