OpenEMR stopped responding

rmishler100 wrote on Wednesday, June 27, 2012:

Hi guys. I’m sure the solution is simple but I am completely stumped. I changed the Sex selection style from drop-down list to Radio Buttons. The Save button on the Demographics page no longer works. The problem is repeatable.
I have a known good database. I load the database, make the change to the Sex selector style, then open a patient record and make any change on the demographics page and the Save button does not cause anything to happen.
Any suggestions on what might be causing this problem? Is it a bug of some sort? How can I fix the problem?
By the way, as soon as the Save button stops working I am not able to add new clients either.

Thanks for your help.
richard

rmishler100 wrote on Wednesday, June 27, 2012:

Some additional information that may be helpful. OpenEMR is loaded on a Windows 7 Ultimate machine. The problem is browser independent and client O/S independent.
I sure would appreciate any help on resolving this.
Thanks.
Richard

mcaloon wrote on Wednesday, June 27, 2012:

Hey there, How about posting some pertinent log data from the apache2/error_log?

rmishler100 wrote on Wednesday, June 27, 2012:

mcaloon, I will be able to post the apache2/error_log in a couple of hours. Thanks for your help.

rmishler100 wrote on Thursday, June 28, 2012:

Hello mcaloon. Below is a snippet from the Apache/logs/error file. The snippet below repeats itself for many pages. The only thing that changes in each line is the time and the error line number.

   PHP Deprecated:  Assigning the return value of new by reference is deprecated in C:\\\\xampp-openemr-4.1.0\\\\xampp\\\\htdocs\\\\openemr\\\\library\\\\adodb\\\\adodb.inc.php on line 1940, referer: http://timsclinic.org/openemr/interface/login/login_frame.php?site=default

tmccormi wrote on Thursday, June 28, 2012:

That’s not an error, it’s a warning.  modify your php.ini to turn off warnings about deprecated code.

error_reporting = E_ALL & ~E_DEPRECATED & ~E_NOTICE

It won;t fix your problem but it will make finding real errors a bit easier

-Tony