Actions

Installation using a command line interface (CLI)/en: Difference between revisions

From LimeSurvey Manual

(Created page with "<source lang="bash"> cd /var/www/limesurvey/application/commands php console.php </source> Будет показано: <pre> Yii command runner (based on Yii v1.1.14) При...")
(Created page with "Доступны следующие команды: - install - message - migrate - plugin - resetpassword - shell - webapp")
Line 22: Line 22:
Применение: console.php <command-name> [parameters...]
Применение: console.php <command-name> [parameters...]


The following commands are available:
Доступны следующие команды:
  - install
  - install
  - message
  - message

Revision as of 21:07, 16 May 2015

Введение

При выполнении автоматизированной установки, как при настройке виртуальной машины, мы можем использовать использовать Limesurvey (имеется ввиду v2.x) CLI (интерфейс командной строки). Файлы, используемые для этой цели (и для сброса паролей, а) находятся в папке WEBROOT/application/commands,а один из интересующих нас файлов - console.php.

Предварительные условия

  • Доступность PHP CLI
  • Доступность файла WEBROOT/application/config/config.php с параметрами автоматической установки.
  • Разрешения на папку с PHP модулями должны совпадать с требованиями LimeSurvey
  • Должна быть создана пустая база данных MySQL и пользоваться данной базой должен пользователь с соответствующими на нее правами.

Применение

В демонстрационном примере предполагается, что WEBROOT (корень Web-сервера) это директория /var/www/limesurvey

cd /var/www/limesurvey/application/commands
php console.php

Будет показано:

Yii command runner (based on Yii v1.1.14)
Применение: console.php <command-name> [parameters...]

Доступны следующие команды:
 - install
 - message
 - migrate
 - plugin
 - resetpassword
 - shell
 - webapp

To see individual command help, use the following:
   console.php help <command-name>

Syntax

php console.php <Admin User Name> <Admin User Password> <Full Name> <EMail ID>
  • The Full Name and password are enclosed in double quotes if they contain spaces or other special characters.
  • All other parameters like DB Name, DB Type, DB User, DB Password, etc are to be populated in the config.php file before script execution.
  • The script should be executed from and in the WEBROOT/application/commands folder only.

Example

cd /var/www/limesurvey/application/commands
php console.php install limeadmin pwd123 Admin admin@mydomain.com

outputs the following text:

/var/www/limesurvey/installer/sql/create-mysql.sql

and the database should be properly installed.