Skip to content

Instantly share code, notes, and snippets.

@4yvi
Created July 19, 2017 09:27
Show Gist options
  • Save 4yvi/cc288a35f4a20f2167924045deb9048c to your computer and use it in GitHub Desktop.
Save 4yvi/cc288a35f4a20f2167924045deb9048c to your computer and use it in GitHub Desktop.
Файл для Битрикс, который запускается через cron
#!/usr/bin/php
<?php
$_SERVER['DOCUMENT_ROOT'] = '/home/site/www';
$DOCUMENT_ROOT = $_SERVER['DOCUMENT_ROOT'];
// Запрешяем сбор статистики
define('NO_KEEP_STATISTIC', true);
// Запрет на проверку прав
define('NOT_CHECK_PERMISSIONS', true);
// Отключам лимит
set_time_limit(0);
// Устанавливаем язык
define('LANG', 'ru');
// Подключаем ядро Битрикс
require_once($_SERVER['DOCUMENT_ROOT'] . "/bitrix/modules/main/include/prolog_before.php");
// код...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment