I have an below error while installing piwik web analytic in to my site

You need to configure and rebuild PHP with "iconv" support enabled, --with-iconv.

Please guide me.

link|improve this question
You have to compile PHP with iconv support. See PHP manual for iconv – Nikhil Nov 4 '11 at 12:21
sorry nikhil it doesnt work.... – amol Nov 4 '11 at 12:35
Nikhil can you please tell me how to set this error? – amol Nov 4 '11 at 12:42
What does not work? Did compilation finished with success? Can you post phpinfo()'s section "Configure Command"? IIRC iconv should be bundled with most versions of PHP nowadays - are you using some non-standard distribution of PHP? – bat Nov 4 '11 at 13:01
feedback

1 Answer

You need to install php5-iconv extension, check etc/php/extensions.ini on "extension=iconv.so" and restart apache.

For openSUSE/Suse:

sudo zypper in php5-iconv

For FreeBSD:

cd /usr/ports/converters/php5-iconv/
sudo make all install clean

For Ubuntu it should be part of the main php package.

For RHEL/Fedora/CentOS it should be present in php-common:

sudo yum install php-common
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.