ссылка не работаетdatsogallery v1.8.3
*** скрытое содержание ***
Осталось теперь модули под 1.5 де нить найти!
перезалейте, плз.!
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
ссылка не работаетdatsogallery v1.8.3
*** скрытое содержание ***
Осталось теперь модули под 1.5 де нить найти!
Это 1.5 legacy mode и неработает с 1.83А чем не устраивает 1.2? Он где то здесь пролетал в комплекте с DatsoGallery 1.7.1 (Rus).
Это интеграция для версии 1.8.1 не подоходит для 1.8.3 так как там немного изменили код в тех частях где нужно было делать изменения, может кто знает как интегрировать последнюю версию с JComments?Вот подробная интеграция с jComments:
1. Откройте файл /components/com_datsogallery/datsogallery.php
2. Найдите строки:
и замените их на:Код:$database->setQuery("SELECT cmtid FROM #__datsogallery_comments WHERE cmtpic='$row1->id'"); $comments_result = $database->query(); $comments = mysql_num_rows($comments_result);
3. Откройте файл /components/com_datsogallery/sub_viewdetails.phpКод:global $mosConfig_absolute_path; $comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php'; if (file_exists($comments)) { require_once($comments); $comments = JComments::getCommentsCount($row1->id, 'com_datsogallery'); }
4. Найдите строку:
и замените на:Код:if ($ad_showcomment) {
5. Найдите строку:Код:/* if ($ad_showcomment) {
и замените на:Код:if ($ad_showsend2friend) {
6. В самом конце файла найдите завершающий php-тег:Код:*/ if ($ad_showsend2friend) {
?>
и замените на:
7. Откройте файл /components/com_datsogallery/sub_viewspecial.phpКод:if ($ad_showcomment) { global $mosConfig_absolute_path; $comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php'; if (file_exists($comments)) { require_once($comments); echo JComments::showComments($id, 'com_datsogallery', $imgtitle); } } ?>
8. Найдите строки:
и замените на:Код:$database->setQuery("select cmtid from #__datsogallery_comments where cmtpic='$row1->id'"); $comments_result = $database->query(); $comments = mysql_num_rows($comments_result);
}Код:global $mosConfig_absolute_path; $comments = $mosConfig_absolute_path . '/components/com_jcomments/jcomments.php'; if (file_exists($comments)) { require_once($comments); $comments = JComments::getCommentsCount($row1->id, 'com_datsogallery');
9. Найдите строки:
и замените следующим:Код:$database->setQuery("select a.*, cc.cmtid " . " from #__datsogallery as a, #__datsogallery_comments " . " as cc, #__datsogallery_catg " . " as ca where a.id=cc.cmtpic " . " and a.catid=ca.cid " . " and a.published=1 " . " and a.approved=1 " . " and ca.published=1 " . " and ca.access<=$gid " . " order by cc.cmtid desc limit $ad_toplist ");
Код:$database->setQuery("select a.* " . " from #__datsogallery as a" . " inner join #__datsogallery_catg as ca on a.catid = ca.cid" . " inner join #__jcomments as cc on a.id = cc.object_id" . " where a.published=1 and a.approved=1 " . " and cc.object_group='com_datsogallery' and cc.published=1 " . " and ca.published=1 and ca.access<=$gid " . " order by cc.date desc limit $ad_toplist ");