• Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
    Thank you in advance for your patience and understanding on the matter.

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