This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shutter настройка доп модулей | |
Go to the official download webpage for gnome-web-photo for Ubuntu 16.04. | |
Select a mirror and download gnome-web-photo_0.10.6-1_amd64.deb | |
Open the terminal and change directories using cd to the directory that contains the gnome-web-photo_0.10.6-1_amd64.deb file that you downloaded. | |
Install gnome-web-photo with the following command. | |
sudo apt install ./gnome-web-photo_0.10.6-1_amd64.deb | |
---------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Подключение (header.php) | |
<? | |
include $_SERVER['DOCUMENT_ROOT']."/include/mobile_detect.php"; | |
$detect = new Mobile_Detect; | |
?> | |
----------------------------------------------------------------- | |
Использование проверки | |
<? if($detect->isMobile()): ?> | |
.... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
область включаемая по параметру: | |
<? if($_GET["cmd"]=="slider"): ?> | |
... | |
<? endif; ?> | |
работать будет при указании в доп. параметрах /?cmd=slider | |
--------------------------------------------------------------------------------------------- | |
Константы файла after_connect.php (bitrix/php_interface/after_connect.php) | |
<? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<title><?php bloginfo('name'); ?></title> | |
<link rel="stylesheet" href=<?php bloginfo('stylesheet_url'); ?>> | |
<h1><?php bloginfo('name'); ?></h1> | |
<p>Кодировка: <?php bloginfo('charset'); ?> </p> | |
<p><?php bloginfo('description'); ?> </p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Установка | |
Самый популярный способ испльзования sass - в тандеме с gulp и node.js | |
Перед началом использования надо убедиться что установлены последние версии оных. | |
gulp -v | |
nmp -v | |
В папке проекта запускаем терминал и выполняем npm init | |
При создании манифеста-файла (packege.json) можно многое оставить по умолчанию. | |
Сюда же устанавливаем gulp и gulp-css | |
npm i --save-dev gulp pulp-sass | |
В папке проекта создана папка модулей node.js - node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm - nodejs packege manager | |
Основные команды: | |
npm ls -g - покажет список пакетов установленных глобально. если ничего нет выведет empty | |
npm ls -g --depth=0 - покажет только те пакеты которые мы устанавливали сами (нулевой уровень вложенности) | |
npm ls --depth=0 - внутри папки проекта покажет какие пакеты установлены локально | |
1. Устанавливаю node.js | |
https://nodejs.org/en/ беру стабильную |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Используемые символы и значения: | |
======================================================== | |
. – точка, заменяет любой символ (кроме символа перевода строки /n), но только один; | |
^ – спецсимвол начала строки; | |
() – группировка; | |
$ – спецсимвол конца строки; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
День 1, файл htaccess, php.ini, модули, настройка, переменные и ссылки. | |
Почему отказались от полной обратной совместимости версий? | |
В 5.3 отказались от этой идеи. Т.к. приходиться тянуть "мусор". | |
Теперь сначала некоторые устаревающие версии помечаются как "деприкейтед", в дальнейшем этот устаревший функционал удаляется. | |
Настройка htaccess | |
Сервер сначала просматривает собственные настройки, затем когда обращается к папке сайта ищет там файл htaccess и переопределяет настройки, если нужно, или добавляет к своим. Эти настройки распространяются только к данной папке. | |
С помощью этого файла можем также настраивать конфигурацию PHP |
NewerOlder