PHP Pear installer stuck at 21%

I tried installing PHP Pear on my web space. I downloaded the installer file from http://pear.php.net/go-pear

I ran the installer and everything works, except that it is stuck at 21% every time.

This is the installer's output, but I am not getting any errors ...

Starting installation ...

Download zlib: ok

Boot Installer ...

Boot PEAR5.php ............ (remote) ok

Boot PEAR.php ............ (remote) ok

Boot archive /Tar.php ............ (remote) ok

Bootstrap Console /Getopt.php ............ (Remote) ok #

I searched for a solution everywhere but nothing works. Maybe someone can help me with this.

EDIT:

I get an error after I activated PHP errors in my web space (stupid for me). Now I get the following errors:

Fatal error: class "PEAR" not found in / customers / d / 1/5 / team-equipment.de / httpd.www / _pear / pearinstaller.php on line 697

After checking this problem, I just answer Google and found it on stackoverflow: Fatal error: PEAR class not found in / home / user 1 / public_html / go-pear.php on line 697

This solved my problem!

+3
source share
1 answer

update links

$bootstrap_files = array( 'PEAR5.php' => 'https://raw.githubusercontent.com/pear/pear-core/master/PEAR5.php', 'PEAR.php' => 'https://raw.githubusercontent.com/pear/pear-core/master/PEAR.php', 'Archive/Tar.php' => 'https://raw.githubusercontent.com/pear/Archive_Tar/master/Archive/Tar.php', 'Console/Getopt.php' => 'https://raw.githubusercontent.com/pear/Console_Getopt/master/Console/Getopt.php',); 

Source: fooobar.com/questions/968769 / ...

+1
source

All Articles