- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2018 10:09 PM
In order to meet security compliance, I recently disabled glide.ui.forgetme on our instance. It worked great on the normal login page but the service portal login page still has the "Remember me" checkbox option (and it is functional, i.e. adds a cookie). A quick documentation/google search did not turn anything up. Does anyone know how to remove this from the service portal login?
Thanks in advance!
Solved! Go to Solution.
- Labels:
-
Configuration Compliance

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2018 12:31 AM
The login widget uses these two properties:
data.forgetMe = GlideProperties.getBoolean("glide.ui.forgetme");
data.forgetMeDefault = GlideProperties.getBoolean('glide.ui.remember.me.default', true);
That's where you need to look for and clear your browser and instance cache (../cache.do)
Principal Platform Architect, Customer Success, ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2018 10:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2018 10:36 PM
Hi Ryan,
Please enable the glide.ui.forgetme. Set its value to true. This will do for both native and service portal. Also clear the cache as well.
Regards,
Manan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2018 11:52 PM
Hi Ryan,
Navigate to service portal>widget instances>login
In server script look for line no 20. make changes.
Thank you

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2018 12:31 AM
The login widget uses these two properties:
data.forgetMe = GlideProperties.getBoolean("glide.ui.forgetme");
data.forgetMeDefault = GlideProperties.getBoolean('glide.ui.remember.me.default', true);
That's where you need to look for and clear your browser and instance cache (../cache.do)
Principal Platform Architect, Customer Success, ServiceNow