diff --git a/Docker/mattermostldap/Dockerfile b/Docker/mattermostldap/Dockerfile
index ef1a8ce..71329b9 100644
--- a/Docker/mattermostldap/Dockerfile
+++ b/Docker/mattermostldap/Dockerfile
@@ -10,6 +10,9 @@ RUN set -x \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap
+# Enable development php.ini config (Solve empty answer from token.php)
+RUN ln -s /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
+
# Get Mattermost-LDAP project
RUN git clone https://github.com/crivaledaz/Mattermost-LDAP.git /opt/Mattermost-LDAP/
diff --git a/Docker/php-ldap-pgsql/Dockerfile b/Docker/php-ldap-pgsql/Dockerfile
index ee17d76..f901b35 100644
--- a/Docker/php-ldap-pgsql/Dockerfile
+++ b/Docker/php-ldap-pgsql/Dockerfile
@@ -9,4 +9,5 @@ RUN set -x \
&& docker-php-ext-configure ldap --with-libdir=lib/x86_64-linux-gnu/ \
&& docker-php-ext-install ldap
+# Enable development php.ini config (Solve empty answer from token.php)
RUN ln -s /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini
diff --git a/env.example b/env.example
index 1f10418..665d55d 100644
--- a/env.example
+++ b/env.example
@@ -8,10 +8,10 @@
#
# Client ID token. Must be a random hex value. Use `openssl rand -hex 32` to generate a token.
-client_id = 123456789abcdef123456789abcdef
+client_id = "123456789abcdef123456789abcdef"
# Client Secret token. Must be a random hex value. Use `openssl rand -hex 32` to generate a token.
-client_secret = fedcba987654321fedcba987654321
+client_secret = "fedcba987654321fedcba987654321"
# Redirect URI use by Oauth server to redirect user after authentifictaion process. Must be the same than as Mattermost give to Oauth server.
redirect_uri = "http://localhost/signup/gitlab/complete"
@@ -30,13 +30,13 @@ user_id = ""
#
# Username for the PostgreSQL administrator account
-POSTGRES_USER = postgres
+POSTGRES_USER = "postgres"
# Password for PostgreSQL administrator account
-POSTGRES_PASSWORD = rootroot
+POSTGRES_PASSWORD = "rootroot"
# Method to use for connection to database
-POSTGRES_HOST_AUTH_METHOD = trust
+POSTGRES_HOST_AUTH_METHOD = "trust"
# Oauth user to connect the database
db_user = "oauth"
@@ -61,16 +61,16 @@ db_type = "pgsql"
#
# LDAP host or IP
-ldap_host = ldap://ldap.company.com:389/
+ldap_host = "ldap://ldap.company.com:389/"
# LDAP port
-ldap_port = 389
+ldap_port = "389"
# LDAP protocol version
-ldap_version = 3
+ldap_version = "3"
# Unique identifier for entry in LDAP
-ldap_search_attribute = uid
+ldap_search_attribute = "uid"
# Base DN to search from in LDAP
ldap_base_dn = "ou=People,o=Company"
diff --git a/oauth/authorize.php b/oauth/authorize.php
index baf14e6..6de485c 100644
--- a/oauth/authorize.php
+++ b/oauth/authorize.php
@@ -70,13 +70,11 @@ else if (empty($_POST)) {
E-mail
-