Not for official support
We do not provide technical support in this forum.
If you want to contact our customer support, please use our support form.
You are not logged in.
Pages: 1
My Shop Script site stopped working. It is showing "Fatal error: Call to undefined function: simplexml_load_file()" in the home page and "Parse error: syntax error, unexpected T_OBJECT_OPERATOR " in the login page. I have no Idea how to correct this. Contacted godaddy and they said everything from their part is correct. No changes made in the code or settings. Any Idea please help.
Offline
simplexml_load_file() is a standard PHP function provided by the SimpleXML extension. The error message means that that extension has been disabled for your web-hosting account; e.g.,http://www.webdeveloper.com/forum/showt … p?t=191658.
Offline
In the php.ini file
;extension=simplexml.so
need to be changed to
extension=simplexml.so
Last edited by rat (2012-08-20 03:58)
Offline
Pages: 1