I have some CONSTANTS, I want these constants to be available through every php file under a directory.
I put these constants file in this php
/home/public_html/constant/constant.php
And my php.ini file has these include_path value already,
.:/usr/local/lib/php:/usr/local/lib/php/PEAR
So I set up a .htaccess file under this directory, the .htaccess has my constant.php appending to the initial set up of include_path
.:/usr/local/lib/php:/usr/local/lib/php/PEAR:/home/public_html/constant:/home/public_html/constant/constant.php
or
.:/usr/local/lib/php:/usr/local/lib/php/PEAR:/home/public_html/constant:/home/public_html/constant
But none of them seems include my file /home/public_html/constant/constant.php
Thanks!