1

I've searched on the Internet about this error. Somebody told me that my computer is missing lib xml for php. But I don't know how to install it on Ubuntu 12.04 TLS.

user555
  • 1,564
  • 2
  • 15
  • 29
user2767553
  • 73
  • 1
  • 2
  • 6

1 Answers1

10

PHP Fatal error: Call to undefined function uft8_decode()

The function name is utf8_decode(), not uFT8_decode().

var_dump(function_exists('utf8_decode')); should tell you if it's available. If this returns bool(false), then php-xml package is probably missing in your PHP installation. Make sure it is installed. If it isn't, ask your hosting provider to update / install it.

Amal Murali
  • 75,622
  • 18
  • 128
  • 150