Author |
Topic |
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 03 March 2001 : 19:18:25
|
if you click on the admin option for Archiving... you are forced to log into the admin section... then it dops you in the main admin section (not the archive area you were in)
This should behave like other in forum admin options... without running through the Sessions... or if it does... then it should (after login) go to the archive option in question.
Reinsnitz (Mike) ><)))'> Need a Mod? "Therefore go and make disciples of all nations,..." Matthew 28:19a |
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 03 March 2001 : 19:25:22
|
?
it does behave the same as the other admins, if you have logged in with the admin session it should not be asking for a password.
also if you went directly to the other admin screens like admin_config_email this would ask for you to login, then dump you to admin home not email_config
|
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 03 March 2001 : 19:35:55
|
but we don't need the session do we?
Reinsnitz (Mike) ><)))'> Need a Mod? "Therefore go and make disciples of all nations,..." Matthew 28:19a |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 03 March 2001 : 19:38:27
|
yes, if you are using access and opt to compact the db, it closes all the db connections and the forum.
|
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 03 March 2001 : 19:50:59
|
ok... so we need to touch up the login.asp so that it will take you to where you were headed when you were re-directed to it
Reinsnitz (Mike) ><)))'> Need a Mod? "Therefore go and make disciples of all nations,..." Matthew 28:19a |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 03 March 2001 : 20:06:00
|
yes that would be better, I have just done a site for someone that does that, it passes it's intended destination as a hidden field called target, if the login form finds that target is not blank, it redirects to the correct page.
|
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 03 March 2001 : 21:06:01
|
groovy... care to share?
Reinsnitz (Mike) ><)))'> Need a Mod? "Therefore go and make disciples of all nations,..." Matthew 28:19a |
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 03 March 2001 : 21:38:03
|
I'll take a look at the forum admin login, see wether it would work
|
|
|
HuwR
Forum Admin
United Kingdom
20584 Posts |
Posted - 03 March 2001 : 21:53:48
|
that was quick
ok in the admin files, at the bottom it does this
<% Else %> <% Response.Redirect "admin_login.asp" %> <% End IF %>
Change it to
<% Else %> <% scriptname = split(request.servervariables("SCRIPT_NAME"),"/" Response.Redirect "admin_login.asp?target=scriptname" %> <% End IF %>
Then in admin_login.asp change this line of code
< meta http-equiv="Refresh" content="2; URL=admin_home.asp" >
to
<% if Request.querystring("target") = "" then %> < meta http-equiv="Refresh" content="2; URL=admin_home.asp" > <% else% > < meta http-equiv="Refresh" content="2; URL=<%=request.querystring("target")%>" > <% end if %>
|
|
|
Reinsnitz
Snitz Forums Admin
USA
3545 Posts |
Posted - 06 March 2001 : 23:26:20
|
fixed in the source of sf2k_32a5.zip
Reinsnitz (Mike) ><)))'> Need a Mod? "Therefore go and make disciples of all nations,..." Matthew 28:19a |
|
|
|
Topic |
|