cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
259
Views
0
Helpful
1
Replies

BBSM Bandwidth Settings 768Kbps?

tedbp
Level 1
Level 1

Is it possible to change the bandwidth selections per user which are currently 64, 128, 256, 512 and full speed to custom settings such as 768?

Thanks,

Ted

1 Reply 1

tedbp
Level 1
Level 1

I found the solution if anyone is interested.

Modification to portForm.asp will accomplish this. It appears that there will be a site index at the end of this file name if the site is already configured in the BBSM. Here is what my file contained after modification in which I added 768 and 1536 at the end:

Bandwidth Per User

<% if (strBandwidth == null)

{

Response.Write("");

} %>

<%=( (strBandwidth == "0")? "selected" : "" ) %> value="0">Full-Speed

<%=( (strBandwidth == "512")? "selected" : "" ) %> value="512">512 Kbps

<%=( (strBandwidth == "256")? "selected" : "" ) %> value="256">256 Kbps

<%=( (strBandwidth == "128")? "selected" : "" ) %> value="128">128 Kbps

<%=( (strBandwidth == "64")? "selected" : "" ) %> value="64">64 Kbps

<%=( (strBandwidth == "768")? "selected" : "" ) %> value="768">768 Kbps

<%=( (strBandwidth == "1536")? "selected" : "" ) %> value="1536">1536 Kbps

-Ted