最近想搞个2-plan team看看,是不是适合小型团队任务管理
### Installation instructions ### 1. Unpack the archive. 2. Upload everything, including the empty /files and /templates_c folders, to your server. (Optionally you need to create /templates_c and /files manually before installation.) 3. Make the following folders & files writable: - /templates_c - /files - /config/standard/config.php 4. Create a new MySQL database for 2-plan. 5. Point your browser to install.php and follow the instructions given. 6. If the installation was successful, delete install.php and update.php.
sudo apt-get install tassel sudo tasksel install lamp-server
mkdir 2-plan-team tar xvf 2-plan-team.tgz -C 2-plan-team cp -r 2-plan-team /var/www #改变目录的权限,使apache能够操作 sudo chown www-data:www-data /var/www/2-plan-team -R
DocumentRoot /var/www/2-plan-team <Directory /> Options FollowSymLinks AllowOverride None </Directory> <Directory /var/www/> Options Indexes FollowSymLinks MultiViews AllowOverride None Order allow,deny allow from all </Directory>
sudo service apache2 restart
sudo service apache2 restart
mysql> GRANT ALL PRIVILEGES ON *.* TO username@localhost IDENTIFIED BY “password";
mysql>exit
mysql -u username -p
mysql>create database 2plan
sudo rm -f /var/www/2-plan-team/install.php /var/www/2-plan-team/update.php
原文:http://www.cnblogs.com/zelos/p/3512932.html