|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2019-09-18 12:46 UTC] BWATERS at SOLUTIONSBYWATERS dot COM
Description: ------------ When I try to download the ssh package https://pecl.php.net/get/ssh2-1.2.tgz I receive a 500 internal service error Looks like this was previously fixed with rsync, but it's back Test script: --------------- curl https://pecl.php.net/get/ssh2-1.2.tgz PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
I can confirm this issue. If you want to install the newest ssh2 version on the dockerized environment you can do this workaround until fixed: ``` RUN wget https://pecl.php.net/get/ssh2 -O /tmp/ssh2-1.2.tgz \ && pear install /tmp/ssh2-1.2.tgz \ && docker-php-ext-enable apcu ssh2 \ ```