Skip to content

DEPRECATED

This feature is no longer available in the current panel. The page is kept for reference and may be removed in a future release.

PHP INI Editor

⚠️ Deprecated - this page documents a view that is not present in the current panel version. The feature may have been moved or removed. The page is kept for reference.

PHP INI Editor Overview

URL

URL: /admin/multi-php-ini-editor

Overview

The PHP INI Editor allows administrators to edit .ini configuration files for each installed PHP version. This is useful for enabling or customizing PHP modules.

disable_functions and core PHP functions

Three functions that many applications legitimately depend on, parse_ini_file, file_get_contents and curl_multi_exec, are removed from stored disable_functions lists when a server is upgraded. Disabling them breaks common frameworks and installers, and the breakage only surfaces later, when PHP settings are next re-applied. Avoid adding them back.

PHP Configuration Selection

Before editing, select:

  • PHP Version - Choose the version of PHP to configure (e.g. 7.4.33, 8.2.29, 8.4.10)
  • Configuration File - Select the target .ini file for that version (e.g. 20-sqlite3.ini, 20-tokenizer.ini, etc.)

PHP Version and INI File Selection

PHP Version and INI File Selection

Edit Configuration

Once a file is selected, its contents will load in the text editor area.

PHP Version and INI File Selection

You can:

  • Add, remove, or modify configuration lines
  • Use standard PHP INI syntax
  • See live loaded content from the selected file

Example:

ini
; Enable sqlite3 extension module
extension=sqlite3