Opened 16 years ago
Closed 15 years ago
#4448 closed Bug (duplicate)
Sessions Internet explorer
Reported by: | joey | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | General | Version: | 3.0 |
Keywords: | Cc: |
Description
I have an admin site that sores a session in a folder using the following:
ini_set("session.save_handler", "files"); $_SESSIONusername? = $username;
header("Location: main.php");
Then I check the session with this:
function validSession($username) {
if (!isset($_SESSIONusername?)) {
$_SESSIONstatus? = "You must login"; header("Location: logout.php"); exit;
}
}
Everything works fine I can add text to the WYSIWYG and use every tool in the editor but as soon as I press the image button it destroys the session. This only happens in IE not firefox or Chrome
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
Keywords: | Pending added; SESSION Destroy removed |
---|---|
Milestone: | CKEditor 3.x |
Priority: | High → Normal |
The image dialog is a JavaScript file that runs in the browser. Aren't you talking about the "Browse Server" button present inside that dialog?
comment:3 Changed 15 years ago by
Keywords: | Pending removed |
---|---|
Resolution: | → duplicate |
Status: | new → closed |
dup of #4707
What version of IE this problem exists?
I assume you have session_start() in start of the file or session.auto_start 1 in php.ini
Sessions work for me with IE8 and CKEditor 3.1