Actions

Installation FAQ/es: Difference between revisions

From LimeSurvey Manual

(Created page with "<nowiki>http://<your_server> /<your_limesurvey_directory> /admin/install/phpinfo.php</nowiki>")
(Created page with "Se mostrará mucha información. Busque la cadena 'mbstring' en la sección '''Configuración'''. Si encuentra la sección mbstring, entonces todo debería estar bien y podrá...")
Line 63: Line 63:
  <nowiki>http://<your_server> /<your_limesurvey_directory> /admin/install/phpinfo.php</nowiki>
  <nowiki>http://<your_server> /<your_limesurvey_directory> /admin/install/phpinfo.php</nowiki>


A lot of information will be shown. Search for the string 'mbstring' in the '''Configuration''' section. If you find the mbstring section, then all should be well and you can continue with your LimeSurvey installation!
Se mostrará mucha información. Busque la cadena 'mbstring' en la sección '''Configuración'''. Si encuentra la sección mbstring, entonces todo debería estar bien y podrá continuar con la instalación de LimeSurvey.


'''If you don't find the mbstring section''', you might have a problem on your hands. There are three possible scenarios:
'''If you don't find the mbstring section''', you might have a problem on your hands. There are three possible scenarios:

Revision as of 10:30, 5 September 2023

Contenido:

Instalación en tu computadora

LimeSurvey se puede instalar en su computadora con MAMP/XAMPP o cualquier otro sistema. Tenga en cuenta que su computadora no es un servidor web: ningún otro usuario puede acceder a ella a través de la web.

Para que otros usuarios puedan acceder a su encuesta a través de la web, debe:

  • ¡poseer un servidor o un espacio web de un proveedor de alojamiento
  • o encontrar un proveedor de alojamiento especializado en LimeSurvey

Iniciando instalación

¿Cómo puedo crear una base de datos y un usuario en MySQL con acceso a la línea de comandos?

You have to enter the commands below in your MySQL:

  • create database ;<your_database_name> create database ;
  • create user ;<your_database_username> create user ;
  • create user @localhost;<your_database_username> create user @localhost;
  • set password for = PASSWORD(' ');<your_database_username> set password for = PASSWORD(' ');<your_database_password> set password for = PASSWORD(' ');
  • set password for @localhost = PASSWORD(' ');<your_database_username> set password for @localhost = PASSWORD(' ');<your_database_password> set password for @localhost = PASSWORD(' ');
  • grant all on .* to ' ';<your_database_name> grant all on .* to ' ';<your_database_username> grant all on .* to ' ';
  • grant all on .* to ' '@'localhost';<your_database_name> grant all on .* to ' '@'localhost';<your_database_username> grant all on .* to ' '@'localhost';

En la terminal, <your_database_name> , <your_database_username> y <your_database_password> debe reemplazarse con los valores correspondientes o deseados.

¿Qué pasa si no puedo crear una base de datos mediante un script?

Normalmente, el script crea una nueva base de datos y luego la estructura de la tabla. Sin embargo, si su servidor/ISP no le otorga derechos de administrador para crear una nueva base de datos en MySQL, deberá comunicarse con el administrador de su servidor para crear la base de datos necesaria (o crearla usted mismo si recibe los permisos necesarios). La base de datos en blanco recién creada debe incluir los derechos de acceso adecuados (es decir, leer/escribir/crear). Luego, debería poder iniciar la instalación de LimeSurvey, que creará las tablas dentro de la base de datos recién creada.

Página en blanco al acceder a la página de instalación

Este problema no ocurre dentro de la instalación de LimeSurvey sino dentro de la instalación de PHP.

  • Verifique que tenga instalado el módulo MySQL PHP (php-mysql).
  • Verifique que su instalación de PHP esté cargando el archivo PHP.ini están modificando y no analizando otros archivos PHP.INI en su sistema.
  • Verifique la ubicación y los permisos de la siguiente configuración en su PHP.ini:
upload_tmp_dir="/temp"

sesión.save_path="/temp"
  • Verifique que su servidor ejecute una versión PHP adecuada.

Mensajes de error debido a recursos no existentes

A veces, los archivos no se cargan correctamente o se dañan durante el proceso de carga. Esto lleva a varios mensajes de error diferentes. La mayoría de ellos se refieren a un archivo o función dentro de un archivo que no se puede encontrar.

Solución: Vuelva a cargar todos los archivos usando el modo binario de su programa FTP.

Página de requisitos

¿Qué es la biblioteca mbstring (Funciones de cadena multibyte)?

La biblioteca mbstring es una biblioteca PHP que puede convertir conjuntos de caracteres de un idioma a otro. Lo necesita si desea ejecutar LimeSurvey. Para comprobar si ya está instalado, abra la URL desde un navegador web:

http://<your_server> /<your_limesurvey_directory> /admin/install/phpinfo.php

Se mostrará mucha información. Busque la cadena 'mbstring' en la sección Configuración. Si encuentra la sección mbstring, entonces todo debería estar bien y podrá continuar con la instalación de LimeSurvey.

If you don't find the mbstring section, you might have a problem on your hands. There are three possible scenarios:

  • If it's your host provider's server, ask for the activation of that extension in PHP or for further information on how you can activate it - if you have a good administration panel for your server, you may be able to activate it yourself
  • If it's your own Linux server, you may have to re-compile PHP and include the mbstring library. Ask the Linux experts how to do that. However, you can install it using your Linux package manager, which is mostly available in all the Linux distributions nowadays
    • If you are using a version of Linux that supports 'yum' (CentOS, RedHat, Fedora)...
      • ...use the terminal (as a super user) and type: yum install php-mbstring
      • ...make sure to update /etc/php.ini and uncomment the various mbstring params
      • ...make sure to restart apache after installing it: /etc/init.d/httpd restart
  • If it's your own Windows server, search for php.ini on your system, open it with an editor, and search for mbstring. Most probably, the line that contains the string is commented out with a semicolon. Remove the semicolon, save and restart your web server

Stuck at checking file system permissions

If SELinux is activated (primarily on CentOS), then you might get an error that the file system permissions are not correct, even if the list of directories is empty. SELinux prevents writing even though the permissions are for example on 777 or 755. To configure SELinux correctly for your server - check out the SELinux documentation.

After database creation

Blank page after database creation

Symptoms

  • LimeSurvey is installed correctly and the database was created, but instead of the admin page, you get an empty page
  • Web server log shows "Fatal error: Call to a member function on a non-object in /path/to/limesurvey/admin/login_check.php on line 69"

Fix

This is probably related to an incorrect setting for $rooturl or $rootdir in config.php. The file config.php attempts to set $rootdir correctly by calling dirname('''FILE'''). While this usually works, it can be upset when LimeSurvey is installed in a user's home or public_html directory and the home directory is mounted over NFS. To set up the $rootdir manually, (your shell or pwd command may show you a path like /disks/hostname/home/username/public_html/limesurvey), try using /home/username/public_html/limesurvey.

When accessing the admin page, the browser keeps running and will eventually fail to show it

Symptoms

  • LimeSurvey is installed correctly and the database was created. However, when you access the admin page, the browser keeps running and will eventually fail to show the page
  • When you check the web server access log, its size has become quite big (in some cases, more than 2 GB)
  • Inside the access log, you get this message filling the log:
  Warning : fread() [function.fread]: Length parameter must be greater than 0 in /limesurvey/classes/php-gettext/streams.php on line 120.

The line number may be different depending on your LimeSurvey version.

Fix

This may be caused by the mbstring.func_overload setting. Change the following setting in the php.ini file:

mbstring.func_overload = 0
This means no function overloading. See the PHP manual for this setting: Function Overloading Feature.

When accessing the admin page, the browser reports Fatal error: Call to a member function gT() on a non-object in login_check.php on line 76

Symptoms

  • LimeSurvey is installed correctly and the database was created. But when redirected to the admin page, the browser displayed the listed error.
  • $rootdir and $rooturl are correctly set in config.php.
  • The disk path name for limesurvey installation directory includes one of the following characters: '(',')' or '+'.
  Attention : Other characters may also induce the same behavior.


Fix

Move/rename the LimeSurvey installation directory so that the path name includes non of the following characters: '(',')' or '+' characters.

After installation

For all the other issues that may occur after a successful installation, please refer to the troubleshooting page.