I have path like this : "C:/xampp/htdocs/root/my-test/defined-values.php"
that I want to include like this in my index.php
if (is_readable($path)) {
require($path);
}
and it just simple, it doesn't work. I have die('test') at the top of defined-values.php file, and it is not being picked at all. PHP it doesn't include this file. Require path doesn't return false. So it is working/
I have setup vhosts, everything, and I'm trying to access index file from url : http://my-test.ttt
It was working before on older version of xampp, and with php 5.3.
What could be the problem? Any idea? It is definitely something wrong with PHP.ini file