Package Details: php56-intl 5.6.40-11

Git Clone URL: https://aur.archlinux.org/php56.git (read-only, click to copy)
Package Base: php56
Description: intl module for php56
Upstream URL: http://www.php.net
Keywords: php
Licenses: PHP
Submitter: mickael9
Maintainer: el_aur
Last Packager: el_aur
Votes: 48
Popularity: 0.159881
First Submitted: 2016-01-03 21:26 (UTC)
Last Updated: 2024-03-27 14:51 (UTC)

Pinned Comments

el_aur commented on 2023-03-01 21:07 (UTC)

Created binary repository on build.opensuse.org

https://build.opensuse.org/project/show/home:el:archphp

For Arch Linux, edit /etc/pacman.conf and add the following (note that the order of repositories in pacman.conf is important, since pacman always downloads the first found package):

[home_el_archphp_Arch]
Server = https://download.opensuse.org/repositories/home:/el:/archphp/Arch/$arch

Then run the following as root

key=$(curl -fsSL https://download.opensuse.org/repositories/home:el:archphp/Arch/$(uname -m)/home_el_archphp_Arch.key)
fingerprint=$(gpg --quiet --with-colons --import-options show-only --import --fingerprint <<< "${key}" | awk -F: '$1 == "fpr" { print $10 }')
pacman-key --init
pacman-key --add - <<< "${key}"
pacman-key --lsign-key "${fingerprint}"

Refresh packages database

pacman -Syy

Now search for php packages you need:

pacman -Ss php56

Install with pacman -S packages you need or all PHP 5.6 packages with:

sudo pacman -S $(pacman -Ssq | grep '^php56')

el_aur commented on 2023-02-22 16:02 (UTC)

Read Carefully! Breaking changes in compare with native PHP package

Console version /usr/bin/php56 is installed with php56-cli subpackage, php56 doesn't include it anymore!!!

PEAR and PECL are available as php56-pear and php56-pecl subpackages

All shared modules are respresented as stand-alone subpackages and are not included with php56 package anymore.

No more extensions in php.ini itself!

Separate INI files for each extension are placed in /etc/php56/conf.d

They are loaded in correct order according to priority

mickael9 commented on 2018-10-03 17:21 (UTC)

PHP 5.6 will stop getting security updates in January 2019. Consider upgrading to PHP 7 now

mickael9 commented on 2016-04-06 11:51 (UTC) (edited on 2018-10-03 17:18 (UTC) by mickael9)

PLEASE READ : For those who are getting "unknown public key" errors, this is NOT caused by this package. It means GPG is not configured to fetch public keys automatically (which is normal by default)

Please read the instructions at https://wiki.archlinux.org/index.php/Makepkg#Signature_checking

The easiest way to overcome this is to manually import the keys from a keyserver :

$ gpg --keyserver hkp://hkps.pool.sks-keyservers.net:80 --recv-keys C2BF0BC433CFC8B3 FE857D9A90D90EC1

mickael9 commented on 2016-01-14 01:53 (UTC) (edited on 2016-08-06 17:00 (UTC) by mickael9)

foxxx and I have been working together and this package can now be installed along PHP 7 from the official repos. Everything has been moved into separate directories : Config : /etc/php56 Extensions : /usr/lib/php56/modules Binaries : /usr/bin/php56, /usr/bin/php56-cgi, /usr/bin/phar56, etc. If you were previously using this as a replacement for php7, you'll have to adjust the new configuration files in /etc/php56/ to reflect the current ones in /etc/php/. Apache module (provided by php56-apache) also has a specific configuration and CAN NOT cohabit with php7_module. Use php-fpm, fcgi or cgi if you need both versions. The apache module is installed as libphp56.so, so you should use the following lines your httpd.conf : # Load php 5.6 module LoadModule php5_module modules/libphp56.so # Use it for .php extensions Include conf/extra/php56_module.conf Please let me know if you encounter any problem or have a suggestion.

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 8 9 10 11 .. 21 Next › Last »

Eddw commented on 2018-04-23 11:34 (UTC)

Hi! Why depend on Apache?

foxxx0 commented on 2018-03-30 10:52 (UTC)

Updated to 5.6.35:

The PHP development team announces the immediate availability of PHP 5.6.35. This is a security release. One security bug was fixed in this release. All PHP 5.6 users are encouraged to upgrade to this version.

@postadelmaga: I have updated the PKGBUILD and it includes a fix for the recent icu update.

postadelmaga commented on 2018-03-30 06:42 (UTC) (edited on 2018-03-30 08:04 (UTC) by postadelmaga)

After upgrading Arch today I could not start apache anymore:

Cannot load modules/libphp56.so into server: libicui18n.so.60: cannot open shared object file: No such file or directory

So I tried to recompile this package but I got a bunch of errors, such as:

In file included from /tmp/yaourt-tmp-fra/aur-php56/src/php-5.6.34/ext/intl/intl_convertcpp.cpp:21:0:
/tmp/yaourt-tmp-fra/aur-php56/src/php-5.6.34/ext/intl/intl_convertcpp.h:28:25: error: ‘UnicodeString’ was not declared in this scope
int intl_stringFromChar(UnicodeString &ret, char *str, int32_t str_len, UErrorCode *status);

Update - Workaround for the missing libicui18n.so.60 library:

sudo ln -s /usr/lib/libicuuc.so.61.1 /usr/lib/libicuuc.so.60
sudo ln -s /usr/lib/libicui18n.so.61.1 /usr/lib/libicui18n.so.60 
sudo ln -s /usr/lib/libicudata.so.61.1 /usr/lib/libicudata.so.60

foxxx0 commented on 2018-03-02 08:33 (UTC)

Updated to 5.6.34:

The PHP development team announces the immediate availability of PHP 5.6.34. This is a security release. One security bug was fixed in this release. All PHP 5.6 users are encouraged to upgrade to this version.

foxxx0 commented on 2018-03-02 08:32 (UTC)

@Case_Of: Arch Linux relies heavily on systemd and thus I'm not going to remove the dependency. If you need it for your own use you are free to modify the PKGBUILD locally and then build it.

<deleted-account> commented on 2018-03-02 04:15 (UTC)

Build failed. http://ix.io/ReW Please, remove systemd dependency.

foxxx0 commented on 2018-02-26 18:52 (UTC)

thanks for that hint, fixed.

rdoursenaud commented on 2018-02-26 17:51 (UTC)

Your latest patch for enchant2 support is missing a crucial part. Loading the extension results in the following: Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php56/modules/enchant.so' - /usr/lib/php56/modules/enchant.so: undefined symbol: enchant_dict_is_in_session in Unknown on line 0

You also need to patch the extension code itself to use the new API. Something like: https://git.archlinux.org/svntogit/packages.git/tree/trunk/enchant-2.patch?h=packages/php

I've been working on porting this to my php55 package which I've been basically copying from yours ;)

foxxx0 commented on 2018-02-26 10:39 (UTC)

Hey, sorry for the delay.

The patch for enchant-2 has been added and it now builds properly again. Thanks to all who have helped in fixing this.

polarbear commented on 2018-02-23 22:55 (UTC)

If you have problems with the enchant just install "enchant-pure" with aur :)