diff --git a/src/freedombone-addremove b/src/freedombone-addremove
index 41e2826486594c47fc77073890db6c99f8bfd283..fc73c22c2e29068b5718d4e60ed1e45ed188bf16 100755
--- a/src/freedombone-addremove
+++ b/src/freedombone-addremove
@@ -230,7 +230,6 @@ function install_apps_selected {
             fi
         fi
         app_index=$((app_index+1))
-
     done
 
     # if no apps to be installed then don't do anything
@@ -299,6 +298,9 @@ args="$1"
 
 if [ "$2" ]; then
     if [[ "$args" == "add" || "$args" == "remove" ]]; then
+        app_name_upper=$(echo "$2" | awk '{print toupper($0)}')
+        read_config_param "${app_name_upper}_DOMAIN_NAME"
+        read_config_param "${app_name_upper}_CODE"
         if [[ "$args" == "add" ]]; then
             select_specific_app "$2" "1"
         else
diff --git a/src/freedombone-installer b/src/freedombone-installer
index ecf0eb4e13e882dcd86088ebb07a4c6acd598eb1..1112b48cbea2230e5366caa99c47aea92d709a94 100755
--- a/src/freedombone-installer
+++ b/src/freedombone-installer
@@ -840,11 +840,11 @@ function install_apps_from_webadmin {
                     fi
                 fi
 
-                if ! /usr/local/bin/${PROJECT_NAME}-addremove add "${app_name}" > "$webadmin_install_dir/log.txt"; then
+                if ! /usr/local/bin/${PROJECT_NAME}-addremove add "${app_name}" > "$webadmin_install_dir/applog.txt"; then
                     sed -i "/$linestr/d" "$pending_installs"
                     web_admin_create_add_apps
                 fi
-                chown www-data:www-data "$webadmin_install_dir/log.txt"
+                chown www-data:www-data "$webadmin_install_dir/applog.txt"
             fi
             # remove the line
             sed -i "/$linestr/d" "$pending_installs"