Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 DEV-Group
 DEV Bug Reports (Closed)
 V33(.02) BUGS + FIXES: Jump To Dropdownlist
 Forum Locked  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

dmwc
Starting Member

Taiwan
5 Posts

Posted - 29 July 2001 :  23:54:35  Show Profile  Visit dmwc's Homepage  Send dmwc an ICQ Message
First category not show in jump to list.

kirgy
New Member

Germany
95 Posts

Posted - 30 July 2001 :  01:16:34  Show Profile  Visit kirgy's Homepage
and strHomeUrl takes you to nowhere

I´ve done this, to make it work:

 Response.Write        "                <option value=""> --------------------</option>" & vbNewline & _
**** add this line **** " <option value=""></option>" & vbNewline & _
" <option value=""" & strHomeURL & """>Startseite</option>" & vbNewline & _
" <option value=""active.asp"">Neue Themen</option>" & vbNewline & _
" <option value=""faq.asp"">Hilfe</option>" & vbNewline & _
" <option value=""members.asp"">Mitglieder</option>" & vbNewline & _
" <option value=""search.asp"">Suchen</option>" & vbNewline & _
" </select>" & vbNewline & _
"</form>" & vbNewline & _
"<!-- END JUMP TO -->" & vbNewline


Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 30 July 2001 :  02:41:12  Show Profile
That is a bug.

Fix:
In inc_jump_to.asp, line 91, change this:
Response.Write	"		<option value=""> --------------------</option>" & vbNewline & _
to this:
Response.Write	"		<option value=""""> --------------------</option>" & vbNewline & _


You set what strHomeUrl is, in your admin options, Main Forum Configuration. The value of "Home URL" is what strHomeUrl is. So when they click on the link in the jump to box, it will try to go to the link you set for your Home URL.

Edited by - Davio on 30 July 2001 02:45:11
Go to Top of Page

thephantomnl
New Member

Netherlands
66 Posts

Posted - 30 July 2001 :  04:26:36  Show Profile  Visit thephantomnl's Homepage  Send thephantomnl an ICQ Message
stil one problem,

the first category is not shown in the dropdown box. the first forum is showt correctly

Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 30 July 2001 :  05:18:54  Show Profile
Fix:
In inc_jump_to.asp, line 64, change this:
iNewCat = ForumCatID
to this:
iNewCat = rsForum("CAT_ID")
The ForumCatID variable is set a few lines after this line, so ForumCatID was empty when that line of code was executed the first time.

- David
Go to Top of Page

thephantomnl
New Member

Netherlands
66 Posts

Posted - 30 July 2001 :  07:46:56  Show Profile  Visit thephantomnl's Homepage  Send thephantomnl an ICQ Message
works again thanx!

Go to Top of Page

kirgy
New Member

Germany
95 Posts

Posted - 08 August 2001 :  19:00:27  Show Profile  Visit kirgy's Homepage
Hello,

I found this problem with "-------" Link in the jump to box. That should do nothing, but it trys to load a page. I think on most server default.asp is set to standart. But on my web i get "directory listing denied" :(

For workaround i can set a standart page with meta refresh on default.asp in my forum directory, but this can´t be the goal. I hope you understand what i mean, any suggestions?



Edited by - kirgy on 08 August 2001 19:02:57
Go to Top of Page

James
Average Member

USA
539 Posts

Posted - 08 August 2001 :  22:17:47  Show Profile  Visit James's Homepage
Hmmmm!!!! It seems that the forums replaces my &nbsp tags with spaces for the message below, even from the text inside code tags.

quote:

That is a bug.

Fix:
In inc_jump_to.asp, line 91, change this:
Response.Write	"		<option value=""> --------------------</option>" & vbNewline & _
to this:
Response.Write	"		<option value=""""> --------------------</option>" & vbNewline & _





I just downloaded the 3.3.02 off the forums.snitz.com page and my line looks a little different:

Response.Write	"		<option value=""> --------------------</option>" & vbNewline & _


In fact, the entire file looks like Front Page has got hold of it and filled it with   tags. Example:

				end if
Response.Write ">      " & rsForum("F_SUBJECT")& "</option>" & vbNewline
end if
rsForum.MoveNext
loop
end if
rsCat.MoveNext
loop
Response.Write " <option value=""> --------------------</option>" & vbNewline & _


I checked the zip over again and it's there. Is the newest version suppose to be this way?

I'm trying to apply all the bug fixes before I upload and upgrade an older version of snitz. Will there be a release shortly with these bug fixes included?

-

*Interested in Radio Control*
*The RC Web Board - http://www.rcwebboard.com/*


Edited by - James on 08 August 2001 22:24:31
Go to Top of Page

gor
Retired Admin

Netherlands
5511 Posts

Posted - 17 August 2001 :  19:13:55  Show Profile  Visit gor's Homepage
quote:

Fix:
In inc_jump_to.asp, line 64, change this:
iNewCat = ForumCatID
to this:
iNewCat = rsForum("CAT_ID")
The ForumCatID variable is set a few lines after this line, so ForumCatID was empty when that line of code was executed the first time.

- David



Fixed in the code for version 3.3.03


Pierre
Join a Snitz Mailinglist
Go to Top of Page

JK_Bowman
New Member

USA
60 Posts

Posted - 17 August 2001 :  19:19:49  Show Profile  Visit JK_Bowman's Homepage  Send JK_Bowman an ICQ Message
Hey Gang,

Just a FYI....

I just received this in my e-mail...

Hello JK_Bowman

gor has replied to a topic on Snitz Forums 2000 that you requested notification to. Regarding the subject - V33(.02) BUGS + FIXES: Jump To Dropdownlist.

You can view the posting at http://forum.snitz.com/forum/link.asp?TOPIC_ID=13896


As you'll see, I've never posted to this thread or subscribed here.

Just FYI.

J.K. Bowman
http://forums.spider-food.net
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 17 August 2001 :  19:27:30  Show Profile
JK,

If you take a look here: http://forum.snitz.com/forum/subscription_list.asp?MODE=all (down near the bottom)

It does show you as being subscribed, maybe you did and forgot? Or maybe by accident? Anyway, you can unsubscribe via that page

Go to Top of Page

gor
Retired Admin

Netherlands
5511 Posts

Posted - 17 August 2001 :  19:38:57  Show Profile  Visit gor's Homepage
quote:

JK,

If you take a look here: http://forum.snitz.com/forum/subscription_list.asp?MODE=all (down near the bottom)

It does show you as being subscribed, maybe you did and forgot? Or maybe by accident? Anyway, you can unsubscribe via that page




Richard,

He can't see "All Subscriptions" (admin only), but the subscription should also show up on his "My Subscriptions" page, use: http://forum.snitz.com/forum/subscription_list.asp

Pierre
Join a Snitz Mailinglist
Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 17 August 2001 :  19:56:01  Show Profile
Ahh.. I had wondered about that. Didn't think it was a good idea for everyone to see who was subscribed to what.
Go to Top of Page

gor
Retired Admin

Netherlands
5511 Posts

Posted - 18 August 2001 :  01:20:39  Show Profile  Visit gor's Homepage
quote:

Ahh.. I had wondered about that. Didn't think it was a good idea for everyone to see who was subscribed to what.



Or being able to de-subscribe them

I'm considering this one fixed, am glad at least the topic-subscription works and locking....

Pierre
Join a Snitz Mailinglist
Go to Top of Page
  Previous Topic Topic Next Topic  
 Forum Locked  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.2 seconds. Powered By: Snitz Forums 2000 Version 3.4.07