Posts tagged php

Plesk php mcrypt

2

Atomic kullanarak pleks üzerinde mcrypt kurulumunu oldukça basir bir şekilde halledebiliriz.

# wget -q -O – http://www.atomicorp.com/installers/atomic.sh | sh
# yum install php-mcrypt

Centos php versiyon güncelleme / upgrade

2

Centos üzerinde php güncelleme / upgrade işlemi için aşağıdaki işlemleri yapabilirsiniz.

rpm -qa |grep php

nano /etc/yum.repos.d/CentOS-Testing.repo

İçerğine aşağıdaki içeriği ekliyoruz.

# CentOS-Testing:
# !!!! CAUTION !!!!
# This repository is a proving grounds for packages on their way to CentOSPlus and CentOS Extras.
# They may or may not replace core CentOS packages, and are not guaranteed to function properly.
# These packages build and install, but are waiting for feedback from testers as to
# functionality and stability. Packages in this repository will come and go during the
# development period, so it should not be left enabled or used on production systems without due
# consideration.
[c5-testing]
name=CentOS-5 Testing
baseurl=http://dev.centos.org/centos/$releasever/testing/$basearch/
enabled=1
gpgcheck=1
gpgkey=http://dev.centos.org/centos/RPM-GPG-KEY-CentOS-testing
includepkgs=php*

rpm -qa |grep php
yum update
service httpd restart

Emir HALİLZADE

Go to Top