- 完成登录、个人中心等界面,风格 Material Design
- 时间要求: 1-2小时
- git-flow版本管理
- 请提供可供查看代码的在线地址或项目压缩包
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// change by vohn 21406360@qq.com 2015-12-10 | |
/* | |
附件为ecshop 将session 存储到Redis类 ,在php 5.3,5.4下测试能过. | |
请修改init.php加载 redis 类,请在config.php 定义$session_type | |
if ($session_type =="redis") | |
{ | |
require(ROOT_PATH . 'includes/cls_Redis_session.php'); | |
$sess = new cls_Redis_session($db, $ecs->table('sessions'), $ecs->table('sessions_data'), 'ECSCP_ID'); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## Install NGINX ############## | |
# Install software-properties-common package to give us add-apt-repository package | |
sudo apt-get install -y software-properties-common | |
# Install latest nginx version from community maintained ppa | |
sudo add-apt-repository ppa:nginx/stable | |
# Update packages after adding ppa |