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