PHP Doku:: Installation/Konfiguration - intl.setup.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzUnterstützung menschlicher Sprache und ZeichenkodierungInternationalization FunctionsInstallation/Konfiguration

Ein Service von Reinhard Neidl - Webprogrammierung.

Internationalization Functions

<<Einführung

Anforderungen>>


UnterSeiten:

Installation/Konfiguration

Inhaltsverzeichnis


4 BenutzerBeiträge:
- Beiträge aktualisieren...
dtrebbien at gmail dot com
12.12.2010 19:42
Debian Squeeze users can install the intl extension with:

sudo apt-get install php5-intl
hans
14.07.2010 1:52
2 Thinks what helped me.

1. test if it works with on command line "php -i | grep intl"
if it's not correctly installed and doesn't work it will show nothing.
2. I created the file /etc/php5/conf.d/intl.ini and only put the line extension=intl.so in that file (restart apache and done)
dtrebbien at gmail dot com
26.10.2009 0:07
To install the intl extension on a Debian Lenny system, the following commands (as `root`) worked perfectly for me:
apt-get install php-pear php5-dev dh-make-php fakeroot libicu38 libicu-dev xsltproc
pear channel-update pear.php.net
pear upgrade PEAR
pecl channel-update pecl.php.net
pear install intl

Probably the first line can be replaced with just:
apt-get install php-pear php5-dev libicu38 libicu-dev

But, you may need some of the other packages.
s dot marechal at jejik dot com
25.07.2008 9:10
I have written a simple tutorial on how you can install the intl extension for PHP5 on Debian Lenny. It probably also works on anything derived from it, such as the recent Ubuntus or Linux Mint. You can find it at:

http://www.jejik.com/articles/2008/07/howto_build_and_install_the_intl_pecl_extension_for_php5_in_debian/

(This URL should be on one line of course)



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)