Select to view content in your preferred language

"Under Maintenance" in Portal for Arcgis

1916
2
Jump to solution
11-07-2018 08:32 AM
GustavoDrets
New Contributor II

Does anybody know which is the correct way to place an "Under Maintenance" page  in Portal for Arcgis ?

0 Kudos
1 Solution

Accepted Solutions
JonathanQuinn
Esri Notable Contributor

You can edit the organization settings to indicate the portal is in maintenance mode:

Configure general settings—Portal for ArcGIS (10.6) | ArcGIS Enterprise 

You can also add a classification banner but repurpose it for a notification:

Set advanced portal options—Portal for ArcGIS (10.6) | ArcGIS Enterprise 

classificationBanner—Indicates if a security banner shows at the top and bottom of every page in the application. The default is false. To display a security banner, replace the classificationBanner:false line with code that defines your banner. The following is an example:

classificationBanner : {     text : "UNCLASSIFIED",     color:[255,255,255],     font:{       decoration:"none",       family:"Portable User Interface",       size:16,       style:"normal",       weight:"bold"    },     height : 5,     backgroundColor:[0,128,0]   },

Set the UNCLASSIFIED text to whatever you want and you can change the color to red, for example.

View solution in original post

2 Replies
JonathanQuinn
Esri Notable Contributor

You can edit the organization settings to indicate the portal is in maintenance mode:

Configure general settings—Portal for ArcGIS (10.6) | ArcGIS Enterprise 

You can also add a classification banner but repurpose it for a notification:

Set advanced portal options—Portal for ArcGIS (10.6) | ArcGIS Enterprise 

classificationBanner—Indicates if a security banner shows at the top and bottom of every page in the application. The default is false. To display a security banner, replace the classificationBanner:false line with code that defines your banner. The following is an example:

classificationBanner : {     text : "UNCLASSIFIED",     color:[255,255,255],     font:{       decoration:"none",       family:"Portable User Interface",       size:16,       style:"normal",       weight:"bold"    },     height : 5,     backgroundColor:[0,128,0]   },

Set the UNCLASSIFIED text to whatever you want and you can change the color to red, for example.

GustavoDrets
New Contributor II

Thanks for your help, I'll give it a try

Regards

Gustavo

0 Kudos