Рейтинг:-1

Не предоставление пользователю доступа к веб-сайту в течение заданного периода времени

флаг ro

Мой клиент хочет отключить сайт с 00:00 до 06:00 и показать это сообщение пользователям. Как я могу добиться этого в drupal8

флаг ro
Этот сайт создан на drupal8.x
Kevin avatar
флаг in
Я уверен, что для этого есть несколько модулей. Режим обслуживания уже находится в ядре. Вам просто нужно переключить его состояние.
leymannx avatar
флаг ne
Да, задание cron на уровне сервера, которое активирует/деактивирует режим обслуживания с помощью команд Drush. Страница обслуживания может быть настроена. Все хорошо.
leymannx avatar
флаг ne
А затем иметь разрешение на использование сайта в режиме обслуживания, снятое с этой роли.
флаг ro
Я знаю о разделе «Техническое обслуживание» в админке drupal, но я хочу закрыть сайт на определенный временной интервал с 12:00 до 00:30.
Рейтинг:1
флаг ch

and welcome to StackExchange.

As stated in the comments on your question, you are essentially asking for Maintenance Mode, which is part of Drupal core. In your site, go to /admin/config/development/maintenance and look at the settings there. You can turn on Maintenance mode, and set the text that is shown to unauthorized users. There is also a permission setting (found on the permissions page) to still use the site in maintenance mode, in case you want to make edits while others cannot access the site.

To have this happen automatically based on time, you will want to use Cron. That is what Cron was built to do, so it is a perfect fit. In order to use Cron for this, you will need a handy bit of code that can do the same thing as the checkbox in the maintenance ui. Drush is a very powerful tool, and can do almost anything. To turn maintenance mode on, you could run this:

drush state:set system.maintenance_mode 1 --input-format=integer

That command is found and explained on this page. Now, you need to have that command run by cron instead of by a human on the server command line. Fortunately for you, Drupal has a long history of dynamically using custom code that you add, as long as the name matches. That is the hook system, where custom modules and functions matching certain patterns are called at certain times. You will want to create a custom module that uses hook_cron() to run that drush command at the designated times.

And finally, always clear cache before thinking something is broken.

флаг ro
Я знаю о разделе «Техническое обслуживание» в админке drupal, но я хочу закрыть сайт на определенный временной интервал с 12:00 до 00:30.

Ответить или комментировать

Большинство людей не понимают, что склонность к познанию нового открывает путь к обучению и улучшает межличностные связи. В исследованиях Элисон, например, хотя люди могли точно вспомнить, сколько вопросов было задано в их разговорах, они не чувствовали интуитивно связи между вопросами и симпатиями. В четырех исследованиях, в которых участники сами участвовали в разговорах или читали стенограммы чужих разговоров, люди, как правило, не осознавали, что задаваемый вопрос повлияет — или повлиял — на уровень дружбы между собеседниками.