FORUMS


The Form Tools forums are no longer active, but the old posts have been archived here. Please see the Help page on how to get help / report issues.

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Sorry, that password does not match.
#11
(Sep 13th, 2009, 9:55 AM)Ben Wrote: Hi Andrej,

Did you update the core and the API as well?

- Ben

Yes I updated both. If I update API only is OK. When I update also core, I came to the problem.

Regards, Andrej
Reply
#12
Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with this:

PHP Code:
<?php

if ($g_session_type == "database")
  
$sess = new SessionManager();

if (!empty(
$g_session_save_path))
    
session_save_path($g_session_save_path);

session_start();
header("Cache-control: private");
header("Content-Type: text/html; charset=utf-8");

$folder dirname(__FILE__);
require_once(
"$folder/library.php"); 

(No closing PHP tag necessary).

Then try re-logging in.

Let me know!

- Ben
Reply
#13
(Sep 14th, 2009, 9:47 AM)Ben Wrote: Hmm. Try this: upgrade to the latest version, then replace your /global/session_start.php with this:

PHP Code:
<?php

if ($g_session_type == "database")
  
$sess = new SessionManager();

if (!empty(
$g_session_save_path))
    
session_save_path($g_session_save_path);

session_start();
header("Cache-control: private");
header("Content-Type: text/html; charset=utf-8");

$folder dirname(__FILE__);
require_once(
"$folder/library.php"); 

(No closing PHP tag necessary).

Then try re-logging in.

Let me know!

- Ben

Tnak you. I'm able to log, but haven't test any functionality. I believe will be OK. Smile
Reply
#14
How very strange!

The new code I posted for you SHOULD be wrong, but if it works it works...

I'll log this as a bug and look into it again. Note: DON'T upgrade until you see a fix for this, otherwise it may overwrite your fix.

- Ben
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)