dlee5400 wrote on Monday, November 23, 2009:
Windows Server 2003
PHP Version 5.2.11
MySQL: 5.1.40
Nothing generated into: “php-errors.log”
The system does nothing other than produces a blank screen?
I saw another post were the advice was to replace the following:
require_once(“library/classes/Controller.class.php”); WITH require_once ($GLOBALS . “/library/classes/Controller.class.php”);
I tried and that had no impact on the issue. In hopes of helping in the debuging here is my page source on my test box:
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.0 Frameset//EN”>
<HTML><HEAD><TITLE>OpenEMR</TITLE>
<META content=“text/html; charset=utf-8” http-equiv=Content-Type>
<SCRIPT type=text/javascript src="…/…/library/topdialog.js"></SCRIPT>
<SCRIPT language=JavaScript>
// login.php makes sure the session ID captured here is different for each
// new login. We maintain it here because most browsers do not have separate
// cookie storage for different top-level windows. This function should be
// called just prior to invoking any server script that requires correct
// session data. onclick=“top.restoreSession()” usually does the job.
//
var oemr_session_name = ‘OpenEMR’;
var oemr_session_id = ‘d3m0gkjc75sis6ljlk87t7tbo3’;
//
function restoreSession() {
var ca = document.cookie.split(’; ‘);
for (var i = 0; i < ca.length; ++i) {
var c = ca_.split(’=’);
if (c == oemr_session_name && c != oemr_session_id) {
document.cookie = oemr_session_name + ‘=’ + oemr_session_id + ‘; path=/’;
}
}
return true;
}
</SCRIPT>
<!- border (mozilla) and framespacing (ie) are the same thing. -><!- frameborder specifies a 3d look, not whether there are borders. -></HEAD><FRAMESET
frameSpacing=1 border=1 onunload=imclosing() frameBorder=1 rows=20,*><FRAME
noResize src=“main_title.php” frameBorder=1 name=Title scrolling=no><FRAMESET
id=fsbody frameSpacing=4 border=4 onunload=imclosing() cols=130,*
frameBorder=1><FRAMESET frameSpacing=0 border=0 onunload=imclosing()
frameBorder=0 rows=*,0><FRAME src=“left_nav.php” name=left_nav><FRAME
frameSpacing=0 border=0 src=“daemon_frame.php” frameBorder=0 name=Daemon
scrolling=no></FRAMESET><FRAMESET id=fsright borderColor=#999999
onunload=imclosing() frameBorder=1 rows=60%,*><FRAME src=“main_info.php”
name=RTop><FRAME src=“authorizations/authorizations.php”
name=RBot></FRAMESET></FRAMESET></FRAMESET></HTML>
Thanks!!_