Overview
Returns an installation status of a package installing by the Module Loader.
Request Arguments
| Id |
|
An uploaded package ID
|
Response Arguments
| Error |
ErrorPage |
Message |
CurrentStep |
TotalSteps |
IsDone |
|
An error description
|
Boolean. True means - redirect to an error page fetched by an installation request.
|
A progress message list. Contains some messages about a current progress step.
|
Integer. Current progress step.
|
Integer. Total progress steps.
|
Boolean. True means that installation progress finished correctly.
|
Response
{
"error":"",
"error_page":false,
"message":[
"Rebuilding ActionViewMap...",
"Rebuilding ActionFileMap...",
"Rebuilding ActionReMap...",
"Rebuilding Administration...",
"Rebuilding Dependencies...",
"Rebuilding EntryPointRegistry...",
"Rebuilding Extensions...",
"Rebuilding FileAccessControlMap...",
"Rebuilding Layoutdefs...",
"Rebuilding GlobalLinks...",
"Rebuilding LogicHooks...",
"Rebuilding TinyMCE...",
"Rebuilding Menus...",
"Rebuilding Include...",
"Rebuilding ScheduledTasks...",
"Rebuilding ScheduledTasks...",
"Rebuilding UserPage...",
"Rebuilding Utils...",
"Rebuilding Vardefs...",
"Rebuilding JSGroupings...",
"Rebuilding WirelessModuleRegistry...",
"Rebuilding WirelessLayoutdefs...",
"Rebuilding TableDictionary...",
"Rebuilding metadata for clients...",
"Rebuilding Console...",
"Rebuilding Platforms...",
"Rebuilding Platforms...",
"Installing Bean : WSYS_WCFUQueue",
"Installing Bean : WSYS_WCFUConfigs",
"Installing Bean : WSYS_WCFULogs"
],
"current_step":19,
"total_steps":19,
"is_done":false,
"is_staged":true
}
Change Log
| Version |
Change |
|
v11_14
|
Added packages/installation-status endpoint
|