hos do I interpret this phpinfo response?

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
infomorelos
Forum Newbie
Posts: 2
Joined: Sat Apr 19, 2003 1:45 pm
Location: Cuernavaca, Mexico

hos do I interpret this phpinfo response?

Post by infomorelos »

I ran phpinfo on my server and got this response with identical local and master values regarding the MySQL connection:
Active Persistent Links 0
Active Links 0
mysql.allow_persistent On
mysql.max_links Unlimited
mysql.max_persistent Unlimited
mysql.trace_mode Off

The database works, but I wonder if '0 active persistent links' and that mysql.trace_mode is off is Ok?
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

php.ini wrote:; Trace mode. When trace_mode is active (=On), warnings for table/index scans and
; SQL-Erros will be displayed.
mysql.trace_mode = Off
Do you want all possible errors displayed or do you want to be able to track/handle them yourself?
Active Persistent Links 0
Active Links 0
then there are currently no active mysql-connections. The only way to change this is to run a script (request a page) that uses a mysql-connection ;)
Post Reply