Active Directory, Microsoft 365, and Exchange management and reporting
Hybrid AD, cloud, and file auditing; security; and compliance
Identity security with adaptive MFA, SSPR, and SSO
Reporting, auditing, and monitoring for hybrid Exchange and Skype
Active Directory, Microsoft 365, and Exchange backup and recovery
Hybrid AD, cloud, and file auditing; security; and compliance
SharePoint reporting and auditing
Microsoft 365 security
Cloud security monitoring and analytics
File auditing, data leak prevention, and data risk assessment
File security and storage analysis
Automated patching across multiple OSs and over 850+ third-party apps
Simplified third-party patch deployment via ConfigMgr and Intune
Seamless mobile device management from onboarding to retirement
Remote troubleshooting with integrated chat, voice, and video
Automated OS image creation and seamless role-based deployment
Prioritization-focused enterprise vulnerability management
App control and endpoint privilege management software
Data theft prevention with strict peripheral device control
Browser security with isolation, lockdown, and activity tracking
Sensitive data protection and compliance for endpoint devices
Real-time ransomware mitigation and file recovery for business continuity
Full-stack observability with AIOps and digital experience monitoring
AI-powered, all-in-one SaaS platform for observability and digital experience monitoring
Digital experience, application performance, and infrastructure monitoring
All-in-one vendor risk assessment tool to ensure domain security
Network, server, and storage performance monitoring
Bandwidth monitoring and traffic analysis
Network change and configuration management
Firewall rule, configuration, and log management
IP address and switch port management
Centralized IT alert management
Status pages for real-time status and incident communication
A cloud-native identity platform for workforce IAM
Full-stack service management for enterprises
IT asset management with an integrated CMDB
Unified endpoint management and security
Comprehensive mobile device management
Enterprise remote access
Automated multi-OS patch management
Full-stack monitoring for IT admins, DevOps, and SREs
Status pages for real-time status and incident communication
Cloud cost management for modern software teams
SaaS management platform to maximize ROI
Centralized IT alert management
Secure your IT infrastructure and prove compliance from the cloud
AI-powered unified analytics platform to correlate all IT data
An all-in-one DNS management service to keep your business online
Low-code application development platform
Remote support software
Collaborative project management
Agile project management
All-in-one collaboration tool for unified communication
Secure email hosting solution for businesses
All-in-one video conferencing solution for remote business meetings
All-in-one AR remote assistance software solution for remote collaboration.
Unified network monitoring and endpoint management for MSPs
Unified Active Directory management and reporting solution for MSPs
Unified SIEM solution for MSSPs
Log management and advanced threat intelligence for MSSPs
Complete privileged access security for enterprises
Privileged password management
Full-stack service management for MSPs
The configuration settings of the PHP agent, including the application name, data port, and status port, can be individually modified for each application.
Note: For instructions on modifying the configurations for all applications on the application server, please refer to this help page.
Add the following key to the .htaccess file present in your application directory:
php_value <directive> <value>
Note: If the .htaccess file does not exist, create the file in your application directory, and ensure that it is allowed to override directives by modifying the server configuration.
Example:
To disable error tracking and modify the method tracking threshold, please use the key below:
php_value zpa.track_errors 0
php_value zpa.method_threshold 5
Add the following key within the relevant location block or server block in the application's Nginx configuration file:
fastcgi_param PHP_VALUE "<directive>=<value>";
Example:
To disable error tracking and modify the method tracking threshold, please use the key below:
fastcgi_param PHP_VALUE "zpa.track_errors=0";
fastcgi_param PHP_VALUE "zpa.method_threshold=5";
Note: Please keep in mind that modifying PHP configuration via fastcgi_param may fail if Nginx and PHP-FPM are running in different containers. In such cases, you must modify the PHP-FPM configuration directly.
Add the following key to the .user.ini file present in your application directory. If it does not exist, create the .user.ini file in the application directory.
<directive>=<value>
Example:
To disable error tracking and modify the method tracking threshold, please use the key below:
zpa.track_errors=0
zpa.method_threshold=5
Add the following key while executing your PHP script from the terminal:
php -d <directive>=<value> /path/to/your/script
Example:
To disable error tracking and modify the method tracking threshold, please use the key below:
php -d zpa.track_errors=0 -d zpa.method_threshold=5 /path/to/your/script
Add the following configuration to the .user.ini file in the website's root directory:
Note: The default file name is '.user.ini', but it may also be nameed differently.
<directive>=<value>
Example:
To disable error tracking and modify the method tracking threshold, please use the key below:
zpa.track_errors=0
zpa.method_threshold=5