• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

php_ini & include_path does not changes

dragnovich

Basic Pleskian
Hello I have plesk 8.3 and Im triying to run this code:

<?php
echo('Include path is: ' . ini_get('include_path') . '<BR>');
ini_set("include_path", ".:../:./include:../include");
echo('Include path is: ' . ini_get('include_path') . '<BR>');
?>

it sold respond this:
Include path is: .:/lib
Include path is: .:../:./include:../include

But it responds:
Include path is: .:/lib
Include path is: .:/lib

thats means that Include path is not changed, I try to change other PHP.INI directives and all them change correctly, escept "include_path".

Why?
 
Back
Top