Reputation: 207
When i check my phpinfo , it displays like below and i have to use simplexml, but getting ;
"Fatal error: Call to undefined function simplexml_load_file() in..."
message.
disable-xml' '--disable-simplexml' '--disable-dom' '--disable-libxml' '--disable-xmlreader' '--disable-xmlwriter' '--disable-debug'
How can i enable simplexml ?
Upvotes: 4
Views: 14363
Reputation: 64
You must recompile your php source code and enable all of the related XML plugin.
Like this:
./configure --prefix=/usr/local/php --enable-xml --enable-simplexm --enable-libxml //and so on...
Upvotes: 1
Reputation: 15141
Install:
apt-get install php-xml
Check:
php -m | grep xml
Restart:
service php5-fpm restart
Upvotes: 7