Hi Everyone,
please see this URL,
http://www.php.net/server-status
Who knows the functions of php to get the status of server and clinet.
Thanks, look forward to hearing from you soon,
Michael
How can I get status info of Client and Server
Moderator: General Moderators
you need to edit your httpd.conf 
LoadModule status_module modules/mod_status.so
#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".localhost" to match your domain to enable.
#
<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from .localhost
</Location>
LoadModule status_module modules/mod_status.so
#
# ExtendedStatus controls whether Apache will generate "full" status
# information (ExtendedStatus On) or just basic information (ExtendedStatus
# Off) when the "server-status" handler is called. The default is Off.
#
ExtendedStatus On
#
# Allow server status reports generated by mod_status,
# with the URL of http://servername/server-status
# Change the ".localhost" to match your domain to enable.
#
<Location /server-status>
SetHandler server-status
Order allow,deny
Allow from all
# Order deny,allow
# Deny from all
# Allow from .localhost
</Location>
-
CentaurAtlas
- Forum Newbie
- Posts: 1
- Joined: Sat Feb 11, 2006 4:11 pm