Destramic Posted April 11, 2015 Share Posted April 11, 2015 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 More sharing options...
sKunKbad Posted May 4, 2015 Share Posted May 4, 2015 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 Link to comment https://forums.phpfreaks.com/topic/295450-customer-phpini/#findComment-1510748 Share on other sites More sharing options...
requinix Posted May 4, 2015 Share Posted May 4, 2015 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. Link to comment https://forums.phpfreaks.com/topic/295450-customer-phpini/#findComment-1510758 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.