diff --git a/roles/usb_lib/files/upload/error.php b/roles/usb_lib/files/upload/error.php
index 75d4f5a2d..c5210d229 100644
--- a/roles/usb_lib/files/upload/error.php
+++ b/roles/usb_lib/files/upload/error.php
@@ -6,10 +6,10 @@
?>
-AN ERROR occurred! Please make sure one and ONLY one (no more, no less) removable USB stick is plugged into your Internet-in-a-Box. Reach out to TK for help if you have any questions or continue having trouble with the setup.
+ERROR: Please make sure one and ONLY one (no more, no less) removable USB stick is plugged into your Internet-in-a-Box. Please see IIAB FAQs for additional support: FAQ #4 - Can teachers display their own content?, FAQ #49 - What are the best places for community support?.
+
-Share the below error message with IIAB developers at TK for debugging:
diff --git a/roles/usb_lib/files/upload/index.php b/roles/usb_lib/files/upload/index.php
index 670d8499e..e77b079ff 100644
--- a/roles/usb_lib/files/upload/index.php
+++ b/roles/usb_lib/files/upload/index.php
@@ -4,7 +4,7 @@
* Upload2USB App Index Page
*/
-$title = "IIAB Upload to USB";
+$title = "Upload to USB";
include("header.php");
//Check if folder for today exists, and get file count if it does
diff --git a/roles/usb_lib/files/upload/upload-file.php b/roles/usb_lib/files/upload/upload-file.php
index d86f9aa60..0d132d1d3 100644
--- a/roles/usb_lib/files/upload/upload-file.php
+++ b/roles/usb_lib/files/upload/upload-file.php
@@ -4,7 +4,7 @@
* Upload2USB App - Process Submission
*/
-$title = "IIAB Upload to USB App Results";
+$title = "Upload to USB Results";
include("header.php");
//get folder path where file will be stored
diff --git a/roles/usb_lib/files/upload/upload2usb.php b/roles/usb_lib/files/upload/upload2usb.php
index 3de51297d..31623ea6f 100644
--- a/roles/usb_lib/files/upload/upload2usb.php
+++ b/roles/usb_lib/files/upload/upload2usb.php
@@ -20,15 +20,15 @@ function getTargetUSBDriveLocation () {
# error if 1<>usb sticks are installed
$rmv_usb_path_count = shell_exec('lsblk --output NAME,TRAN,RM,MOUNTPOINT --pairs |grep RM=\"1\" | grep -v MOUNTPOINT=\"\" | cut -d " " -f 4 | wc -l');
if ($rmv_usb_path_count == 0) {
- throw new RuntimeException('0 USB sticks found
');
+ throw new RuntimeException('0 USB sticks found.
');
} elseif ($rmv_usb_path_count > 1) {
- throw new RuntimeException('More than 1 USB sticks installed
');
+ throw new RuntimeException('More than 1 USB sticks installed.
');
}
$rmv_usb_path = trim(str_replace('"', '', shell_exec('lsblk --output NAME,TRAN,RM,MOUNTPOINT --pairs |grep RM=\"1\" | grep -v MOUNTPOINT=\"\" | cut -d " " -f 4 | cut -d "=" -f 2')));
if (empty($rmv_usb_path)) {
- throw new RuntimeException('Not able to find USB stick
');
+ throw new RuntimeException('Not able to find USB stick.
');
} else {
return $rmv_usb_path . "/";
}
@@ -42,7 +42,7 @@ function getTargetFolderPath ($create_folder_p) {
$target_folder_path = $parent_dir . $today_folder_name;
if (!file_exists($target_folder_path) && $create_folder_p) {
- mkdir($target_folder_path, 0777);
+ mkdir($target_folder_path, 0777) or throw new RuntimeException("Not able to create upload directory.
Make sure 'usb_lib_umask0000_for_kolibri' is set to 'True'.
");
}
return $target_folder_path;
}