Posts Tagged ‘php’
Centos 8 Steam PHP upgrade
#dnf module list php
#dnf module reset php
#dnf module enable php:7.4
#dnf update
Upgrade php5-5.4 to php56
#portmaster -o lang/php56 php5-5.4.35
#portmaster -y -D -o devel/oniguruma5 oniguruma4
#pkg info | grep php | grep 5.4 | awk ‘{print $1}’ |awk -F ‘-5.4’ ‘{print “whereis “$1}’ |sh |awk -F ‘: /usr/ports/’ ‘{print “portmaster -y -D -o “$2” “$1}’ | sed -e “s@/php5-@/php56-@” -e ‘s@$@-5.4.35@’ | sh
(more…)
Finding spam sending PHP scripts on your server
#php.ini
mail.add_x_header = On
mail.log = /var/log/phpmail.log
#find / -name php.ini | xargs perl -pi -e ‘s/\;mail\.log =/mail\.log = \/var\/log\/phpmail.log/i’