Jump to content

customer php.ini


Recommended Posts

hey guys...im trying to make a custom php.ini but im having some problems getting it to work.

 

 

i included the path to my custom php.ini in my .htaccess file


<IfModule mod_php5.c>
php_value include_path ".:/var/www/vhosts/bisi.bid/bisi.bid/private/config"
</IfModule>

then i put this in my http.conf

<Directory "/var/www/vhosts/bisi.bid/bisi.bid">
    AllowOverride All
</Directory>

now when testing and when i put in my customer php.ini

date.timezone = "Europe/London"

i get result of Europe/Athens

echo ini_get('date.timezone');

can anyone please tell me what i've done wrong please...thank you

Link to comment
https://forums.phpfreaks.com/topic/295450-customer-phpini/
Share on other sites

  • 4 weeks later...

I think you just use PHPINIDir in your virtual host config

<VirtualHost 1.2.3.4:80>
[...]
PHPINIDir /var/www/web1
[...]
</VirtualHost>

See this: https://www.howtoforge.com/how-to-specify-a-custom-php.ini-for-a-website-apache2-with-mod_php

i included the path to my custom php.ini in my .htaccess file


<IfModule mod_php5.c>
php_value include_path ".:/var/www/vhosts/bisi.bid/bisi.bid/private/config"
</IfModule>

 

No, what you did was tell PHP where it should search for files when you try to include them. Completely different thing.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.