gutiersa wrote on Friday, September 30, 2011:
In openemr4.1………(Windows vista, XAMPP)
billing – does not work in openemr
These are the changes I made to the following files:
1. openemr\interface\billing\billing_report.php, at or about line 490:
changed
<a href=’…/…/library/freeb/process_bills.php’ target=’_blank’ class=‘link_submit’
to
<a href=’…/…/library/freeb/process_bills.log’ target=’_blank’ class=‘link_submit’
2. openemr\library\freeb\process_bills.php, at the begining:
//require_once(dirname(__FILE__) . “/…/sql.inc”);
require_once("{$GLOBALS}/sql.inc");
//require_once(dirname(__FILE__) . “/…/…/includes/config.php”);
require_once($GLOBALS . “/config.php”);
//require_once(dirname(__FILE__) . “/…/billing.inc”);
require_once("{$GLOBALS}/billing.inc");
3. openemr\library\billing.inc at the top:
//require_once(dirname(__FILE__) . “/sql.inc”);
require_once($GLOBALS . “/config.php”);
Now it works for me.