x

Main chapters

  1. LimeSurvey Cloud vs LimeSurvey CE
  2. LimeSurvey Cloud - Quick start guide
  3. LimeSurvey CE - Installation
  4. How to design a good survey (Guide)
  5. Getting started
  6. LimeSurvey configuration
  7. Introduction - Surveys
  8. View survey settings
  9. View survey menu
  10. View survey structure
  11. Introduction - Questions
  12. Introduction - Question Groups
  13. Introduction - Surveys - Management
  14. Survey toolbar options
  15. Multilingual survey
  16. Quick start guide - ExpressionScript
  17. Advanced features
  18. General FAQ
  19. Troubleshooting
  20. Workarounds
  21. License
  22. Version change log
  23. Plugins - Advanced
 Actions

Installation using a command line interface (CLI)

From LimeSurvey Manual

Revision as of 21:07, 16 May 2015 by Nickdsl (talk | contribs) (Created page with "Доступны следующие команды: - install - message - migrate - plugin - resetpassword - shell - webapp")

Введение

При выполнении автоматизированной установки, как при настройке виртуальной машины, мы можем использовать использовать 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.