Opened 14 years ago

Closed 14 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 14 years ago by Matti Järvinen

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

comment:2 Changed 14 years ago by Frederico Caldeira Knabben

Keywords: Pending added; SESSION Destroy removed
Milestone: CKEditor 3.x
Priority: HighNormal

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 14 years ago by Alfonso Martínez de Lizarrondo

Keywords: Pending removed
Resolution: duplicate
Status: newclosed

dup of #4707

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy