Package Details: php56-tidy 5.6.40-11

Git Clone URL: https://aur.archlinux.org/php56.git (read-only, click to copy)
Package Base: php56
Description: tidy 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.156683
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 .. 15 16 17 18 19 20 21 Next › Last »

marcvangend commented on 2016-01-12 09:18 (UTC)

@foxxx Ha, I have been doing exactly the same lately :-) Here is what I came up with: https://bitbucket.org/marcvangend/php56. Feel free to use / fork / merge / learn / open issues / whatever.

foxxx0 commented on 2016-01-10 23:59 (UTC) (edited on 2016-01-10 23:59 (UTC) by foxxx0)

@mickael9, @bladesuk1, @<anyone-who-is-interested>: I've spent the last couple of hours to rework this package to allow it to co-exist with the upstream php (version 7) packages. Making use of the --prefix compile time option of php I moved the whole php56 stuff to /opt/php56/{bin,lib,share,[...]}, changed the paths in the configs and patches as well as a standalone php56-fpm.service. I'm not sure about the apache mod_php stuff, how that fits in with an upstream php version 7 package, but using php56-fpm should be fine. When I'm done testing and verifying together with Bluewind, I'll submit a git patch to mickael9. Stay tuned, it should not take more than a couple of days to verify/test/debug the remaining part.

mickael9 commented on 2016-01-08 17:07 (UTC)

5.6.17 has been released, it's a security release so you should update ASAP @spiritabsolute @bruddy: please see https://wiki.archlinux.org/index.php/Makepkg#Signature_checking for GPG issues (make sure you're able to fetch the keys using gpg --recv-keys 33CFC8B3 90D90EC1). @bladesuk1: you can always remove the conflicts/provides lines in the PKGBUILD so that it installs, give it a try mysqli module is in the php56 package

bladesuk1 commented on 2016-01-08 11:17 (UTC) (edited on 2016-01-08 12:38 (UTC) by bladesuk1)

i don't suppose there's any way to run this in parallel with php7, is there? i only need php56 via php-fpm, but installing this replaces php7 rather than installing it side-by-side... if not, is there any chance that you could add php-mysqli into the build as well?

spiritabsolute commented on 2016-01-08 07:15 (UTC)

Error during installation "php-5.6.16.tar.xz ... FAILED (unknown public key C2BF0BC433CFC8B3)". Originally installed php 7. Then packages php and php-Apache were removed. Help me to understand.

mickael9 commented on 2016-01-07 17:43 (UTC)

@R00KIE: Good point, I did it for all packages in the group.

R00KIE commented on 2016-01-07 13:22 (UTC)

You might want to change the line "provides=('php')" to "provides=('php=5.6.16')" in the package_php56() function. The reason is that if some program has a dependency on php>=x.y then pacman will complain that dependency is not satisfied.

mickael9 commented on 2016-01-06 16:40 (UTC)

@Hoek : it should work if you install both packages at the same time so that the resulting transaction does not introduce any conflicts

dcelasun commented on 2016-01-05 11:25 (UTC)

@mickael9: OK then, I can probably set up an x64 repo for php56* over the weekend.

Hoek commented on 2016-01-05 11:24 (UTC) (edited on 2016-01-05 11:24 (UTC) by Hoek)

@mickael9: Thanks for the effort. I have php7 installed and try to revert to php56, maybe they should be flagged exclusive? When trying to install php56-apache: -> Saved package: php56-apache-5.6.16-2-x86_64.pkg.tar.xz [sudo] password for hoek: loading packages... resolving dependencies... warning: cannot resolve "php56", a dependency of "php56-apache" :: The following package cannot be upgraded due to unresolvable dependencies: php56-apache :: Do you want to skip the above package for this upgrade? [y/N] N error: failed to prepare transaction (could not satisfy dependencies) :: php56-apache: requires php56