OS:CentOS 5.3
Requirement:
httpd
php php-devel php-mysql
mysql mysql-server
joomla
1. 安裝相依套件
yum install httpd php php-devel php-mysql mysql mysql-server
/etc/init.d/httpd restart
chkconfig httpd on
/etc/init.d/mysqld restart
chkconfig mysqld on
2. 建立Joomla使用的資料庫
mysqladmin -u root password '管理者密碼'
mysql -u root -p
mysql> create database joomla;
mysql> grant all on joomla.* to joomla@localhost identified by 'joomla';
mysql> flush privileges;
3. 因為Joomla 1.6需使用PHP 5.2,所以將PHP升級至5.2
vi /etc/yum.repos.d/CentOS-Testing.repo
[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
includepkgs=php*
yum update php*
4. 下載Joomla 1.6,安裝
wget http://joomlacode.org/gf/download/frsrelease/13869/60198/Joomla_1.6.0-Stable-Full_Package.zip
mkdir /var/www/html/joomla
cp Joomla_1.6.0-Stable-Full_Package.zip /var/www/html/joomla/
cd /var/www/html/joomla/
unzip Joomla_1.6.0-Stable-Full_Package.zip
chown -R apache /var/www/html/joomla/
5. 配置Joomla
http://your Joomla server IP/joomla
5-1 選擇語言
5-2 環境偵測
5-3 合約授權
5-4 資料庫參數配置
5-5 FTP設定(可略過)
5-6 網站相關參數設定
5-7 完成,請將安裝目錄(installation)移除或是更名
mv installation/ installation_bk
6. 登入測試
前台
後台
參考文章:
http://www.joomla.org/
http://www.joomla.org.tw/
http://www.joomla.org.tw/downloads
2011年1月28日 星期五
2011年1月21日 星期五
會計系統 - FrontAccouting
OS:CentOS 5.3
Requirement:
httpd
php php-devel php-mysql
mysql mysql-server
frontaccount
1. 安裝相依套件
yum install httpd php php-devel php-mysql mysql mysql-server
2. 修改PHP相關參數
vi /etc/php.ini
session.auto_start = off
magic_quotes_gpc = off
register_globals = off
/etc/init.d/httpd restart
3. 下載FrontAccounting
wget http://sourceforge.net/projects/frontaccounting/files/FrontAccounting-2.3/2.3.2/frontaccount-2.3.2.zip/download
4. 安裝FrontAccounting
mkdir /var/www/html/account
cp frontaccount-2.3.2.zip /var/www/html/account/
cd /var/www/html/account
unzip frontaccount-2.3.2.zip
chown -R apache /var/www/html/account/
5. 建立FrontAccounting使用的資料庫
mysqladmin -u root password '管理者密碼'
mysql -u root -p
mysql> create database account;
mysql> grant all on account.* to front@localhost identified by 'front';
mysql> flush privileges;
mysql> quit
6. 配置FrontAccounting
http://FrontAccounting server URL/account/
6-1 環境偵測是否符合
6-2 輸入資料庫參數
6-3 輸入網站相關參數
6-4 配置完成
7. 驗證,登入
參考文章:
http://sourceforge.net/projects/frontaccounting/
http://frontaccounting.com/wb3/pages/download/installation-guide.php
Requirement:
httpd
php php-devel php-mysql
mysql mysql-server
frontaccount
1. 安裝相依套件
yum install httpd php php-devel php-mysql mysql mysql-server
2. 修改PHP相關參數
vi /etc/php.ini
session.auto_start = off
magic_quotes_gpc = off
register_globals = off
/etc/init.d/httpd restart
chkconfig httpd on
/etc/init.d/mysqld restart
chkconfig mysqld on
wget http://sourceforge.net/projects/frontaccounting/files/FrontAccounting-2.3/2.3.2/frontaccount-2.3.2.zip/download
4. 安裝FrontAccounting
mkdir /var/www/html/account
cp frontaccount-2.3.2.zip /var/www/html/account/
cd /var/www/html/account
unzip frontaccount-2.3.2.zip
chown -R apache /var/www/html/account/
5. 建立FrontAccounting使用的資料庫
mysqladmin -u root password '管理者密碼'
mysql -u root -p
mysql> create database account;
mysql> grant all on account.* to front@localhost identified by 'front';
mysql> flush privileges;
mysql> quit
6. 配置FrontAccounting
http://FrontAccounting server URL/account/
6-1 環境偵測是否符合
6-2 輸入資料庫參數
6-3 輸入網站相關參數
6-4 配置完成
7. 驗證,登入
參考文章:
http://sourceforge.net/projects/frontaccounting/
http://frontaccounting.com/wb3/pages/download/installation-guide.php
訂閱:
文章 (Atom)