This topic is locked

PHP Error on any page

5/26/2007 9:51:59 AM
PHPRunner General questions
jxd author

Hello,
The follozwing error is displayed every time I open a page build by PHPRunner :
PHP error happened
Technical information

Error type 2

Error description Unknown: 1 result set(s) not freed. Use mysql_free_result to free result sets which were requested using mysql_query()

URL 127.0.0.1/staff_list.php?

Error file Unknown

Error line 0

SQL query select `StaffId`, `FirstName`, `LastName`, `EmailAddress` From `staff`
How can I correct this?

Alexey admin 5/28/2007

Hi,
to get rid of these messages set

mysql.trace_mode to 0 in your php.ini file.

Or add this line to generated include\dbcommon.php file:

ini_set("mysql.trace_mode",0);


Thank you for pointing me to this issue.

The next version of PHPRunner will work fine with your PHP configuration.