Author |
Topic |
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 24 January 2001 : 13:07:51
|
Rob,
if you send me your default.asp, I'll take a look at it. |
|
|
Rob Poretti
Junior Member
Canada
435 Posts |
Posted - 24 January 2001 : 13:26:35
|
Thats kind of you... it's on its way.
|
|
|
Rob Poretti
Junior Member
Canada
435 Posts |
Posted - 25 January 2001 : 12:41:49
|
Thank-you, Richard for solving my problem.
Since, I've already thanked you numerous times via email, I'd like to to "gush" in general about the unbelievable support that folks on this forum give to their members. I've been a "professional" in various technical fields for 20 years (and now part-time programmer, trying to become a full-time one), and I HAVE NEVER experienced the commitment to a product anywhere like with this team at Snitz Forums.
You are to be commended, lauded and applauded!
|
|
|
superfly
Starting Member
7 Posts |
Posted - 26 January 2001 : 09:16:38
|
They are gods, gurus and much more at the same time... THANKS..
superfly |
|
|
dontcry
Starting Member
1 Posts |
Posted - 30 January 2001 : 12:15:02
|
quote:
Rob, this is from my 3.1 SR4 version of default.asp ... Here is the file: http://www16.brinkster.com/richardk/files/default.txt
Thanks for Richard. I downloaded your file and got this error: "can't find inclube file 'active_users2b.asp'"
My copy is "Snitz_Forums_2000_V3_1_SR4" and I dont't know why they don't have that file. Now I fix it and post it here http://www.l63.net/default.txt
Thank you again, Richard
|
|
|
efourie
New Member
USA
80 Posts |
Posted - 04 February 2001 : 05:32:50
|
OK, talk about being confused. I tried to follow this topic until I got to the place where it says this is the final code, but it did not work for me.
Is there any file with all the files, including the default.asp for a forum with no other mod's?
Thanks gusy - you are doing a great job! My favorite forum software!
eDuck
Preach Christ - use words if you must [url]http://klewan.thebuffyzone.net/gfxdb/att2/dance1.gif[url] |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 04 February 2001 : 05:55:56
|
just download this file and use the default.asp out of it. It has this mod installed in it already.
Edited by - Richard Kinser on 04 February 2001 06:00:30 |
|
|
efourie
New Member
USA
80 Posts |
Posted - 04 February 2001 : 13:03:50
|
Thanks Richard - you are the best.
Tell me something. Do you guys intend do add these great mod's to future releases of the forum software. There are a zillion I would like to add, but I don't want to be stuck with a future release, not remembering what all went into my site.
Thanks eDuck
Preach Christ - use words if you must [url]http://klewan.thebuffyzone.net/gfxdb/att2/dance1.gif[url] |
|
|
RichardKinser
Snitz Forums Admin
USA
16655 Posts |
Posted - 04 February 2001 : 13:19:32
|
Some will make it in, some won't. Don't know right now though. Mike will be working with the code for awhile adding internationalization support and also converting to CSS.
It will be awhile before those 2 things are accomplished.
To fix the problem with your image in your signature:
links to images should be within [img] & [/img]
this is the code you should use:
[img]http://klewan.thebuffyzone.net/gfxdb/att2/dance1.gif[/img]
Edited by - Richard Kinser on 04 February 2001 13:28:39 |
|
|
efourie
New Member
USA
80 Posts |
Posted - 04 February 2001 : 14:25:32
|
Hey Richard
Thanks for the advice, I will go and change my profile now.
Question for you. Are you saying that your zip contains other asp files with fixes in them as well, and that it would be a good idea to load all of them?
Also, which printer friendly mod would you suggest. I kind of like the one used here, but it seems there are lot's of them.
In your response, you showed how to post my profile image with the brackets. How come this did not result in an image. Did you put another tag to ignore the code in brackets?
|
|
|
efourie
New Member
USA
80 Posts |
Posted - 04 February 2001 : 14:25:47
|
Hey Richard
Thanks for the advice, I will go and change my profile now.
Question for you. Are you saying that your zip contains other asp files with fixes in them as well, and that it would be a good idea to load all of them?
Also, which printer friendly mod would you suggest. I kind of like the one used here, but it seems there are lot's of them.
In your response, you showed how to post my profile image with the brackets. How come this did not result in an image. Did you put another tag to ignore the code in brackets?
|
|
|
Huntress
New Member
USA
96 Posts |
Posted - 06 February 2001 : 15:38:43
|
Can someone provide a link to a forum with this mod in place. The ones referenced earlier in this topic no longer work.
Thanks!
|
|
|
wii
Free ASP Hosts Moderator
Denmark
2632 Posts |
|
Huntress
New Member
USA
96 Posts |
Posted - 06 February 2001 : 22:56:53
|
Can this mod be used where the default value is to minimize the categories?
Also.... I think it would be great if category statistics and a description were included.
And one last thing... because I'm new (still wet behind my snitzel ears), and am having trouble following the thread... what is the current download for this mod?
thanks! you guys are truly the bestest!
Diana
Edited by - huntress on 07 February 2001 00:18:09 |
|
|
cheldan
Starting Member
Singapore
15 Posts |
Posted - 08 February 2001 : 01:56:15
|
quote:
frankie,
If you look at the way it was done for the categories you will see what you need to do.
Basically you are splitting the line that writes out the name (either Private Messages or Online Users, etc...) and inserting the code that places the + and - signs.
Then you put a if statement that checks to see whether it should display the part below the name line or not and then put an end if at the end.
For the cookie part, I placed mine in default.asp at the top with the part for HideCat, I named them HideStat, HidePM, and HideOnline.
Here is what I used:
HideStat = "HideStat" If Request.QueryString(HideStat) = "Y" then Response.Cookies(strCookieURL & HideStat) = "Y" Response.Cookies(strCookieURL & HideStat).Expires = dateAdd("d", 30, strForumTimeAdjust) Else If Request.QueryString(HideStat) = "N" then Response.Cookies(strCookieURL & HideStat) = "N" Response.Cookies(strCookieURL & HideStat).Expires = dateAdd("d", 30, strForumTimeAdjust) End If End If HidePM = "HidePM" If Request.QueryString(HidePM) = "Y" then Response.Cookies(strCookieURL & HidePM) = "Y" Response.Cookies(strCookieURL & HidePM).Expires = dateAdd("d", 30, strForumTimeAdjust) Else If Request.QueryString(HidePM) = "N" then Response.Cookies(strCookieURL & HidePM) = "N" Response.Cookies(strCookieURL & HidePM).Expires = dateAdd("d", 30, strForumTimeAdjust) End If End If HideOnline = "HideOnline" If Request.QueryString(HideOnline) = "Y" then Response.Cookies(strCookieURL & HideOnline) = "Y" Response.Cookies(strCookieURL & HideOnline).Expires = dateAdd("d", 30, strForumTimeAdjust) Else If Request.QueryString(HideOnline) = "N" then Response.Cookies(strCookieURL & HideOnline) = "N" Response.Cookies(strCookieURL & HideOnline).Expires = dateAdd("d", 30, strForumTimeAdjust) End If End If
Dear Richard,
Thanx for all your help. I've juz installed the minimize cat mod, and i'm abit confused with the cookie thing written above. Could you please help me out.
Thanx.
Daniel.
|
|
|
Topic |
|