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.

2
  • What PHP version are you using? Commented Dec 20, 2013 at 16:32
  • I'm using PHP 5.3.10-1ubuntu3.9 with Suhosin-Patch (cli) Commented Dec 20, 2013 at 16:33

1 Answer 1

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.

Sign up to request clarification or add additional context in comments.

10 Comments

Sorry, but I used utf8_decode()
@user2767553: Okay, what does the var_dump(function_exists('utf8_decode')); output?
@AmalMurali Where did you get uFTdecode() from?
@user555 The question title
@user555: Look at the question title.
|

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.