From 7a5a5c97e02f7b097a275471eb738c2577d7e8d7 Mon Sep 17 00:00:00 2001 From: Umesh Kumar Date: Fri, 28 Feb 2014 19:12:17 +0530 Subject: [PATCH] Fixes issue #135 Permalink structure updated to Day and Postname --- usr/local/sbin/easyengine | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/usr/local/sbin/easyengine b/usr/local/sbin/easyengine index fed7d777..7ff1076c 100644 --- a/usr/local/sbin/easyengine +++ b/usr/local/sbin/easyengine @@ -1020,6 +1020,11 @@ EEWPDBSETUP() wp core install --allow-root --url=$WWWDOMAIN --title="$WWWDOMAIN" \ --admin_name=$WPADMINUSER --admin_password=$WPADMINPASS --admin_email=$WPADMINEMAIL &>> $INSTALLLOG \ || OwnError "Unable To Create WordPress Tables For $DOMAIN" + + # Update WordPress Permalink Structure, Day and Postname + echo -e "\033[34mUpdating WordPress Permalink, Please Wait...\e[0m" + wp rewrite structure /%year%/%monthnum%/%day%/%postname%/ \ + || OwnError "Unable To Update WordPress Permalink For $DOMAIN" } EEPERMISSION()