From 972405ae30572e4e7609b22486146fde45d1715f Mon Sep 17 00:00:00 2001 From: gau1991 Date: Fri, 23 Jan 2015 14:52:03 +0530 Subject: [PATCH] Fixed wpconfig generation --- ee/cli/plugins/site_functions.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ee/cli/plugins/site_functions.py b/ee/cli/plugins/site_functions.py index 52af5b1b..8db0aec9 100644 --- a/ee/cli/plugins/site_functions.py +++ b/ee/cli/plugins/site_functions.py @@ -178,24 +178,24 @@ def setupwordpress(self, data): Log.debug(self, "Setting up wp-config file") if not data['multisite']: Log.debug(self, "Generating wp-config for WordPress Single site") - EEShellExec.cmd_exec(self, "bash -c \'php /usr/bin/wp --allow-root " + EEShellExec.cmd_exec(self, "bash -c \"php /usr/bin/wp --allow-root " + "core config " + "--dbname={0} --dbprefix={1} --dbuser={2} " .format(data['ee_db_name'], ee_wp_prefix, data['ee_db_user']) - + "--dbpass={0}" - "--extra-php<