- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的登录 Controller 中,我已将所有用户数据存储在 session 中。我也通过打印验证了
all_userdata();
当重定向到另一个 Controller home时, session 被破坏。请帮我解决这个问题。 session 数据如下。
Array
(
[session_id] => 11c8450a10e6f944c97f13841ccea0c2
[ip_address] => 127.0.0.1
[user_agent] => Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36
[last_activity] => 1408779229
[user_data] =>
[id] => 432
[empid] => 1024
[username] =>
[email] => <a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="8ee9f8fdf8e7e0eff7efe5cee9e3efe7e2a0ede1e3" rel="noreferrer noopener nofollow">[email protected]</a>
[fullname] => G V S Vinayak
[usertype] => staff
[logged_in] => 1
[access] => Array
(
[menu] => Array
(
[0] => Array
(
[menu_title] => Home
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 1
)
[1] => Array
(
[menu_title] => Blocked Domains
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 2
)
[2] => Array
(
[menu_title] => List of Companies
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 3
)
[3] => Array
(
[menu_title] => Full Registrations
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 3
[id] => 4
)
[4] => Array
(
[menu_title] => Partial Registrations
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 3
[id] => 5
)
[5] => Array
(
[menu_title] => Staff
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 6
)
[6] => Array
(
[menu_title] => Add Satff
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 6
[id] => 8
)
[7] => Array
(
[menu_title] => View All
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 6
[id] => 9
)
[8] => Array
(
[menu_title] => Cloud Instances
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 7
)
[9] => Array
(
[menu_title] => Search
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[parent] => 0
[id] => 10
)
)
[companytabs] => Array
(
[0] => Array
(
[tab_name] => Company Profile
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 1
)
[1] => Array
(
[tab_name] => VM Details
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 2
)
[2] => Array
(
[tab_name] => Support
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 3
)
[3] => Array
(
[tab_name] => Monitors
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 4
)
[4] => Array
(
[tab_name] => Users
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 5
)
[5] => Array
(
[tab_name] => Orders
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 6
)
[6] => Array
(
[tab_name] => Invoices
[can_edit] => 1
[can_delete] => 1
[can_view] => 1
[id] => 7
)
)
)
)
最佳答案
这与我在 IE7/IE8 上测试时遇到的问题相同。
我在这里找到了一个解决方案:http://www.philsbury.co.uk/blog/code-igniter-sessions
有人第三方修复了这个问题,它修补了 session Controller 。查看上面的链接内容,
解决方案:
1) 为此,您必须在 application/libraries 目录中创建一个新文件 Session.php。
2) 将以下源代码复制到新创建的文件中。
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
/**
* Session class using native PHP session features and hardened against session fixation.
*
* @package CodeIgniter
* @subpackage Libraries
* @category Sessions
* @author Dariusz Debowczyk
* @link http://www.codeigniter.com/user_guide/libraries/sessions.html
*/
class CI_Session {
var $flash_key = 'flash'; // prefix for "flash" variables (eg. flash:new:message)
function CI_Session()
{
$this->object =& get_instance();
log_message('debug', "Native_session Class Initialized");
$this->_sess_run();
}
/**
* Regenerates session id
*/
function regenerate_id()
{
// copy old session data, including its id
$old_session_id = session_id();
$old_session_data = $_SESSION;
// regenerate session id and store it
session_regenerate_id();
$new_session_id = session_id();
// switch to the old session and destroy its storage
session_id($old_session_id);
session_destroy();
// switch back to the new session id and send the cookie
session_id($new_session_id);
session_start();
// restore the old session data into the new session
$_SESSION = $old_session_data;
// update the session creation time
$_SESSION['regenerated'] = time();
// session_write_close() patch based on this thread
// http://www.codeigniter.com/forums/viewthread/1624/
// there is a question mark ?? as to side affects
// end the current session and store session data.
session_write_close();
}
/**
* Destroys the session and erases session storage
*/
function destroy()
{
unset($_SESSION);
if ( isset( $_COOKIE[session_name()] ) )
{
setcookie(session_name(), '', time()-42000, '/');
}
session_destroy();
}
/**
* Reads given session attribute value
*/
function userdata($item)
{
if($item == 'session_id'){ //added for backward-compatibility
return session_id();
}else{
return ( ! isset($_SESSION[$item])) ? false : $_SESSION[$item];
}
}
/**
* Sets session attributes to the given values
*/
function set_userdata($newdata = array(), $newval = '')
{
if (is_string($newdata))
{
$newdata = array($newdata => $newval);
}
if (count($newdata) > 0)
{
foreach ($newdata as $key => $val)
{
$_SESSION[$key] = $val;
}
}
}
/**
* Erases given session attributes
*/
function unset_userdata($newdata = array())
{
if (is_string($newdata))
{
$newdata = array($newdata => '');
}
if (count($newdata) > 0)
{
foreach ($newdata as $key => $val)
{
unset($_SESSION[$key]);
}
}
}
/**
* Starts up the session system for current request
*/
function _sess_run()
{
session_start();
$session_id_ttl = $this->object->config->item('sess_expiration');
if (is_numeric($session_id_ttl))
{
if ($session_id_ttl > 0)
{
$this->session_id_ttl = $this->object->config->item('sess_expiration');
}
else
{
$this->session_id_ttl = (60*60*24*365*2);
}
}
// check if session id needs regeneration
if ( $this->_session_id_expired() )
{
// regenerate session id (session data stays the
// same, but old session storage is destroyed)
$this->regenerate_id();
}
// delete old flashdata (from last request)
$this->_flashdata_sweep();
// mark all new flashdata as old (data will be deleted before next request)
$this->_flashdata_mark();
}
/**
* Checks if session has expired
*/
function _session_id_expired()
{
if ( !isset( $_SESSION['regenerated'] ) )
{
$_SESSION['regenerated'] = time();
return false;
}
$expiry_time = time() - $this->session_id_ttl;
if ( $_SESSION['regenerated'] <= $expiry_time )
{
return true;
}
return false;
}
/**
* Sets "flash" data which will be available only in next request (then it will
* be deleted from session). You can use it to implement "Save succeeded" messages
* after redirect.
*/
function set_flashdata($key, $value)
{
$flash_key = $this->flash_key.':new:'.$key;
$this->set_userdata($flash_key, $value);
}
/**
* Keeps existing "flash" data available to next request.
*/
function keep_flashdata($key)
{
$old_flash_key = $this->flash_key.':old:'.$key;
$value = $this->userdata($old_flash_key);
$new_flash_key = $this->flash_key.':new:'.$key;
$this->set_userdata($new_flash_key, $value);
}
/**
* Returns "flash" data for the given key.
*/
function flashdata($key)
{
$flash_key = $this->flash_key.':old:'.$key;
return $this->userdata($flash_key);
}
/**
* PRIVATE: Internal method - marks "flash" session attributes as 'old'
*/
function _flashdata_mark()
{
foreach ($_SESSION as $name => $value)
{
$parts = explode(':new:', $name);
if (is_array($parts) && count($parts) == 2)
{
$new_name = $this->flash_key.':old:'.$parts[1];
$this->set_userdata($new_name, $value);
$this->unset_userdata($name);
}
}
}
/**
* PRIVATE: Internal method - removes "flash" session marked as 'old'
*/
function _flashdata_sweep()
{
foreach ($_SESSION as $name => $value)
{
$parts = explode(':old:', $name);
if (is_array($parts) && count($parts) == 2 && $parts[0] == $this->flash_key)
{
$this->unset_userdata($name);
}
}
}
}
?>
3) 然后加载库,
$this->load->library('session');
关于php - 重定向后在 codeigniter 中销毁 session ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25459807/
我正在尝试使用谷歌浏览器的 Trace Event Profiling Tool分析我正在运行的 Node.js 应用程序。选择点样本后,我可以在三种 View 之间进行选择: 自上而下(树) 自上而
对于一个可能是菜鸟的问题,我们深表歉意,但尽管在 SO 上研究了大量教程和其他问题,但仍找不到答案。 我想做的很简单:显示一个包含大量数据库存储字符串的 Android ListView。我所说的“很
我已经开始了一个新元素的工作,并决定给 Foundation 5 一个 bash,看看它是什么样的。在创建带有水平字段的表单时,我在文档中注意到的第一件事是它们使用大量 div 来设置样式。所以我在下
我有一个 Windows 窗体用户控件,其中包含一个使用 BeginInvoke 委托(delegate)调用从单独线程更新的第 3 方图像显示控件。 在繁重的 CPU 负载下,UI 会锁定。当我附加
我有一堆严重依赖dom元素的JS代码。我目前使用的测试解决方案依赖于 Selenium ,但 AFAIK 无法正确评估 js 错误(addScript 错误不会导致您的测试失败,而 getEval 会
我正在制作一款基于滚动 2D map /图 block 的游戏。每个图 block (存储为图 block [21][11] - 每个 map 总共 231 个图 block )最多可以包含 21 个
考虑到以下情况,我是前端初学者: 某个 HTML 页面应该包含一个沉重的图像(例如 - 动画 gif),但我不想强制客户缓慢地等待它完全下载才能享受一个漂亮的页面,而是我更愿意给他看一个轻量级图像(例
我正在设计一个小软件,其中包括: 在互联网上获取资源, 一些用户交互(资源的快速编辑), 一些处理。 我想使用许多资源(它们都列在列表中)来这样做。每个都独立于其他。由于编辑部分很累,我想让用户(可能
我想比较两个理论场景。为了问题的目的,我简化了案例。但基本上它是您典型的生产者消费者场景。 (我关注的是消费者)。 我有一个很大的Queue dataQueue我必须将其传输给多个客户端。 那么让我们
我有一个二元分类问题,标签 0 和 1(少数)存在巨大不平衡。由于测试集带有标签 1 的行太少,因此我将训练测试设置为至少 70-30 或 60-40,因此仍然有重要的观察结果。由于我没有过多地衡量准
我是一名优秀的程序员,十分优秀!