Browse Source

EasyEngine 1.1.1

old-stable v1.1.1
Mitesh Shah 11 years ago
parent
commit
74dbfb258d
  1. 2
      usr/local/sbin/easyengine
  2. 10
      usr/local/sbin/eeupdate

2
usr/local/sbin/easyengine

@ -1190,7 +1190,7 @@ if [ "$1" = "version" ] || [ "$1" = "--version" ] || [ "$1" = "-v" ]
then then
# Display Easy Engine Version # Display Easy Engine Version
echo "easyengine version: 1.1.0" echo "easyengine version: 1.1.1"
# Easy Engine Info # Easy Engine Info
elif [ "$1" = "info" ] elif [ "$1" = "info" ]

10
usr/local/sbin/eeupdate

@ -178,6 +178,11 @@ EE101()
sed -i "/extension/a \session.save_handler = memcache\nsession.save_path = \"tcp://localhost:11211\"" /etc/php5/mods-available/memcache.ini sed -i "/extension/a \session.save_handler = memcache\nsession.save_path = \"tcp://localhost:11211\"" /etc/php5/mods-available/memcache.ini
} }
EE110()
{
sed -i '/allow ;/d' /etc/nginx/common/acl.conf
}
HTTPAUTH() HTTPAUTH()
{ {
# Get The htpasswd Details # Get The htpasswd Details
@ -262,6 +267,11 @@ then
HTTPAUTH HTTPAUTH
MYCNFCHECK MYCNFCHECK
fi fi
if [[ $EECURRENTVERSION = 1.1.0 ]]
then
EE110
fi
fi fi
# Restart Nginx & PHP Services # Restart Nginx & PHP Services

Loading…
Cancel
Save