bugphpGroupWare - Bugs: bug #7983, Post Install-First Run Fails

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #7983: Post Install-First Run Fails

Submitter:  Jose C <sfhc>
Submitted:  Wed 03 Mar 2004 08:48:36 AM UTC
   
 
Category:  API - Setup Item Group:  0.9.16.000 release
Severity:  3 - Normal Priority:  6
Status:  Invalid Privacy:  Public
Assigned to:  skwashd Open/Closed:  Closed
Component Version:  TGZ Operating System:  MS Windows
Reproducibility:  Every Time Planned Release:  None
Fixed Release: 

Sun 06 Jun 2004 11:23:30 PM UTC, comment #2: 

Closed due to no response after 2 weeks of followup being posted

Dave Hall <skwashd>
Group administrator
Tue 16 Mar 2004 02:11:17 PM UTC, comment #1: 

The sessions bug will be fixed shortly.  What is the output in the apache logs when it dies?

btw I hope this is a test box.  win98 is not a good idea for a live site imho

Dave Hall <skwashd>
Group administrator
Wed 03 Mar 2004 08:48:36 AM UTC, original submission:  

When I first load up groupware after install and configure I get the following errors:

Warning: session_start(): The session id contains invalid characters, valid characters are only a-z, A-Z and 0-9 in c:\program files\apache group\apache\htdocs\phpgw\phpgroupware\phpgwapi\inc\class.sessions_php4.inc.php on line 40

Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at c:\program files\apache group\apache\htdocs\phpgw\phpgroupware\phpgwapi\inc\class.sessions_php4.inc.php:40) in c:\program files\apache group\apache\htdocs\phpgw\phpgroupware\phpgwapi\inc\class.sessions_php4.inc.php on line 40

Warning: Cannot modify header information - headers already sent by (output started at c:\program files\apache group\apache\htdocs\phpgw\phpgroupware\phpgwapi\inc\class.sessions_php4.inc.php:40) in c:\program files\apache group\apache\htdocs\phpgw\phpgroupware\phpgwapi\inc\class.phpgw.inc.php on line 136

Warning: Unknown(): The session id contains invalid characters, valid characters are only a-z, A-Z and 0-9 in Unknown on line 0


-- The reason that php returns this error is that $sessionid has no value.  The fix to this error is to add the following lines of code: (at about line 40 where the error is returned)

function read_session($sessionid)
{

if(!empty($sessionid)){
session_id($sessionid);
}
session_id($sessionid);
session_start();
return $GLOBALS['phpgw_session'] = $_SESSION['phpgw_session'];
}

After I do this the following error occurs:
1. The login box is displayed
2. I login
3. Nothing happens.  The login box goes away, leaving a totally blank page (as in NO output from the script.)

Why isn't phpgroupware working?

I am running win98, apache 1.3.28, and php 4.3.4


Jose C <sfhc>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

CC list is empty

 

There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

 

Follow 3 latest changes.

Date Changed by Updated Field Previous Value => Replaced by
2004-06-06 skwashd StatusNone Invalid
    Open/ClosedOpen Closed
2004-03-16 skwashd Assigned toNone skwashd

Back to the top

Powered by Savane 3.13-4b48.
Corresponding source code