From 64a60dd73120be50b6dffd1a2b24bcd7014c37c2 Mon Sep 17 00:00:00 2001 From: Anyon Date: Tue, 25 Apr 2017 11:37:36 +0800 Subject: [PATCH] =?UTF-8?q?[=E6=9B=B4=E6=96=B0]=E8=B0=83=E6=95=B4session?= =?UTF-8?q?=5Fname=E8=A7=84=E5=88=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + index.php | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 1383dd9e5..281c60475 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /runtime/ /composer.lock /public/upload +/nbproject diff --git a/index.php b/index.php index 01425bb12..f553d3d33 100644 --- a/index.php +++ b/index.php @@ -13,13 +13,13 @@ // +---------------------------------------------------------------------- /* SESSION会话名称 */ -session_name(md5(__FILE__)); +session_name('sess' . substr(md5(__FILE__)), 0, 8); /* 定义应用目录 */ define('APP_PATH', __DIR__ . '/application/'); /* 定义Runtime运行目录 */ -define('RUNTIME_PATH', __DIR__ . '/static/~runtime/'); +define('RUNTIME_PATH', __DIR__ . '/static/runtime/'); /* 加载框架引导文件 */ require __DIR__ . '/thinkphp/start.php';