User count
-
whatap.trace_user_enabled Boolean
Default
true
Set whether or not to collect real-time users. If this value is activated, the users are traced based on the IP or PHP default cookie (PHPSESSID) and framework cookies (ci_session, Laravel_session). If your PHP compiled installation has a
whatap
entry in php.ini, add it to php.ini, not whatap.ini.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_user_using_ip Boolean
Default
false
Set it to identify the real-time user by IP. The data can be checked in Real Time User. If the value is
false
, the users are classified based on the PHP default cookies and framework cookies (PHPSESSID, ci_session, Laravel_session). If you have a whatap entry in php.ini with a PHP compiled installation, add it to php.ini, not whatap.ini.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_user_cookie_keys String
Default
PHPSESSID,ci_session, laravel_session
Users can be identified by assigning the
session.name
value inside PHP. It is set when using a different name instead ofPHPSESSID
as the cookie key name. With comma (,) as the delimiter, multiple values can be set.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_user_header_ticket Boolean
Default
false
Set the HTTP key to differentiate users by a specific value in the HTTP header. Note that the
trace_user_using_ip
setting cannot be applied simultaneously. If the HTTP key cannot be found, users can be identified based on the cookies. If your PHP compiled installation has awhatap
entry in php.ini, add it to php.ini, not whatap.ini.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_user_set_cookie Boolean
Default
false
To identify users, the user identification values are set as
WHATAP
key names in cookies. Iftrace_user_using_ip
is set, this value is not applied. Iftrace_user_header_ticket
is set, this is set when the header key cannot be found. If the HTTP key cannot be found, users can be identified based on cookies. If your PHP compiled installation has awhatap
entry in php.ini, add it to whatap.ini, not php.ini.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_http_client_ip_header_key String
Default
X-Forwarded-For
This added function sets the client IP (remote IP) with a specific HTTP header value. In the proxy environment, the
X-Forwarded-For
header value can be set with the client IP.
The setting is applied after Apache and PHP-FPM have been restarted.
-
whatap.trace_http_client_ip_header_key_enabled Boolean
Default
true
If the value is
false
, the HTTP Header is ignored and the client IP is set as the remote IP value.