• Toll-free  888-665-8637
  • International  +1 717-220-0012
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Scott Tafel
#1 Posted : Tuesday, July 3, 2007 11:44:02 PM(UTC)
Scott Tafel

Rank: Member

Joined: 5/21/2007(UTC)
Posts: 18

When logged in from any page, if I log out it adds a / at the end of the url. The style sheet does not load due to the use of relative mapping of the location of the .css file, and the extra / creates an invalid relative reference. How can I modify the code to not add the / at the end?
[email protected]
#2 Posted : Friday, July 6, 2007 2:21:13 PM(UTC)
everett@bvsoftware.com

Rank: Member

Joined: 3/8/2007(UTC)
Posts: 139

Hi Scott,

Edit your Security.aspx.vb page found in "YourSiteRoot\BVadmin\Configuration". Change the following lines:

' Save Standard Root
Dim tempStandardURL As String = String.Empty
tempStandardURL = SiteStandardRoot.Text.Trim()
If tempStandardURL.EndsWith("/") = False Then
tempStandardURL += "/" ------------------------> Change the "/" to ""
End If

' Save Secure Root
Dim tempSecureURL As String = String.Empty
tempSecureURL = SecureSiteRoot.Text.Trim()
If tempSecureURL.EndsWith("/") = False Then
tempSecureURL += "/" ------------------------> Change the "/" to ""
End If

Thanks,
Everett Comstock

BV Software
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.

©2025 Develisys. All rights reserved.
  • Toll-free  888-665-8637
  • International  +1 717-220-0012