«

»

Mar 14

Php sürümleri arasındaki geçişler ve pdo-msSQL konfigürasyonu

Switch From PHP 7.0=> PHP 7.2

The PHP 5.6 is set as default version in your system, and you need to switch to PHP 7.2. Run the following commands to switch for Apache and command line.
Apache:-

sudo a2dismod php7.0
sudo a2enmod php7.2
sudo service apache2 restart

Command Line:-

sudo update-alternatives –set php /usr/bin/php7.2
sudo update-alternatives –set phar /usr/bin/phar7.2
sudo update-alternatives –set phar.phar /usr/bin/phar.phar7.2
sudo update-alternatives –set phpize /usr/bin/phpize7.2
sudo update-alternatives –set php-config /usr/bin/php-config7.2

Note – The phpize7.2 and php-config7.2 command is available in php7.2-dev package. This is more useful for compiling PHP modules using pecl.

Switch From PHP 7.2 => PHP 7.0

Default PHP 7.2 is set on your system and you need to switch to PHP 5.6. Now run the following commands to switch for Apache and command line.
Apache:-

sudo a2dismod php7.2
sudo a2enmod php7.0
sudo service apache2 restart

Command Line:-

sudo update-alternatives –set php /usr/bin/php7.0
sudo update-alternatives –set phar /usr/bin/phar7.0
sudo update-alternatives –set phar.phar /usr/bin/phar.phar7.0
sudo update-alternatives –set phpize /usr/bin/phpize7.0
sudo update-alternatives –set php-config /usr/bin/php-config7.0

phpde bir module aktif  hale getirilicekse öncelikle phpenmod snmp mesela bu komutu uyguladığımızda sistemde php7.0 ve php7.2 yüklüyse

Kod:
phpenmod -v ALL -s ALL snmp

komutunda modulun ini file i bulamıyorsa güncel ini file i softlin verebilirsiniz.

Kod:
ln -s /etc/php/7.2/mods-available/snmp.ini /etc/php/7.0/mods-available/

 

Kod:
ll /etc/php/7.0/mods-available/snmp.ini

lrwxrwxrwx 1 root root 36 Nov 30 10:16 /etc/php/7.0/mods-available/snmp.ini -> /etc/php/7.2/mods-available/snmp.ini

mssql ile bağlantı kurulacaksa pdo_dblib modulu yüklenmeli ve aktif edilmelidir.

Bir Cevap Yazın

E-posta hesabınız yayımlanmayacak. Gerekli alanlar * ile işaretlenmişlerdir

AlphaOmega Captcha Classica  –  Enter Security Code
     
 

Şu HTML etiketlerini ve özelliklerini kullanabilirsiniz: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>