parent root
PHP: Installing/Configuring - Manual
PHP 7.2.23 Release Announcement

Installing/Configuring

Table of Contents

add a noteadd a note

User Contributed Notes 1 note

up
-10
crashulater at virtualcrash dot com
1 year ago
example INSTALL
$ zcat php-stats-1.0.5.tar.gz | tar -xvf -
$ cd stats-1.0.5
$ phpize
$ ./configure --prefix=/usr --with-libdir=/usr/lib64 --with-php-config=/usr/bin/php-config
$ make
$ make test
# make install
# vi /etc/php.d/stats.ini
; Enable Statistical extension module
extension=stats.so
# /etc/init.d/httpd restart
To Top
parent root