linux下實現問卷調查系統

技術小阿哥發表於2017-11-27

LimeSurvey是一款線上問卷管理系統,具有問卷的設計、修改、釋出、回收和統計等多項功能。同時它也是一個開源軟體,其最新版本的軟體包可以完全免費獲取和使用。它整合了調查程式開發、調查問卷的釋出以及資料收集等功能,使用它,使用者不必瞭解這些功能的程式設計細節。 網上收集的調查資料可以匯出多種檔案格式以便分析,例如 spss資料格式 *.dat檔案。

limesurvey重要特點

1、LimeSurvey是一個基於WEB的投票系統,它支援MySQL/PostgreSQL/SQL Server

2、LimeSurvey總計有49種語言/方言版本,它使用UTF-8字符集(易於國際化)。這些版本主要包括:阿爾巴尼亞,巴斯克語,中文,克羅埃西亞,丹麥語,荷蘭語,芬蘭語,法語,加利西亞語,德語,希臘語,匈牙利語,希伯來語,義大利語,日語,葡萄牙語,俄語,塞爾維亞語,斯洛維尼亞語,西班牙語,瑞典語,以及其他一些不完全的翻譯版本。

3、國內的積沙調查網就是使用的limesurvey哦!

實驗環境centos-5.5

實驗軟體

在安裝軟體前,先安裝LAMP結構這裡選用,yum安裝

yum install -y httpd* mysql* php*

limesurvey200plus-build130526.tar.gz

service mysqld restart

Stopping mysqld:  [  OK  ]

Starting mysqld:  [  OK  ]

service httpd restart

Stopping httpd: [  OK  ]

Starting httpd: [  OK  ]

tar zxvf limesurvey200plus-build130526.tar.gz

mv limesurvey /var/www/html/limesurvey

cd /var/www/html/limesurvey/

-rw-r–r–  1 2029 2029 5716 May 26 14:54 index.php

chmod +x index.php 

-rwxr-xr-x  1 2029 2029 5716 May 26 14:54 index.php

vim /etc/passwd

apache:x:48:48:Apache:/var/www:/sbin/nologin

chown  -R  apache:apache .

mysqladmin  -uroot password 123456

[root@localhost ~]# mysql -uroot -p

Enter password:

Welcome to the MySQL monitor.  Commands end with ; or g.

Your MySQL connection id is 3

Server version: 5.1.69 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its

affiliates. Other names may be trademarks of their respective

owners.

Type `help;` or `h` for help. Type `c` to clear the current input statement.

mysql>

測試

http://伺服器ip/limesurvey

202638619.png



202748497.png

選擇語言為,簡體中文,點選start installation


211706510.png




211844424.png






212111770.png



212742301.png

212743640.png

212743878.png

212744391.png

212746429.png

輸入使用者名稱 admin  密碼 passwd


212943144.png

到此為止,一個簡單的問卷調查系統完成

本文轉自 mailfile 51CTO部落格,原文連結:http://blog.51cto.com/mailfile/1217536,如需轉載請自行聯絡原作者


相關文章