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

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 HuwR - Bookmarks
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Big B
Starting Member

USA
49 Posts

Posted - 05 April 2001 :  01:43:57  Show Profile  Visit Big B's Homepage  Send Big B an AOL message  Send Big B an ICQ Message
I add a topic to my bookmarks and it tells me that is was added.
The refreesh takes me back to the topic and then when I go into bookmarks, none are listed.
No errors.

Any input appreciated.

Thanks,

Brian

Aznknight
Senior Member

USA
1373 Posts

Posted - 05 April 2001 :  02:33:01  Show Profile  Send Aznknight an AOL message  Send Aznknight an ICQ Message
that's because the topic you bookmarked is not "active" when you visit bookmark.asp. trying changing the select box to something else and you should be able to see it. It works kinda like active.asp

- Alan
www.iamviet.com
www.calvsa.net
Snitz Resource
Go to Top of Page

Warchild
Starting Member

USA
46 Posts

Posted - 05 April 2001 :  23:36:01  Show Profile  Visit Warchild's Homepage  Send Warchild an ICQ Message
Bookmark.asp

Response object error 'ASP 0156 : 80004005'

Header Error

/forum/bookmark.asp, line 15

The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.


Line 15 is

response.buffer = true

If line 15 is set to false, I no longer get the error, however bookmarks are not saved

Someone PLEASE answer this, it's my 4th question with no response

Go to Top of Page

twum
New Member

Netherlands
50 Posts

Posted - 06 April 2001 :  02:02:22  Show Profile  Visit twum's Homepage
quote:

Bookmark.asp

Response object error 'ASP 0156 : 80004005'

Header Error

/forum/bookmark.asp, line 15

The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.


Line 15 is

response.buffer = true

If line 15 is set to false, I no longer get the error, however bookmarks are not saved

Someone PLEASE answer this, it's my 4th question with no response




Hi,
I'm also getting the same error message. If you find the fix let me know.

You can take a man out of Ghana, but you can't take Ghana out of the man.
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 06 April 2001 :  04:39:23  Show Profile  Visit HuwR's Homepage
You have an include statement in the wrong place somewhere, so it is trying to load more than one page header.

Go to Top of Page

Warchild
Starting Member

USA
46 Posts

Posted - 06 April 2001 :  09:45:19  Show Profile  Visit Warchild's Homepage  Send Warchild an ICQ Message
Thanks, I figured it out...

Include inc_top.asp should have been grouped with the rest of the includes

I directly stuck bookmark.asp in from the zip file... and hadn't bothered trying that bit...

thanks HuwR

+++edit+++

Well that didn;t do it either... bookmark.asp works up until I actually try to bookmark something then it returns this

Response object error 'ASP 0156 : 80004005'

Header Error

/forum/bookmark.asp, line 16

The HTTP headers are already written to the client browser. Any HTTP header modifications must be made before writing page content.


I don't understand, I copied the file directly from the zip file

I realize that I may seem a bit whiney but I'm getting really frustrated with this, and three other mods that fail to work correctly

+++/edit+++




Edited by - warchild on 06 April 2001 09:52:54
Go to Top of Page

Warchild
Starting Member

USA
46 Posts

Posted - 06 April 2001 :  10:38:04  Show Profile  Visit Warchild's Homepage  Send Warchild an ICQ Message
I figured it out

this is what is causing the error


<!-- BEGINSCRIPT -->
<%

'Just add a link to the inc_top.asp page probably near the search links and stuff:
'<a href="bookmark.asp" title="View a list of your bookmarks">your bookmarks</a>
'Now add a link to the topic.asp page somewhere near the top:
'<a href="bookmark.asp?mode=add&id=<%=rs("Topic_ID")% >">Bookmark This Topic</a>
'Then create a file called ... yes you can guess it ... bookmark.asp and put all this code in it:
%>
All that needs to be removed from bookmark.asp..

I hadn't realized that until I tried it



Edited by - warchild on 06 April 2001 10:39:30
Go to Top of Page

Aznknight
Senior Member

USA
1373 Posts

Posted - 06 April 2001 :  19:38:29  Show Profile  Send Aznknight an AOL message  Send Aznknight an ICQ Message
quote:

You have an include statement in the wrong place somewhere, so it is trying to load more than one page header.



I'm getting this error too about the asp header on bookmark.asp line 15 on my development site. Interestingly this problem doesn't occur on my main site.

The problem is as warchild said, this doesn't belong on top of the bookmark.asp page:

<!-- BEGINSCRIPT -->


Deleting that will get read of the header error.

This is a neato mod. It's convenient and thoughtful for your forum users. Thanks huwr.

- Alan
www.iamviet.com
www.calvsa.net
Snitz Resource

Edited by - aznknight on 06 April 2001 19:39:05
Go to Top of Page

FIRLAMA
Starting Member

29 Posts

Posted - 17 May 2001 :  17:26:14  Show Profile
i installed it and it works perfect!

i got only one little question,

why does it only shows 2 bookmarks?? the others are on the next page, aint there a option to
let it show 10 bookmarks on 1 page?? (yes, i checked "since registration")






Go to Top of Page

RDoGG™
Junior Member

USA
329 Posts

Posted - 28 June 2001 :  19:56:43  Show Profile  Visit RDoGG™'s Homepage  Send RDoGG™ an AOL message  Send RDoGG™ a Yahoo! Message
quote:

i installed it and it works perfect!

i got only one little question,

why does it only shows 2 bookmarks?? the others are on the next page, aint there a option to
let it show 10 bookmarks on 1 page?? (yes, i checked "since registration")











WHERE DO I GET THIS MOD?

I SEARCHED FOR "BOOKMARKS" - CAN'T FIND IT

Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 29 June 2001 :  08:52:41  Show Profile  Visit HuwR's Homepage
quote:

i installed it and it works perfect!

i got only one little question,

why does it only shows 2 bookmarks?? the others are on the next page, aint there a option to
let it show 10 bookmarks on 1 page?? (yes, i checked "since registration")




If you do a search for this line

bkMarkPageSize = 2

I set it to 2 to page sure paging worked, change it to

bkMarkPageSize = strPageSize


Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 29 June 2001 :  08:56:12  Show Profile  Visit HuwR's Homepage
quote:


WHERE DO I GET THIS MOD?

I SEARCHED FOR "BOOKMARKS" - CAN'T FIND IT






Look in the MOD Completed Add Ons forum

Go to Top of Page

samyot
Junior Member

Canada
242 Posts

Posted - 13 July 2001 :  14:52:05  Show Profile  Visit samyot's Homepage  Send samyot a Yahoo! Message
quote:

I add a topic to my bookmarks and it tells me that is was added.
The refreesh takes me back to the topic and then when I go into bookmarks, none are listed.
No errors.

Any input appreciated.

Thanks,

Brian



What code needs to be modified to have the "Bookmarked Topics which have been active Since" default to "Registration".
I cannot seem to change it !

Sylvain Amyot
FORUM:http://syltek.dingojunction.com/forum
HOME:http://members.home.net/sylvainamyot/
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20584 Posts

Posted - 13 July 2001 :  16:11:00  Show Profile  Visit HuwR's Homepage
quote:

quote:

I add a topic to my bookmarks and it tells me that is was added.
The refreesh takes me back to the topic and then when I go into bookmarks, none are listed.
No errors.

Any input appreciated.

Thanks,

Brian



What code needs to be modified to have the "Bookmarked Topics which have been active Since" default to "Registration".
I cannot seem to change it !

Sylvain Amyot
FORUM:http://syltek.dingojunction.com/forum
HOME:http://members.home.net/sylvainamyot/



The problem is your cookie, look for this code

if Request.form("cookie") = "2" then
ActiveSince = Request.Form("ShowSinceDateTime")
if strSetCookieToForum = 1 then
Response.Cookies(strCookieURL & "ActiveSince").Path = strCookieURL
end if
Response.Cookies(strCookieURL & "ActiveSince") = ActiveSince
end if

and add the line in red

if Request.form("cookie") = "2" then
ActiveSince = Request.Form("ShowSinceDateTime")
if strSetCookieToForum = 1 then
Response.Cookies(strCookieURL & "ActiveSince").Path = strCookieURL
Response.Cookies(strCookieURL & "ActiveSince").Expires = strForumTimeAdjust + 365
end if
Response.Cookies(strCookieURL & "ActiveSince") = ActiveSince
end if


Go to Top of Page

samyot
Junior Member

Canada
242 Posts

Posted - 14 July 2001 :  08:16:55  Show Profile  Visit samyot's Homepage  Send samyot a Yahoo! Message
I added the line but it still defaults to 'Last Visit on...' which does show me any bookmarks.

Sylvain Amyot
FORUM:http://syltek.dingojunction.com/forum
HOME:http://members.home.net/sylvainamyot/
Go to Top of Page

samyot
Junior Member

Canada
242 Posts

Posted - 14 July 2001 :  09:06:18  Show Profile  Visit samyot's Homepage  Send samyot a Yahoo! Message
How do I remove the "Bookmarked Topics which have been active Since" completely ?!

Sylvain Amyot
FORUM:http://syltek.dingojunction.com/forum
HOME:http://members.home.net/sylvainamyot/
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.37 seconds. Powered By: Snitz Forums 2000 Version 3.4.07