Новости Joomla

joomLab Gallery - плагин галереи изображений для Joomla

👩‍💻 joomLab Gallery - плагин галереи изображений для Joomla.Плагин joomLab Gallery позволит Вам добавлять в любой материал неограниченное количество галерей, а главное удобно управлять файлами и эффектами в каждой галерее.Плагин использует популярны скрипты Swiper.js и FancyBox. Первый для крутой организации и эффектов галерей, а второй для красивого и функционального показа оригинальных изображений на Вашем сайте.На данный момент плагин имеет 10 макетов вывода - это 10 различных эффектов галерей и Вы можете совмещать все 10 в 1 материале.Плагин позволяет гибко настраивать индивидуально каждую галерею в материале. Вы можете выбрать макет, эффекты и даже можете управлять функциями всплывающего окна изображения.Недостатки.Такой вид реализации не предусматривает выбор изображения на сервере. Т.е. Вы не можете выбрать уже добавленное фото, только загружать заново. Плагин не предоставляет возможности доступа к медиа-менеджеру.Плагин бесплатный. Разработчик - участник нашего сообщества Александр Новиков (@pro-portal).Страница расширения@joomlafeed#joomla #расширения

Готовлю большой выпуск, включающий интервью с участниками Joomla Ну что, интересная инициатива от...

Готовлю большой выпуск, включающий интервью с участниками Joomla Ну что, интересная инициатива от...

Готовлю большой выпуск, включающий интервью с участниками Joomla 🖨Ну что, интересная инициатива от @webtolkru в виде интервью с разными участниками весьма меня увлекла. Я, вооружившись данным примером, решил подготовить выпуск для NorrNext (@norrnext) и экстраполировал идею на международный масштаб. Теперь готовлю эксклюзивный выпуск с участниками Joomla сообщества со всего мира, которые, в той или иной мере, внесли свой вклад в развитие и популяризацию системы. Будут беседы с людьми из разных стран и фото с юбилейной символикой 📸Работа в процессе 👆 📝О результатах оповещу отдельно.

0 Пользователей и 1 Гость просматривают эту тему.
  • 4 Ответов
  • 2298 Просмотров
*

argon06

  • Захожу иногда
  • 50
  • 2 / 0
Стандартный SEO и CSS
« : 26.07.2011, 12:48:31 »
Здравствуйте! Моя проблема уже не раз здесь обсуждалась и на одном из сайтов я ее решил сам, но сйчас почему то не получается!
Включил стандартный SEO и повылетали все CSS!
ссылка на CSS выглядит так: "http://www.site.ru/index.php/templates/yougrids/css/metal.css" и не могу его убрать, этот index.php!
Шаблон называется yougrids

в файле yjsg_core.php нашел такой код:
Код
// USABLE VARS 
$yj_site = JURI::base()."templates/".$this->template;          //  Current template folder as http://www.site_name/templates/template_name
$yj_base = JURI::base();                                       //  Site path as  http://www.site_name
$yj_copyrightear = (Date("Y"));                                //  Current Copyright year in footer
$yj_templatename = $this->template;                            //  Get template name
$document      = &JFactory::getDocument();

и вот код файла yjsg_head.php:
Код
defined( '_JEXEC' ) or die( 'Restricted index access' ); ?>
<jdoc:include type="head" />
<?php JHTML::_('behavior.mootools'); echo $add_jq .$add_jq_noc?>
<?php if ($compress == 0){ ?>
<link href="<?php echo $yj_site ?>/css/template.css" rel="stylesheet" type="text/css" />
<link href="<?php echo $yj_site ?>/css/<?php echo $css_file; ?>.css" rel="stylesheet" type="text/css" />
<?php }elseif ($compress == 1){ ?>
<link href="<?php echo $yj_site ?>/css/compress.php" rel="stylesheet" type="text/css" />
<?php  } ?>
<?php if ($yjsg_mobile){?>
<link href="<?php echo $yj_site ?>/css/mobile/iphone.css" rel="stylesheet" type="text/css" />
<?php }?>
<?php if (in_array('YJsground', $mod_round_style)){ ?>
<link href="<?php echo $yj_site ?>/css/rounded.css" rel="stylesheet" type="text/css" />
<?php } ?>

<?php if ( $default_menu_style == 3 ||  $default_menu_style == 4 ){ ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/dropline<?php echo $dropline ?>.css" type="text/css" />
<?php  } ?>

<?php if ($text_direction == 1) { ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/template_rtl.css" type="text/css" />
<?php if (preg_match("/chrome/",$who) || preg_match("/safari/",$who)) { ?><?php }else{ ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/menu_rtl.css" type="text/css" />
<?php  } ?>
<?php  } ?>
<?php require_once( TEMPLATEPATH.DS."yjsgcore/yjsg_hconditions.php"); ?>
<?php if($default_menu_style !=='5'){require_once( TEMPLATEPATH.DS."yjsgcore/yjsg_menuoffsets.php");} ?>
<?php if ($text_direction == 1 && $isie6 == true && ($default_menu_style == 3 ||  $default_menu_style == 4)) { ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/droplineie6-rtl.css" type="text/css" />
<?php  } ?>
<?php if ($text_direction == 1 && preg_match("/msie 7/",$who) && ($default_menu_style == 3 ||  $default_menu_style == 4)) { ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/droplineie7-rtl.css" type="text/css" />
<?php  } ?>
<?php if ($custom_css   == 1) { ?>
<link rel="stylesheet" href="<?php echo $yj_site ?>/css/custom.css" type="text/css" />
<?php  } ?>

подскажите пожалуйста как поправить ситуацию?
var $live_site = 'http://www.site.ru';
Joomla 1,5,22
*

zmancer

  • Давно я тут
  • 519
  • 76 / 19
Re: Стандартный SEO и CSS
« Ответ #1 : 26.07.2011, 14:03:23 »
Там где включается родной SEF включите mod_rewrite и index.php уберется
*

argon06

  • Захожу иногда
  • 50
  • 2 / 0
Re: Стандартный SEO и CSS
« Ответ #2 : 26.07.2011, 19:32:37 »
тоже пробовал! но тогда появляется 404 ошибка!
*

Efanych

  • Глобальный модератор
  • 4683
  • 644 / 0
  • Меняю свою жизнь на 360°!
Re: Стандартный SEO и CSS
« Ответ #3 : 26.07.2011, 19:37:42 »
тоже пробовал! но тогда появляется 404 ошибка!
Тогда переименуйте htaccess.txt
Создание сайтов, шаблонов, помощь в решении проблем.
*

argon06

  • Захожу иногда
  • 50
  • 2 / 0
Re: Стандартный SEO и CSS
« Ответ #4 : 26.07.2011, 21:01:55 »
Проблема решена обращением в тех поддержку! Отдельное спасибо откликнувшимся!
Привожу решение моего случая, вдруг кому пригодится:
Установки Search Engine Optimization
Код
Включить SEO	                 Да
Использовать mod_rewrite Да 
Добавить суффикс к URL Да

файл .htaccess

Код
<IfModule mod_php4.c>
php_flag register_globals off
</IfModule>
<IfModule mod_php5.c>
php_flag register_globals off
</IfModule>
AddType application/x-httpd-php5 .php


##
# @version $Id: htaccess.txt 21064 2011-04-03 22:12:19Z dextercowley $
# @package Joomla
# @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
# @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##


#####################################################
#  READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations.  It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file.  If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your SEF url's.  If they work,
# it has been set by your server administrator and you do not need it set here.
#
#####################################################

##  Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

#
#  mod_rewrite in use

RewriteEngine On

########## Begin - Rewrite rules to block out some common exploits
## If you experience problems on your site block out the operations listed below
## This attempts to block the most common type of exploit `attempts` to Joomla!
#
## Deny access to extension XML files (uncomment out to activate)
#<Files ~ "\.xml$">
#Order allow,deny
#Deny from all
#Satisfy all
#</Files>
## End of deny access to extension XML files
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode data within the URL
RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
########## End - Rewrite rules to block out some common exploits


########## Begin - Custom redirects
#
# If you need to redirect some pages, or set a canonical non-www to
# www redirect (or vice versa), place that code here. Ensure those
# redirects use the correct RewriteRule syntax and the [R=301,L] flags.
#
########## End - Custom redirects


#  Uncomment following line if your webserver's URL
#  is not directly related to physical file paths.
#  Update Your Joomla! Directory (just / for root)

# RewriteBase /


########## Begin - Joomla! core SEF Section
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} (/[^.]*|\.(php|html?|feed|pdf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
########## End - Joomla! core SEF Section
Чтобы оставить сообщение,
Вам необходимо Войти или Зарегистрироваться
 

Joomla стандартный SEF 303 редирект

Автор NitroProton

Ответов: 8
Просмотров: 5046
Последний ответ 12.12.2017, 10:16:44
от warlocksp
Не работает стандартный SEF

Автор AlSa2

Ответов: 12
Просмотров: 2672
Последний ответ 09.12.2016, 16:16:18
от fsv
Перестал работать стандартный компонент перенаправления

Автор novosidd

Ответов: 0
Просмотров: 1360
Последний ответ 22.01.2015, 09:22:52
от novosidd
Стандартный ЧПУ и мистика с однословными alias

Автор Barakyda

Ответов: 4
Просмотров: 1454
Последний ответ 12.01.2015, 20:27:23
от Barakyda
На мультиязычном сайте не работает стандартный SEF

Автор Otiva14

Ответов: 2
Просмотров: 1661
Последний ответ 20.07.2014, 17:28:18
от Otiva14