From a5a6d4a9ac0da1073fc69d25117df63e00e228b4 Mon Sep 17 00:00:00 2001 From: Kim Ellefsen Date: Thu, 17 Aug 2017 09:07:47 +0200 Subject: [PATCH] Disable loading of Dotenv. Requires refactoring and removal of old local-config. Dotenv also fails on Deploy to button --- public/wp-config.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/wp-config.php b/public/wp-config.php index d0a7ae271..1336fde62 100644 --- a/public/wp-config.php +++ b/public/wp-config.php @@ -15,7 +15,7 @@ */ require_once(__DIR__ . '/../vendor/autoload.php'); -(new \Dotenv\Dotenv(__DIR__.'/../'))->load(); +// (new \Dotenv\Dotenv(__DIR__.'/../'))->load(); if ( file_exists( dirname( __FILE__ ) . '/local-config.php' ) ) { @@ -104,7 +104,7 @@ * * You can have multiple installations in one database if you give each a unique * prefix. Only numbers, letters, and underscores please! - */ + */ $table_prefix = "wp_"; /**