Since I updated my MAC's OS (to the latest, OSX Mavericks) I noticed, that there was no content on my page (it's a php project with much code).
But the point is, that the problem occurs every time I try to load an XML file via Simplexml.
Here's the code:
$file = __DIR__ . '/myfile.xml';
$xml = simplexml_load_file($file);
But there is no error, it's just an empty page (no HTML source to see in the browser). And I didn't turn error reporting off. And the path is also correct (is_file()
returns true).
And like I said, before the OS update it worked well.