Search
 
SCRIPT & CODE EXAMPLE
 

PHP

upgrade php 7.3 centos 7

sudo yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm 
sudo yum -y install epel-release yum-utils

sudo yum-config-manager --disable remi-php54
sudo yum-config-manager --enable remi-php73
  
sudo yum update  

chmod -R 777 vendor
php artisan view:clear
php artisan config:cache

sudo chgrp www-data storage -R (Note: www-data is apache on Centos 7)
sudo chmod g+rwx storage -R


if still doesn't work try:
sudo setfacl -R -d -m g::rwx storage
Comment

centos update php 7 to php 8

// Thêm kho lưu trữ remi
yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm

// Cài đặt PHP 8.0
yum install -y --enablerepo=remi-php80 php php-cli
yum install -y yum-utils
yum-config-manager --enable remi-php80
yum install -y php php-cli
php -v
Comment

upgrade php 5.6 to 7 centos 7

$ wget -q http://rpms.remirepo.net/enterprise/remi-release-7.rpm
$ wget -q https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
Comment

PREVIOUS NEXT
Code Example
Php :: count number of rows laravel controller 
Php :: Creating a new laravelproject 
Php :: how to create a logfile in php? 
Php :: wordpress get site title 
Php :: laravel get first record 
Php :: Laravel - Comparison betweeon two column values - whereColumn 
Php :: how to uninstall php from mac catalina completely 
Php :: php echo an array to console 
Php :: Fatal error: Cannot redeclare 
Php :: php count amount of times a value appears in array 
Php :: mysqli real escape string php 
Php :: php case switch 
Php :: php get total amount of days in month 
Php :: Carbon Add Days To Date In Laravel 
Php :: This page isn’t working php 
Php :: delete image s3 laravel 
Php :: get post url from post id wordpress 
Php :: laravel model is dirty 
Php :: return response not found laravel api response 
Php :: sleep php 
Php :: carbon difference between two dates 
Php :: php run localhost 
Php :: how to display user id from a function on a wordpress page 
Php :: laravel blade get array count in Blade 
Php :: php expire session 
Php :: lat long in laravel validation 
Php :: laravel-medialibrary change name of file 
Php :: csv to array php 
Php :: strcasecmp php 
Php :: laravel image ratio validation 
ADD CONTENT
Topic
Content
Source link
Name
6+7 =