Вообщем, обнаружил такой баг в модуле... не видит он itemid у статьи и его в ссылках не прописывает => юзвери видят на страницах "у вас недостаточно прав бла бла бла..." Вот можно сравнить: как надо: http://www.amurteam.ru/index.php?option=com_content&task=view&id=1484&Itemid=7 Как есть: http://www.amurteam.ru/index.php?option=com_content&task=view&id=1484 или http://www.amurteam.ru/index.php?option=com_content&task=view&id=1484&Itemid=0 соответственно &Itemid=7 потерялся... в настройках есть параметр Use ItemID in links , он включен, однако... Вот код из модуля, который отвечает за вывод ItemID Код (CODE): // generating tables of news data foreach($news as $item){ if(array_search($item->ID,$content_id) == NULL){ $content_id[] = $item->ID; // news IDs $content_title[] = $item->title; // news titles $content_text[] = $item->text; // news text $content_images[] = $item->images; // news images $content_date[] = $item->date; // news dates $content_cid[] = $item->CID; // news CIDs $content_author[] = $item->author; // news author $content_catname[] = $item->cat; // news category name $content_sid[] = $item->SID; // news category section ID // if itemid is enabled if($itemid == 1){ $con_itemid = $mainframe->getItemid( $item->ItemID, 0, 0, $bs, $bc, $gbs ); ($con_itemid == NULL) ? $content_itemid[] = '' : $content_itemid[] = '&Itemid='.$con_itemid; } else{ // if itemid is disabled $content_itemid[] = '&Itemid=0'; } $na++; } } пропускаю строки .... В чем косяк так и не понял Гении кодинга, помоги плиз Файл модуля в приложении