Hi community,
I have an 1.7.0.2 Magento website and since many days a blank page happens every two days.
If I clear cache, problem is fixed.
But today, I had an other error : simplexml_load_file() i/o warning failed to load external entity "app/etc:local.xml".
I fixed it by adding following code in my index.php
if (function_exists('libxml_disable_entity_loader')) {
libxml_disable_entity_loader(false);
}
It seems to happen random errors on my website.
Does anyone have explanation ? Solution ?
Thank's