diff --git a/scripts/install b/scripts/install index 1a5c95a..272e62a 100755 --- a/scripts/install +++ b/scripts/install @@ -72,9 +72,7 @@ sudo yunohost app setting wordpress skipped_uris -v "/" sudo yunohost app ssowatconf # Wordpress installation -echo "127.0.0.1 $domain #yunowordpress" | sudo tee -a /etc/hosts -sleep 1 -curl -kL -X POST --data "?step=2&weblog_title=YunoBlog&user_name=$admin_wordpress&admin_password=$db_pwd&admin_password2=$db_pwd&admin_email=$admin_wordpress@$domain&language=$language&Submit=Install+WordPress" http://$domain$path/wp-admin/install.php?step=2 > /dev/null 2>&1 +curl -kL -H "Host: $domain" -X POST --data "?step=2&weblog_title=YunoBlog&user_name=$admin_wordpress&admin_password=$db_pwd&admin_password2=$db_pwd&admin_email=$admin_wordpress@$domain&language=$language&Submit=Install+WordPress" http://127.0.0.1$path/wp-admin/install.php?step=2 > /dev/null 2>&1 sleep 5 mysql -u $db_user -p$db_pwd $db_user -e "select * from wp_options;" > /dev/null 2>&1 result=$? @@ -98,4 +96,3 @@ else sudo service nginx reload sudo sed -i "s@//define('FORCE_SSL_ADMIN@define('FORCE_SSL_ADMIN@g" $final_path/wp-config.php fi -sudo sed -i '/yunowordpress/d' /etc/hosts