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 MOD-Group
 MOD Add-On Forum (W/O Code)
 Blog MOD for Snitz
 New Topic  Reply to Topic
 Printer Friendly
Next Page
Author Previous Topic Topic Next Topic
Page: of 2

richfed
Average Member

United States
999 Posts

Posted - 27 September 2009 :  08:06:57  Show Profile  Visit richfed's Homepage  Reply with Quote
Anyone? I searched these forums, and elsewhere, but I can't seem to find one that will easily and seamlessly integrate w/ Snitz [3.4.05].

Thanks -

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]

Edited by - richfed on 27 September 2009 08:07:20

AnonJr
Moderator

United States
5768 Posts

Posted - 27 September 2009 :  11:22:07  Show Profile  Visit AnonJr's Homepage  Reply with Quote
There is none last I checked. Its not terribly difficult to write, just a tad on the time consuming side. A lot of people have done the modifications, just no one has published it as as MOD.
Go to Top of Page

garyrobar
New Member

Canada
90 Posts

Posted - 29 September 2009 :  23:17:10  Show Profile  Visit garyrobar's Homepage  Reply with Quote
What do you actually need the blog to do that it needs to connect to your snitz install? Let me know and I may have a solution.

SEO For Snitz Forum
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 30 September 2009 :  06:58:12  Show Profile  Visit richfed's Homepage  Reply with Quote
Basically, just create a diary-like thread that the creating poster has full contol of - except for moderators/administrators - they can lock it for themselves, etc. I would like for it to be set up in one forum only. Administrative controls would be nice.
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 10 October 2009 :  14:31:10  Show Profile  Visit richfed's Homepage  Reply with Quote
Does no one have a blog set-up they are willing to share for this dumb, old forum admin????
Go to Top of Page

AnonJr
Moderator

United States
5768 Posts

Posted - 10 October 2009 :  15:50:01  Show Profile  Visit AnonJr's Homepage  Reply with Quote
Marcel has one, and for the life of me I thought the code was floating around either here or at oxle.com - but I can't seem to find it...

Others have put something together, but no one has really shared what they have done. Bitter with everyone else's lack of sharing, they seem to be doing the same. =/

I've had the idea on my mind to do something about that, but having an idea and having time are two completely different things.
Go to Top of Page

phoenixtaz13
Junior Member

129 Posts

Posted - 10 October 2009 :  16:23:03  Show Profile  Reply with Quote
i forgot how i did mine, i'll check my notes and zip the files for u to download... :)
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 10 October 2009 :  16:31:33  Show Profile  Visit richfed's Homepage  Reply with Quote
That would be most appreciated ... probably by a lot more folks than me!!!

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 12 October 2009 :  06:06:10  Show Profile  Visit MarcelG's Homepage  Reply with Quote
I have indeed made a Blog mod, however it relied heavily on various other mods, and it was made strictly for MS Access.
Here are two topics relating to that mod:
The original mod, Weblogs RC1: http://oxle.com/topic/2192.html
An addon by Jorrit: http://oxle.com/topic/2323.html


portfolio - linkshrinker - oxle - twitter

Edited by - MarcelG on 12 October 2009 09:26:00
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 12 October 2009 :  09:13:21  Show Profile  Visit richfed's Homepage  Reply with Quote
Hmmm ... first link was broken ... and yes, I was intensely disappointed!!!

I did track it down, however. I have both the avatar and message icon mods installed, so that is not an issue. I do use a MS-SQL database, though. How much of an impediment do you think this might be???

Later today, barring any new posts to this thread that point me to parts unknown, I will give this a try and see what happens.
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 12 October 2009 :  09:27:04  Show Profile  Visit MarcelG's Homepage  Reply with Quote
Link is fixed.
If you're using MS SQL, I think you can use it without problem ; I've disabled the blog mod on oxle long after I migrated to MS SQL, so I can confirm it works on MS SQL.

portfolio - linkshrinker - oxle - twitter
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 12 October 2009 :  09:45:18  Show Profile  Visit richfed's Homepage  Reply with Quote
I am having a problem, Marcel ... I registered on your forum so that I could download the two files, but the first presents me with a log-in screen that doesn't work --- I cannot enter any characters into the user name field, and the password field is greyed-out.

The second file, the admin add-on, comes up file not found.

Thus, I have not downloaded either one.

Edit ---> OK, figured out first problem [not logged in - I thought I was]

Edited by - richfed on 12 October 2009 09:48:30
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 12 October 2009 :  09:52:30  Show Profile  Visit MarcelG's Homepage  Reply with Quote
Regarding Jorrit's add-on, you may want to contact him via his profile: http://oxle.com/jorrit.id
He posted it back in 2005, so it may indeed be offline now.

portfolio - linkshrinker - oxle - twitter
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 12 October 2009 :  13:21:30  Show Profile  Visit richfed's Homepage  Reply with Quote
Thanks, Marcel ... I checked with him and he did reply, but he no longer has it - so, a dead end.

Anyway, I have implemented your MOD on my forum as per the instructions. Pretty straight forward. But, I have encounted two issues I do not know how to correct:

1 - I was getting this error:

Microsoft VBScript runtime error '800a01f9'

Invalid or unqualified reference

/messageboard/forum.asp, line 44


I looked over at your forum and found this solution to another problem:

quote:
if NOT Request.QueryString("FORUM_ID") = "" then
if Forum_ID - strWeblogsForum = 0 and mlev <> 4 then
Response.Redirect "weblogs.asp"
end if
end if

Replace with:
code :
if NOT Request.QueryString("FORUM_ID") = "" then
if Request.QueryString("FORUM_ID") - strWeblogsForum = 0 and mlev <> 4 then
Response.Redirect "weblogs.asp"
end if
end if


I actually did the reverse ... that second bit is now in the MOD as I downloaded it. Putting it back to the first bit fixed it. However, the posts look just like a normal topic. I see no difference. Is that WAD?

2 - How can I avoid having blog posts show up in Active Topics?

Rich
[size=1]A Complete Idiot's Guide to MOD Implementation || On the Trail of the Last of the Mohicans[/size=1]

Edited by - richfed on 12 October 2009 13:27:18
Go to Top of Page

richfed
Average Member

United States
999 Posts

Posted - 12 October 2009 :  13:50:51  Show Profile  Visit richfed's Homepage  Reply with Quote
Actually, upon further review, THIS is the code in the MOD:

quote:
if NOT Request.QueryString("FORUM_ID") = "" then
if .QueryString("FORUM_ID") - strWeblogsForum = 0 and mlev <> 4 then
Response.Redirect "weblogs.asp"
end if
end if



That is different than the code that I quoted in the above post:

quote:
if NOT Request.QueryString("FORUM_ID") = "" then
if Request.QueryString("FORUM_ID") - strWeblogsForum = 0 and mlev <> 4 then
Response.Redirect "weblogs.asp"
end if
end if


Using the red bit worked for me, though I had a little problem from the additional star level mod - or whatever it is called - that I had installed. I managed to fix that, so I THINK it looks the way it should, though I'll be tweaking the header and cell colors.

So, problem one solved.

I just need help on problem 2 ... the active topics issue.

Thank you!
Go to Top of Page

MarcelG
Retired Support Moderator

Netherlands
2625 Posts

Posted - 12 October 2009 :  14:50:37  Show Profile  Visit MarcelG's Homepage  Reply with Quote
You could add a line to the SQL query that pulls up all active topics, such as this:
strSql = strSql & " AND F.FORUM_ID <> " & strWeblogsForum & " "

(Pseudo code!)

I never build something like that into my active.asp, so you have to try it out.

portfolio - linkshrinker - oxle - twitter

Edited by - MarcelG on 12 October 2009 14:50:47
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Next Page
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.15 seconds. Powered By: Snitz Forums 2000 Version 3.4.07