Wishlist 0 ¥0.00

taskfreak简介及安装指南

 taskfreak是一款开源的基于PHP、Mysql的GTD工具,功能不是很多,但很实用。基于浏览器的操作方式,使用了ajax效果界面,用来进行日常的项目任务管理是很不错的工具。其官方网站为http://www.taskfreak.com/。
目前支持多用户的最新版本为v0.6.1,目前还没有相应的汉化版。目前汉化版最高版本为v0.5.1,可去http://www.wangyingqi.com/下载。

安装:
1、前提:安装并启动了xampp,如本机xampp的安装目录为D:/xampp。
2、上官方网站下载最新版本multi user / mySQL v0.6.1。
3、解压缩后,将解压后的taskfreak目录拷贝到D:/xampp/htdocs目录下。
4、在浏览器中浏览http://localhost:81/taskfreak/install/index.php,点击check install按钮,检查安装情况。我的机器上,检查的结果是:database not exist。
5、创建相应的Mysql数据库:确保启动了xampp后运行http://localhost:81/,进入xampp使用欢迎界面,选择左侧工具栏中的phpMyAdmin工具,创建数据库,数据库名为taskfreak,创建完成。
6、配置数据库:编辑D:/xampp/htdocs/taskfreak/include目录下的config.php文件,修改数据库配置,查找define('TZN_DB_BASE','taskfreak_strict')行,修改默认的数据库名taskfreak_strict为刚创建的taskfreak。
7、再次在浏览器中浏览http://localhost:81/taskfreak/install/index.php,点击check install按钮,检查安装情况。正常的话,应该此时已经能够连接到数据库了,但是会提示没有相应的county等数据表,选择创建数据表后,即可开始使用taskfreak了。默认的用户是admin,密码为空。
Ok,试试吧~

2 plan team 服务器搭建

 

最近想搞个2-plan team看看,是不是适合小型团队任务管理

下了个包,解压了,发现里面的readme太简单了

readme中的install相关的内容如下

### 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. 

没LAMP基础伤不起啊,求助了万能的google,总算搞定了

 

下面是具体过程

1. 安装 lamp的相关系列软件

参考自:https://help.ubuntu.com/community/ApacheMySQLPHP

sudo apt-get install tassel
sudo tasksel install lamp-server

安装过程中会要输入mysql的root密码,这个密码之后管理mysql和创建2-plan的数据库时需要用到

 

2.上传2-plan-team组件

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

 

3.更改apache的配置指向上面的目录

        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>

改完重启apache服务器

sudo service apache2 restart

 

4.添加2-plan使用的用户和数据库

4.1 创建用户

sudo service apache2 restart

输入1中提到的root的密码

mysql> GRANT ALL PRIVILEGES ON *.* TO username@localhost IDENTIFIED BY “password";

# username既是数据库使用者的用户名,password既是该用户的密码

mysql>exit

退出

4.2 创建数据库

使用新创建的密码登录

mysql -u username -p

输入4.1中的用户密码

mysql>create database 2plan

创建了名为2plan的数据库

 

5. 安装2-plan

浏览器中输入http://servername/install.php

servername是你的服务器名字或者ip,本地的服务器就是localhost,这里的话是192.168.1.101

就会出现如下内容:

step 1:设定语言和自检

 

step 2:设定数据库参数

Database host :mysql服务器的host名字,这边是localhost

Database name: 前面4.2创建的数据库名字, 2plan

Database user: 4.1中创建的用户也是创建了2plan数据库的用户

Database password:用户的密码

Database table prefix:数据库创建的表的前缀

输入完成之后continue

 

step 3:创建管理员账号

输入要创建的管理员的账号和密码,然后congtinue

 

安装完成登录即可

 

收尾

删除install.php和update.php

sudo rm -f /var/www/2-plan-team/install.php /var/www/2-plan-team/update.php

Mysql 8.0下载与安装详解,并修改安装路径

官网下载:https://dev.mysql.com/downloads/installer/

在这里插入图片描述
在这里插入图片描述
直接浏览器下载较慢,建议复制下载链接迅雷下载,很快。开始安装:
在这里插入图片描述
在这里插入图片描述

选择安装路径,点击右侧框里的Mysql,右下侧有蓝色advanced options字体,点击选择安装路径,很隐蔽

在这里插入图片描述
在这里插入图片描述

出现警报不用管,直接ok进入下一步

在这里插入图片描述
在这里插入图片描述

若缺少编译环境则需先安装编译插件,点中间的execute安装必要插件后,进入下一步

根据需求选取数据库引擎,这里默认第一个

在这里插入图片描述

3306端口不建议修改

在这里插入图片描述
在这里插入图片描述

设置数据库连接密码,下一步

在这里插入图片描述
MySQL80要记着是数据库服务的名字,windows下的数据库驱动名就是它,而不是mysql
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

打开安装好的mysql客户端,输入密码显示安装成功

mysql-installer-web-community和mysql-installer-communityl两个版本的区别

mysql的官网上提供了两个mysql共享版本的安装,一个20M,一个373.4M。二者的区别是前者是联网安装,当安装时必须能访问互联网,后者是离线安装使用的,一般建议下载离线安装使用的版本。
在这里插入图片描述

About Us

Since 1996, our company has been focusing on domain name registration, web hosting, server hosting, website construction, e-commerce and other Internet services, and constantly practicing the concept of "providing enterprise-level solutions and providing personalized service support". As a Dell Authorized Solution Provider, we also provide hardware product solutions associated with the company's services.
 

Contact Us

Address: No. 2, Jingwu Road, Zhengzhou City, Henan Province

Phone: 0086-371-63520088 

QQ:76257322

Website: 800188.com

E-mail: This email address is being protected from spambots. You need JavaScript enabled to view it.