Browse Source

php default

PHP 7.4 is default now.
Cristhian Martínez Ochoa 5 years ago
parent
commit
d4d53df0f6
3 changed files with 5 additions and 3 deletions
  1. 3 1
      README.md
  2. 1 1
      lib/general
  3. 1 1
      lib/install

+ 3 - 1
README.md

@@ -10,8 +10,10 @@ Webinoly provides a set of tools and commands that facilitate the web server adm
 - Unique commands to create, delete, disable sites.
 - Free SSL certificates for your sites with Let’s Encrypt and automatic server configuration.
 - HTTP/2 dramatically increase the speed of serving your content.
-- PHP v7.3 and support for earlier versions if needed (7.2) and the newest v7.4.
+- PHP v7.4 and support for earlier versions if needed (7.2 and 7.3).
 - FastCgi Cache and Redis Object Cache for your WordPress sites.
+- Install WP in any subfolder, Clone a WP site and support for external databases.
+- Nginx redirection manager, Backups, SMTP and a lot more features.
 - Get an A+ grade on [Qualys (SSL Labs) Test](https://www.ssllabs.com/ssltest/).
 - Log viewer in real time.
 

+ 1 - 1
lib/general

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-readonly app_version="1.10.0"
+readonly app_version="1.10.1"
 readonly svr_version="1.4"
 readonly os_ubuntu_supported=(xenial bionic)
 readonly php_supported=(7.2 7.3 7.4)

+ 1 - 1
lib/install

@@ -163,7 +163,7 @@ php_install() {
 		echo "${gre}PHP version '$(conf_read php-ver)' is set as default.${end}"
 	else
 		# Default PHP version
-		conf_write php-ver 7.3
+		conf_write php-ver 7.4
 	fi
 	ver=$(conf_read php-ver)