I have to two include_once calls in my code:
include_once('../folder/folder/file.php');
include_once('../folder/folder/file2.php');
Its the correct file locations and was able to verily with echo realpath()
If I take one of them out, my code works minus what I need from the other file.
If I have both of them, I just get a blank screen, no error.
My question is, does php like two include_once starting with .. and how can I test which one is failing?