Administrator -> Practice (Blank screen?)

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!!_

dlee5400 wrote on Monday, November 23, 2009:

k, the source didn’t copy into the box

<!- 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>

dlee5400 wrote on Monday, November 23, 2009:

k, i made a little progress today on this issue. I beleive it might have something to do with using the “localhost” root directory vs the production system’s actual webadress. I had installed this on the IIS server and was runing the test system out of my root directory and it generated a blank screen. But when i moved the system over to the production webaddress (ie. www.yourcompanysname.com) it allowed the page to display.

Still don’t know why but i suspect something in the way the code is mapping the directory.

Anyone that works with the “Practice” setup modules please advise?

thanks!

bradymiller wrote on Tuesday, November 24, 2009:

hey,

What are your settings for the path variables ($webserver\_root and $web\_root) in openemr/interface/globals.php file.

What are the http full addresses that your are using locally and for production?

-brady

dlee5400 wrote on Tuesday, November 24, 2009:

Here is the localhost:

    $webserver_root = “C:/Inetpub/wwwroot/openemr”;

and

    $web_root = “/openemr”;

dlee5400 wrote on Tuesday, November 24, 2009:

here is the http address on the test server:

    http://localhost/openemr/interface/login/login_frame.php

bradymiller wrote on Wednesday, November 25, 2009:

What is the http address of the production server?