Install XODA Document Management System in CentOS Linux

Source: Internet
Author: User

XODA is a simple document management system. It is developed using PHP and AJAX without database. It can edit additional descriptions, tags, and categories for files and directories, and perform regular operations, such as copying, moving, renaming, and deleting. XODA Website: http://www.xoda.org.
In his introduction, the author said that DreamHost, the author's favorite host provider, provided 50 GB of backup space, so he uploaded a lot of personal files on it. A web server runs on the remote host, and a good sorting and searching tool is required. He has found many open-source document management systems, but all of them need to have SQL meta information for storing documents and files at the backend. No one is what he wants, so he developed XODA.

The following describes how to install the XODA Document Management System in CentOS Linux.

1. install apache and php

yum install httpd php php-bcmath php-gd php-mbstring php-xml php-process

Apache should be set to support pseudo-static. It is recommended that POSIX be supported for php and install php-process. The specific configuration process of apache and php is skipped.

2. Install XODA
The latest version is xoda-0.4.6.

cd /tmp
wget http://sourceforge.net/projects/xoda/files/xoda/xoda-0.4.6/xoda-0.4.6.tar.bz2/download
tar -jxvf xoda-0.4.6.tar.bz2
mv xoda-0.4.6 /var/www/html/xoda
chown -R apache:apache /var/www/html/xoda
cd /var/www/html/xoda/
cp config.sample.php config.php

3. Set the file storage location

vim config.php

Set:

define('ROOT_DIR', 'files/');
define('META_DIR', '.xoda/');

Change to the required path:

define('ROOT_DIR', '/home/xoda/files/');
define('META_DIR', '/home/xoda/.xoda/');

Create a directory and set a user group:

mkdir -p /home/xoda/files/
mkdir -p /home/xoda/.xoda/
chown -R apache:apache /home/xoda/
chown -R apache:apache /home/xoda/

4. Access http: // IP/xoda through a browser
Use the default username admin and password xoda to log on. After logging in, you can change the Password in Settings> Password.

References:

Http://www.xoda.org/article/xoda-manual

XODA details: click here
XODA: click here

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.