Skip to main content
All CollectionsPlatformDeveloper Tools
Configure and edit PHP (values)
Configure and edit PHP (values)

How to change PHP version, add extensions or edit .ini values

Updated this week

PHP (Hypertext Preprocessor) is a server-side scripting language used for web development. With EVC, you have limited options to customize your website's functionality and performance.

PHP Version

We recommend using the latest stable PHP version for optimal performance and security. But, if you prefer a different version, you can switch the PHP engine in the Advanced section under Developer Tools.

We do not support PHP versions older than 8.0 due to security and performance reasons. However, if you require an older version, you may request it. Please note that we are not responsible for any issues or vulnerabilities that may arise from using outdated PHP versions.

Extensions

PHP extensions are additional modules that extend the core functionality of PHP. They provide extra features such as database connections, image processing, encryption, and more. Extensions are written in C and can be enabled or disabled within the panel.

You have the option to enable five additional extensions. We suggest activating brotli and apcu by default.

  1. Brotli – A compression algorithm developed by Google, used for faster and more efficient data compression compared to Gzip. Helps reduce bandwidth usage and improve load times.

  2. Xmlrpc – Enables XML-RPC (Remote Procedure Call) functionality, allowing PHP applications to communicate with remote servers using XML-based messages.

  3. Oauth – Provides OAuth authentication support, allowing secure authorization between applications without sharing credentials (commonly used for social logins).

  4. PdoDblib – A PDO driver for Microsoft SQL Server and Sybase databases using the FreeTDS library. Useful for connecting PHP applications to these database systems.

  5. Apcu – APC User Cache, an in-memory caching solution that speeds up PHP applications by storing frequently accessed data in RAM, reducing the need for repeated database queries.

PHP error log

A PHP error log is a file that records warnings, errors, and issues occurring in a PHP application. It helps developers debug problems by providing detailed error messages and timestamps.

You can find the PHP error log in your website's home directory, named php-error.log. Access it via FTP, SSH, or the file manager.

PHP.ini editor

This feature is only available for customers on the Managed VPS plan. We recommend editing it only if you are experienced, as the default values are optimized for most of our services.

It is possible to override and customize PHP values based on your website's needs. For example, if a website requires more resources, you may need to increase the maximum memory limit to ensure smooth performance.

  1. Go to the Websites ↗ section in the dashboard

  2. Click "Advanced" and select Developer tools in the dropdown menu

  3. Scroll down to php.ini editor

  4. Click Add directive

You can find possible PHP directives on the official site here: https://www.php.net/manual/en/ini.list.php

Did this answer your question?