im sure you guys are really sick of helpin me by now. lol. but i have another problem. this time with the pm modification. alright first of all when i was trying to add the code to inc_header.asp, the readme isnt very specific and i cant seem to get it right. i dont know exactly where to put the code. there are two different places in inc_header.asp that i have to edit. first one i dont know where its at. here are the needed files:
In inc_header.asp: insert first lines starting line 241 and the second starts line 505 and ends line 508 - simply replace the lines with the provided code
ok i added the code. but now my members.asp and pm_view.asp dont work. it says page cannot be displayed because in the link to the page the code has it going to /forum/members.asp and /forum/pm_view.asp. it should be /COLDtalk/members.asp. any ideas on how to change that?
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <a href="""http://yourURL/coldtalk/members.asp""" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href="""http://yourURL/coldtalk/pm_view.asp""" & dWStatus("Check Your Private Messages...") & " tabindex=""-1""><acronym title=""Check Your Private Messages..."">Private Messages"
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"
I think thats how I did it for non /forum/ urls... ive ditched my old hearder.asp tho... replace "your url" with ur url lol
i added the code and changed the url's now it says expected end of statement line 522. and its on the line that reads:
" <a href="""http://www.bleedinginternally/COLDtalk/members.asp""" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <a href=""""http://yourURL/coldtalk/members.asp""" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href=""""http://yourURL/coldtalk/pm_view.asp""" & dWStatus("Check Your Private Messages...") & " tabindex=""-1""><acronym title=""Check Your Private Messages..."">Private Messages"
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"
alright...now im not getting an error. but its not going to members.asp or pm_view.asp. its not recognizing the files its just going to the forum like default.asp
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <a href=""http://yourURL/coldtalk/members.asp" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href=""http://yourURL/coldtalk/pm_view.asp" & dWStatus("Check Your Private Messages...") & " tabindex=""-1""><acronym title=""Check Your Private Messages..."">Private Messages"
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"
try that... u dont no how much I hate quotation marks...
well i can confirm you are the proud father of a "members.asp" lol try
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <a href="""http://yourURL/coldtalk/members.asp"" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href="""http://yourURL/coldtalk/pm_view.asp"" & dWStatus("Check Your Private Messages...") & " tabindex=""-1""><acronym title=""Check Your Private Messages..."">Private Messages"
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"
that work? lol i think its the only combination I haven't tried... lol try the following if that doesn't work:
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <a href=""/coldtalk/members.asp" & dWStatus("Current members of these forums...") & " tabindex=""-1""><acronym title=""Current members of these forums..."">Members</acronym></a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href=""/coldtalk/pm_view.asp" & dWStatus("Check Your Private Messages...") & " tabindex=""-1""><acronym title=""Check Your Private Messages..."">Private Messages"
if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</acronym></a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"
and if that doesnt work either then i sure as hell would like to know how i did it lol
ok use this for now - it will work but you won't get any of your fancy little messages when you scroll your mouse over etc. if someone else hasnt come up with an answer by tomorrow ill try and figure it out - i hav to go its getting on for 11pm here and i need some tea...
' DEM --> End of Code added to show subscriptions if they exist
Response.Write " |" & vbNewline & _
" <A HREF="http://yourURL/coldtalk/members.asp"</a>" & vbNewline & _
" |" & vbNewline
If strPMStatus = "1" then
Response.Write " <a href="http://yourURL/coldtalk/pm_view.asp" if pmcount > 0 then Response.Write "(<font color=""" & strActiveLinkColor & """><b>" & pmcount & " New</b></font>)"
Response.Write "</a>" & vbNewline & _
" |" & vbNewline
end if
Response.Write " <a href=""search.asp"