mirror of
https://github.com/unraid/webgui.git
synced 2026-02-18 06:58:47 -06:00
Descriptive error messages on install_key
This commit is contained in:
@@ -41,6 +41,32 @@ if (in_array($host,['keys.lime-technology.com','lime-technology.com'])) {
|
||||
}
|
||||
} else {
|
||||
write("ERROR: $return_var\n");
|
||||
switch($return_var) {
|
||||
case 1:
|
||||
write("Generic error code - Contact Support\n");
|
||||
break;
|
||||
case 2:
|
||||
write("Parse Error - Contact Support\n");
|
||||
break;
|
||||
case 3:
|
||||
write("File I/O error - Contact Support\n");
|
||||
break;
|
||||
case 4:
|
||||
write("Network Failure: Try setting static DNS addresses within Settings - Network Settings or Contact Support\n");
|
||||
break;
|
||||
case 5:
|
||||
write("SSL verification failure. Is the date & time set correctly? (Settings - Date & Time Settings) or Contact Support\n");
|
||||
break;
|
||||
case 6:
|
||||
write("Username/password authentication failure - Contact Support\n");
|
||||
break;
|
||||
case 7:
|
||||
write("Protocol error - Contact Support\n");
|
||||
break;
|
||||
case 8:
|
||||
write("Server issued an error response - Contact Support\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
write("ERROR, bad or missing key file URL: $url\n");
|
||||
|
||||
Reference in New Issue
Block a user