Author |
Topic |
Longnt06k
Starting Member
Vietnam
29 Posts |
Posted - 12 June 2002 : 23:40:49
|
Please help me buil Quick reply mod for Snit 3.303 . I'm used Huwr version . I Was try , built quick reply by mod for 3.14 , but it not run . Help me !!!
|
|
cripto9t
Average Member
USA
881 Posts |
Posted - 13 June 2002 : 06:58:28
|
It's been built. http://forum.snitz.com/forum/topic.asp?TOPIC_ID=24974 Follow this thread closely and you'll have a quick reply and more.
p.s. Don't know if this will work on Huwrs' --------Brian.
Edited by - cripto9t on 13 June 2002 07:02:06 |
|
|
Longnt06k
Starting Member
Vietnam
29 Posts |
Posted - 13 June 2002 : 09:17:41
|
I was tried , but that built for Snitz 3.14 . Huwrs version not run . Plese help me . We are can write a new code for Snitz 3.3 ????
|
|
|
cripto9t
Average Member
USA
881 Posts |
Posted - 13 June 2002 : 09:51:46
|
quote:
I was tried , but that built for Snitz 3.14 . Huwrs version not run .
Nope it is for 3.3. I've seen it in use on Huwrs' versions but I don't know if they had to do anything to it.
--------Brian. |
|
|
blackinwhite
Average Member
Turkey
657 Posts |
Posted - 13 June 2002 : 18:01:40
|
I have been using it in HuwR's version.
it doesn't require any extra changes.
what kind of error did you get with HuwR's code?
|
|
|
HarshReality
Junior Member
USA
128 Posts |
Posted - 13 June 2002 : 19:50:17
|
I'd be perfectly estatic if I could see an actual mod rather than @ 10 posts of ideas.
Anti Social Personality |
|
|
dayve
Forum Moderator
USA
5820 Posts |
Posted - 14 June 2002 : 00:08:28
|
quote:
I'd be perfectly estatic if I could see an actual mod rather than @ 10 posts of ideas.
Anti Social Personality
I second that.
http://www.nineinchnailz.com |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 14 June 2002 : 00:32:26
|
As I have said before. The host where I have the file for download is down at the moment. |
|
|
Longnt06k
Starting Member
Vietnam
29 Posts |
Posted - 14 June 2002 : 03:35:01
|
Hey RichardKinser . U have send me some code of quick reply mod ? Version 3.303 . Why ??? Snitz not buil with Quick reply mod + Rich Text??? That is a features very good !!!.
|
|
|
blackinwhite
Average Member
Turkey
657 Posts |
Posted - 14 June 2002 : 04:24:59
|
ok here it is:
at the very end of your topic.asp file, just before the closing %> tag, add this
Sub QuickReply() Response.Write "<DIV style=""FONT-SIZE: 4px""> </DIV><table width=""100%"" border=""0"" cellspacing=""0"" cellpadding=""0"" align=""center"" class=aborder><tr><td >" & vbNewLine & _ "<table width=""100%"" border=""0"" cellspacing=""1"" cellpadding=""1"">" & vbNewLine & _ "<form name=""PostTopic"" method=""post"" action=""post_info.asp"">" & vbNewLine & _ "<input name=""strMessageIcon"" type=""hidden"" value=""1"">" & vbNewLine & _ "<input name=""ARCHIVE"" type=""hidden"" value=""" & ArchiveView & """>" & vbNewLine & _ "<input name=""Method_Type"" type=""hidden"" value=""Reply"">" & vbNewLine & _ "<input name=""TOPIC_ID"" type=""hidden"" value=""" & Topic_ID & """>" & vbNewLine & _ "<input name=""FORUM_ID"" type=""hidden"" value=""" & Forum_ID & """> " & vbNewLine & _ "<input name=""CAT_ID"" type=""hidden"" value=""" & Cat_ID & """>" & vbNewLine & _ "<input name=""FORUM_Title"" type=""hidden"" value=""" & ChkString(Forum_Subject, "hidden") & """>" & vbNewLine & _ "<input name=""Topic_Title"" type=""hidden"" value=""" & ChkString(Topic_Subject, "hidden") & """>" & vbNewLine & _ "<input name=""Refer"" type=""hidden"" value=""" & request.servervariables("SCRIPT_NAME") & "?" & Request.QueryString & """>" & vbNewLine & _ "<input name=""UserName"" type=""hidden"" value=""" & strDBNTUserName & """>" & vbNewLine & _ "<input name=""Password"" type=""hidden"" value=""" & Request.Cookies(strUniqueID & "User")("Pword") & """>" & vbNewLine & _ "<tr>" & vbNewLine & _ "<td class=ust noWrap vAlign=""top"" colspan=""2"" align=center><span class=f13v><b>Yorum Ekle</b></span></td>" & vbNewLine & _ "</tr>" & vbNewLine & _ "<tr>" & vbNewLine & _ "<td width=""" & strTopicWidthLeft & """ class=hucre1 noWrap vAlign=""top"" align=""right""><span class=f11v><b>Mesajınız: </b></span></td>" & vbNewLine & _ "<td width=""" & strTopicWidthRight & """ class=hucre1><textarea name=""Message"" wrap=""VIRTUAL"" rows=""10"" cols=""70""></textarea><br></td>" & vbNewLine & _ "</tr>" & vbNewLine & _ "<tr>" & vbNewLine & _ "<td class=""hucre1"" noWrap align=""center"" colspan=""2""><span class=f11v><input name=""Submit"" type=""submit"" class=""butt1"" value=""Cevap gönder""></span></td>" & vbNewLine & _ "</tr>" & vbNewLine & _ "</form>" & vbNewLine & _ "</table>" & vbNewLine & _ "</td>" & vbNewLine & _ "</tr>" & vbNewLine & _ "</table>" & vbNewLine end sub
and add this whre you want your quick reply box appear,
<% if strDBNTUserName <> "" and ((Cat_Status = 1) and (Forum_Status = 1) and (Topic_Status = 1)) and ArchiveView = "" then call QuickReply() else Response.Write "<div class=""f12v"" align=""center""><strong>Yorum gönderebilmek için <a class=dikkat href=""policy.asp"">üye</a> olmalısınız.</strong></div>" end if %>
sorry, they all are non-Turkish, hope this helps.
|
|
|
blackinwhite
Average Member
Turkey
657 Posts |
Posted - 14 June 2002 : 04:34:34
|
BTW, for those who doesn't have Mesage Icons mod installed,
[code] "<input name=""strMessageIcon"" type=""hidden"" value=""1"">" & vbNewLine & _[/code} oart is unnecesary.
|
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
|
dayve
Forum Moderator
USA
5820 Posts |
|
peternem
Starting Member
3 Posts |
Posted - 10 July 2002 : 06:22:47
|
hi,
I have been using the Quick reply hack on a vBulletin forum for sometime now, makes things much quicker.
I didn't realise there was a mod for snitz, but after seeing this will implement it on my own Snitz forum.
Unfortunately the file http://richsnitz.digitalrice.com/quickreply.txt seems to be down! Does anyone else have a cop[y they could e-mail me?
I need fairly good instructions as am fairly new to ASP and got a bit lost trying to keep track in the other thread where people kept adding bits to the code!
thanks!
|
|
|
blackinwhite
Average Member
Turkey
657 Posts |
Posted - 10 July 2002 : 07:26:00
|
quote:
hi,
I have been using the Quick reply hack on a vBulletin forum for sometime now, makes things much quicker.
I didn't realise there was a mod for snitz, but after seeing this will implement it on my own Snitz forum.
Unfortunately the file http://richsnitz.digitalrice.com/quickreply.txt seems to be down! Does anyone else have a cop[y they could e-mail me?
I need fairly good instructions as am fairly new to ASP and got a bit lost trying to keep track in the other thread where people kept adding bits to the code!
thanks!
it works now
|
|
|
peternem
Starting Member
3 Posts |
Posted - 10 July 2002 : 11:20:02
|
Many Thanks!
|
|
|
Topic |
|