Author |
Topic  |
|
Beano_ie
Junior Member
 
Ireland
328 Posts |
Posted - 24 May 2002 : 20:28:46
|
I've just installed the following Mods :
- Active Users V.3.4b
- Admin Moderators V11
- Avatar 2
- My personalization v1.3
- private messages v33
I am running Snitz V3.4.
Basically i was updating an old forum that I had made a mess of. Everything is going fine except for one thing. On the Default.asp page, at the bottom I get this;
my_Conn = nothing %>
And when I go into a Forum, i get the following at the very bottom of the page;
my_Conn = nothing %> bscription "TOPICNOTEXT", MemberID, Cat_ID, Forum_ID, Topic_ID, "", "" end if ' DEM --> End of code added to handle subscription processing. end sub %>
I have double checked the Mods and I can't see where the problem is. I was hoping that someone might recognize or identify the problem from the Deafult page. I also think that its got something to do with the inc_footer.asp file but I'm not really quite sure.
can anyone help or at least point me in the right direction?
Don't know if this helps or not, but when i go to delete a topic i also get this in the top of the pop up window;
berNumber = rsGetMemberNumber("MEMBER_ID") rsGetMemberNumber.close set rsGetMemberNumber = nothing end function %>
Help! 
|
|
Nathan
Help Moderator
    
USA
7664 Posts |
|
Beano_ie
Junior Member
 
Ireland
328 Posts |
Posted - 24 May 2002 : 20:43:00
|
Version 3.3.05 is what I meant to say, the latest one anyway, I'm not perfect 
|
 |
|
alex042
Average Member
  
USA
631 Posts |
Posted - 24 May 2002 : 22:28:38
|
quote: I have double checked the Mods and I can't see where the problem is.
Have you checked to make sure the MOD pieces are in their correct location and that there's not any extra coding like an extra "%>" before the page calls to close the connection?
|
 |
|
Beano_ie
Junior Member
 
Ireland
328 Posts |
Posted - 25 May 2002 : 11:02:14
|
Yeah, I checked them all twice, I'm just going to start again when I get the time to do it 
Thx anyway 
|
 |
|
Roland
Advanced Member
    
Netherlands
9335 Posts |
Posted - 25 May 2002 : 11:27:15
|
quote:
On the Default.asp page, at the bottom I get this;
my_Conn = nothing %>
That's a problem in inc_footer.asp as in default.asp the connection is never set to nothing (11 instances of opening it though). Make sure that in inc_footer.asp you have this at the very bottom:
<% my_Conn.Close set my_Conn = nothing %>
quote:
And when I go into a Forum, i get the following at the very bottom of the page;
my_Conn = nothing %> bscription "TOPICNOTEXT", MemberID, Cat_ID, Forum_ID, Topic_ID, "", "" end if ' DEM --> End of code added to handle subscription processing. end sub %>
Open forum.asp and do a search for End of code added to handle subscription processing. That'll give you three options: At a line around 505 (that's the # in 3.3.033) above 'DEM --> Start of Code added... there should be two intances of end if. Make sure that before the first one, there's <%
At line 665 it appears again. 5 lines above that, there's an end if before which (one line earlier) you should have <%
Last, but not least (as it's probably the one you need): line 689 has that text too. Here's the code that I have because I also noticed you pasted bscription instead of subscription:
<% end if ' DEM --> Start of Code added to handle subscription processing. if (strSubscription < 4 and strSubscription > 0) and (Cat_Subscription > 0) and Forum_Subscription > 0 then CheckSubscription "TOPICNOTEXT", MemberID, Cat_ID, Forum_ID, Topic_ID, "", "" end if ' DEM --> End of code added to handle subscription processing.
end sub %>
Roland
http://www.frutzle.com
Snitz Exchange | Do's and Dont's |
 |
|
|
Topic  |
|
|
|