Как настроить centos 5.1

Статус
В этой теме нельзя размещать новые ответы.
В CentOS 5.2, по умолчанию стоит PHP 5.1.6
Как его обновить до версии 5.2.6 ?
Весь инет облазил, но RPM так и не нашел. :(
 
Как именно?
Можно расписать поподробнее?
wget Для просмотра ссылки Войди или Зарегистрируйся

tar zxf php-5.2.6.tar.gz

cd php-5.2.6

./configure --with-apxs2=/usr/local/apache/bin/apxs --disable-debug -- enable-ftp --enable-inline-optimization --enable-magic-quotes -- enable-mbstring --enable-wddx=shared --enable-xml --with-gd --with-gettext --with-mysql=/usr/local/mysql --with-regex=system --with-zlib-dir=/usr/lib

make && make install

cp php.ini-dist /usr/local/lib/php.ini
ln -s /usr/local/lib/php.ini /etc/php.ini
ln -s /usr/local/apache/conf/httpd.conf /etc/httpd.conf
vi /etc/httpd.conf #and add these content type in apache conf file
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
DirectoryIndex index.php index.htm index.html

/usr/sbin/httpd -k restart

P.S.
Пожалуйста
 
Люди, кто ни будь уже обновлял версию PHP на CentOS ?
Если есть такие, дайте полный список команд, для обновления.
А то пробую то что написал vasill, но ничего не получается, выдаёт сообщение об ошибке:

Sorry, I cannot run apxs. Possible reasons follow:

1. Perl is not installed
2. apxs was not found. Try to pass the path using --with-apxs2=/path/to/apxs
3. Apache was not built using --enable-so (the apxs usage page is displayed)

The output of /usr/local/apache/bin/apxs follows:
./configure: line 6669: /usr/local/apache/bin/apxs: No such file or directory
configure: error: Aborting
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху