• Почему не срабатывает тернарный оператор?

    @denism300 Автор вопроса
    Илья, в коде только в двух местах вызывается $s['priceweek'], где используется тернарный оператор.
    Если я комментирую эти строки или меняю на конструкцию с if, то все ок.
  • Как реализовать хранение информации в мета-полях записи?

    @denism300 Автор вопроса
    YBB, да, я в курсе, что сериализованные данные не возможно использовать в SQL запросах, именно поэтому и родилась идея обрабатывать в момент вывода.
    А про отдельную таблицу как-то и не подумал. Спасибо
  • Как заменить диски в RAID 1 на диски меньшего объема?

    @denism300 Автор вопроса
    tukreb, про разных производителей я в курсе - сталкивался
    Тут речь не о замене одного диска массива на меньший по объему, а о замене всех дисков.
  • Как заменить диски в RAID 1 на диски меньшего объема?

    @denism300 Автор вопроса
    алгоритм понятен, спасибо.
    Буду курить мануалы к контроллеру.
    Хотя, по идее, вместо того, чем заморачиваться с уменьшением текущих разделов и т.д., сразу перейти к варианту №2
  • Как добавить / в конце адреса?

    @denism300 Автор вопроса
    dodo512,
    ##
    
    # @package Joomla
    
    # @copyright (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
    
    # @license GNU General Public License version 2 or later; see LICENSE.txt
    
    ##
    
    ## Can be commented out if causes errors, see notes above.
    
    Options +FollowSymlinks
    Options -Indexes
    
    ## No directory listings
    
    <IfModule mod_autoindex.c>
    	IndexIgnore *
    </IfModule>
    
    ## Suppress mime type detection in browsers for unknown types
    
    <IfModule mod_headers.c>
    	Header always set X-Content-Type-Options "nosniff"
    </IfModule>
    
    ## Disable inline JavaScript when directly opening SVG files or embedding them with the object-tag
    
    <FilesMatch "\.svg$">
    <IfModule mod_headers.c>
    Header always set Content-Security-Policy "script-src 'none'"
    </IfModule>
    </FilesMatch>
    
    ## These directives are only enabled if the Apache mod_rewrite module is enabled
    
    <IfModule mod_rewrite.c>
    	RewriteEngine On
    
        ## Begin - Rewrite rules to block out some common exploits.
        # If you experience problems on your site then comment out the operations listed
        # below by adding a # to the beginning of the line.
        # This attempts to block the most common type of exploit `attempts` on Joomla!
        #
        # Block any script trying to base64_encode data within the URL.
        RewriteCond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
        # Block any script that includes a <script> tag in URL.
        RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
        # Block any script trying to set a PHP GLOBALS variable via URL.
        RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
        # Block 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 home page
        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.
        #
    
        RewriteBase /
    
        RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
        RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
    
        RewriteCond %{REQUEST_URI} \..+$
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} -f
        RewriteCond %{REQUEST_URI} ^(.+)/$
        RewriteRule ^(.+)/$ /$1 [R=301,L]
    
        RewriteCond %{REQUEST_URI} !(.*)/$
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteCond %{REQUEST_URI} !\..+$
        RewriteRule ^(.*[^/])$ $1/ [L,R=301]
    
        RewriteRule ^slajder_na_glavnoj(?=/*|$) / [R=301,L]
        RewriteRule ^about/blagotvoritel_nost(?=/$|$) about/blagotvoritelnost [R=301,L]
        RewriteRule ^otpravit-zayavku(?=/$|$) /zakaz [R=301,L]
    
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^(.*)_(.*) /$1-$2 [L,R=301]
    
        
        ##
        # Uncomment the 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.
        #
        # PHP FastCGI fix for HTTP Authorization, required for the API application
        RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
        # -- SEF URLs for the API application
        # If the requested path starts with /api, the file is not /api/index.php
        # and the request has not already been internally rewritten to the
        # api/index.php script
        RewriteCond %{REQUEST_URI} ^/api/
        RewriteCond %{REQUEST_URI} !^/api/index\.php
        # 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 /api/index.php script
        RewriteRule .* api/index.php [L]
        # -- SEF URLs for the public frontend application
        # 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 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.
    
    </IfModule>
    
    ## These directives are only enabled if the Apache mod_rewrite module is disabled
    
    <IfModule !mod_rewrite.c>
    <IfModule mod_alias.c> # When Apache mod_rewrite is not available, we instruct a temporary redirect # of the start page to the front controller explicitly so that the website # and the generated links can still be used.
    RedirectMatch 302 ^/$ /index.php/ # RedirectTemp cannot be used instead
    </IfModule>
    </IfModule>
    
    ## GZIP
    
    ## These directives are only enabled if the Apache mod_headers module is enabled.
    
    ## This section will check if a .gz file exists and if so will stream it
    
    ## directly or fallback to gzip any asset on the fly
    
    ## If your site starts to look strange after enabling this file, and you see
    
    ## ERR_CONTENT_DECODING_FAILED in your browser console network tab,
    
    ## then your server is already gzipping css and js files and you don't need this
    
    ## block enabled in your .htaccess
    
    <IfModule mod_headers.c>
    	# Serve gzip compressed CSS files if they exist
    	# and the client accepts gzip.
    	RewriteCond "%{HTTP:Accept-encoding}" "gzip"
    	RewriteCond "%{REQUEST_FILENAME}\.gz" -s
    	RewriteRule "^(.*)\.css" "$1\.css\.gz" [QSA]
    
        # Serve gzip compressed JS files if they exist
        # and the client accepts gzip.
        RewriteCond "%{HTTP:Accept-encoding}" "gzip"
        RewriteCond "%{REQUEST_FILENAME}\.gz" -s
        RewriteRule "^(.*)\.js" "$1\.js\.gz" [QSA]
    
        # Serve correct content types, and prevent mod_deflate double gzip.
        RewriteRule "\.css\.gz$" "-" [T=text/css,E=no-gzip:1]
        RewriteRule "\.js\.gz$" "-" [T=text/javascript,E=no-gzip:1]
    
        <FilesMatch "(\.js\.gz|\.css\.gz)$">
        	# Serve correct encoding type.
        	Header append Content-Encoding gzip
    
        	# Force proxies to cache gzipped &
        	# non-gzipped css/js files separately.
        	Header append Vary Accept-Encoding
        </FilesMatch>
    
    </IfModule>
  • Как оставить элементы с определенным классом в наборе элементов, полученным с помощью html()?

    @denism300 Автор вопроса
    scottparker, так устроит?
    Хотелось бы по существу ответ, конечно, получить
  • Как слить свойства объекта с одинаковыми значениями?

    @denism300 Автор вопроса
    tukreb, логично. Как в foreach обратиться к предыдущему объекту, чтобы сравнить его свойство с текущим?
    Гуглил. Не нашел.
  • Как сделать общую авторизацию между доменом и зеркалом?

    @denism300 Автор вопроса
    к сожалению, у заказчика Joomla 3. Переходить на 4 он на данный момент не планирует
  • Как вывести данные на страницу исходя какой стоит поддомен?

    @denism300
    по идее, данные для Омска уже записаны в переменную $result
  • Как вывести данные на страницу исходя какой стоит поддомен?

    @denism300
    параметры городов проще в БД хранить, структуру таблицы типа такой сделать:
    id city_name city_param

    параметры хранить в виде сериализованного массива
    соответственно, при загрузке страницы срабатывает функция, дергает из БД массив параметров для города, пишет его в переменную.
    $subdomain = array_shift(explode('.', $_SERVER['HTTP_HOST']));
    $db_link = mysqli_connect(<адрес сервера>, <имя пользователя>, <пароль>, <имя базы данных>);
    if($db_link) {
        $sql = 'SELECT city_param FROM cities_table WHERE city_name=' . $subdomain;
        $result = mysqli_query($db_link, $sql);
    }

    Дальше из этой переменной значения уже выводятся посетителю.
    как-то так.
  • Как проверить сайдбар на отображение на сайте?

    @denism300 Автор вопроса
    VasyaID,
    и уже оказывается не сайдвар а виджет

    вопрос именно про сайдбар. Остальные пункты я знаю как реализовать.
    Цель проверки наличия виджета на странице к вопросу не относится.
    Беседу "для поговорить" желания вести не имею.
    За сим откланиваюсь.
  • Как проверить сайдбар на отображение на сайте?

    @denism300 Автор вопроса
    VasyaID, дальше проверяю находится ли в нем интересующий меня виджет.
    Цель - проверка, отображается ли виджет на странице.
    Идея:
    1. Получаем массив всех сайдбаров, wp_get_sidebars_widgets() с виджетами
    2. Удаляем из него неактивные
    3. Удаляем из него те, которых нет на странице
    4. В оставшемся ищем интересующий нас виджет.
    5. Возвращаем результат.
  • Как проверить сайдбар на отображение на сайте?

    @denism300 Автор вопроса
    VasyaID, я прекрасно знаю, как выводить сайдбары по условию наличия в нем виджетов. Однако, мне требуется именно проверка на то, присутствует ли сайдбар на странице или нет.
  • Где найти dmg Microsoft Remote Desktop для MacOS 10.13?

    @denism300 Автор вопроса
    Drno, спасибо, буду пробовать
  • Где найти dmg Microsoft Remote Desktop для MacOS 10.13?

    @denism300 Автор вопроса
    не скачивает. Ругается, что не подходит и все.
  • Как работает шаблон OpenCart?

    @denism300 Автор вопроса
    спасибо!
    вот это
    Если редактировать через админку - то изменения сохраняются в базе данных oc_theme, и грузятся оттуда.

    и это
    если важно, чтобы изменения не затирались при обновлении, допустим, темы или cms, то лучше их делать модификаторами.

    не знал.
  • Как найти форму по имени FormIt ModX?

    @denism300 Автор вопроса
    archelon, я догадываюсь, что в чанках. Как ее идентифицировать? В смысле, как понять, что вот этот вот конкретный чанк выводит форму form-1?
  • Как запустить скрип Python из Cron?

    @denism300 Автор вопроса
    так он, по идее, должен в лог это записать? или нет? я не сильно спец по nix
  • Почему возникает ошибка "Uncaught Error: Using $this when not in object context"?

    @denism300 Автор вопроса
    FanatPHP, в строке
    if(!$this->a)
    ошибся с номером. не 5, а 4