Package Details: php55-ftp 5.5.38-15

Git Clone URL: https://aur.archlinux.org/php55.git (read-only, click to copy)
Package Base: php55
Description: FTP module for php55
Upstream URL: http://www.php.net
Licenses: PHP
Submitter: rdoursenaud
Maintainer: el_aur
Last Packager: el_aur
Votes: 4
Popularity: 0.000000
First Submitted: 2016-03-10 16:18 (UTC)
Last Updated: 2024-03-27 14:52 (UTC)

Pinned Comments

el_aur commented on 2022-02-04 11:30 (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 php55

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

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

el_aur commented on 2022-01-27 12:13 (UTC) (edited on 2022-01-27 15:19 (UTC) by el_aur)

Read Carefully! Breaking changes in compare with native PHP package

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

  2. PEAR and PECL are available as php55-pear and php755-pecl subpackages

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

  4. No more extensions in php.ini itself!

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

They are loaded in correct order according to priority

Latest Comments

« First ‹ Previous 1 2

rdoursenaud commented on 2016-08-22 11:12 (UTC)

@p-we The patch is already in the package and correctly applied on my system. What did you have instead?

p-we commented on 2016-08-20 03:05 (UTC) (edited on 2016-08-20 03:06 (UTC) by p-we)

Because php55 has separate directories from mainstream php, /etc/php55/php.ini has to be changed to match the correct extension directory Line 734: extension_dir = "/usr/lib/php55/modules/"

MagiCarbon commented on 2016-04-16 03:18 (UTC)

many thanks :)

rdoursenaud commented on 2016-04-04 09:23 (UTC)

I packaged this version because it's needed for the Google App Engine PHP. I'm by no means a PHP packaging expert and basically copied the existing php56 package from AUR. If you know better, please let me know.