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.
1 Answer
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.
10 Comments
user2767553
Sorry, but I used utf8_decode()
Amal
@user2767553: Okay, what does the
var_dump(function_exists('utf8_decode')); output?user555
@AmalMurali Where did you get
uFTdecode() from?ʰᵈˑ
@user555 The question title
Amal
@user555: Look at the question title.
|