Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: Site Integration v1.1 (for Snitz v3.4.xx)

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
D3mon Posted - 27 August 2002 : 11:48:16
My first MOD release :

I helped many people integrate their Snitz installs into their current website design that I decided to ahead with a MOD to make it simpler.
The administration page enables/disables the extra include files, in which the additional site code is held.



Download Now!

Development History:
23 Jan 04 20:38:17 - Released version 1.2 (updated installation guide for 3.4.04)
29 Nov 02 09:45:29 - Released version 1.1 (with dynamic color in admin page)
14 Oct 02 21:28:48 - Released as Version 1.0
14 Oct 02 19:20:17 - added strImageURL variable for admin page logo
12 Oct 02 07:57:23 - Updated .zip readme file with additional info.
05 Sep 02 00:00:00 - Updated code to align left/center/right column content to top
05 Sep 02 00:00:00 - Updated code handling header and footer width
03 Sep 02 14:20:07 - Updated with 'footer width' BugFix
03 Sep 02 10:38:31 - Improved readme.htm file
31 Aug 02 18:25:16 - Updated inc_header.asp with Application "down" bugfix
31 Aug 02 08:27:10 - Added 'Show Border' on/off feature to admin page
29 Aug 02 12:06:54 - Improved readme files structure
28 Aug 02 16:18:23 - Included 'strImageURL' compatibility for Snitz Logo
27 Aug 02 17:23:50 - Ammended file typo in admin_config_includes.asp

Issues:
It would be great if the color of the cells in the admin page change when the on/off radio buttons are selected. Unfortunately, my javascript is poor and I can't seem to make this happen.
Sorted - thanks to Joatham's fine Javascript code<
15   L A T E S T    R E P L I E S    (Newest First)
DJGray Posted - 03 April 2014 : 17:31:34
Thanks Carefree. Got the MOD. Having a bit of a challenge with the footer update. Posted about that in the Implementation Help thread.

http://forum.snitz.com/forum/topic.asp?TOPIC_ID=70732
Carefree Posted - 01 April 2014 : 17:55:44
quote:
Originally posted by DJGray

Is this mod no longer available? The link to it yields a 404.



Try this: SnitzBitz
DJGray Posted - 01 April 2014 : 16:46:21
Is this mod no longer available? The link to it yields a 404.
gunmania0 Posted - 19 February 2010 : 20:17:04
quote:
Originally posted by omega1

hi, im trying to isntall the site integration mod, but have run into the following problems:

on the inc_header.asp im told to replace this

"<a name=""top""></a><font face=""" & strDefaultFontFace & """>" & vbNewLine & _
vbNewLine & _


with this

"<a name=""top""></a>" & vbNewLine
if strSiteIntegEnabled = "1" then
response.write "<table width=""100%"" border="""
if strSiteBorder = "1" then
response.write "1"
else
response.write "0"
end if
response.write """ cellspacing=""0"" cellpadding=""0"">" & vbNewLine
if strSiteHeader = "1" then
response.write " <tr>" & vbNewLine & _
" <td"
if strSiteLeft = "1" or strSiteRight = "1" then
if strSiteLeft = "1" and strSiteRight = "1" then
Response.write " colspan=""3"""
else
Response.write " colspan=""2"""
end if
end if
response.write ">"
%><!--#include file="inc_site_header.asp"--><%
response.write "</td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
response.write " <tr>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
if strSiteLeft = "1" then
%><!--#include file="inc_site_left.asp"--><%
response.write "</td>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
end if
end if
response.write vbNewLine & _


but i cant find that line, i know in the instructions it says there is no 'font' bit in 3.4.0.4 but im running 3.4.0.5 and the lines don't correspond (and i've added other mods too...) so what to change?!

and with inc_footer.asp a similar problem:

im told to replace this :

"</table>" & vbNewLine & _
"</font>" & vbNewLine & _


with this

"</table>" & vbNewLine
if strSiteIntegEnabled = "1" then
if strSiteRight = "1" then
Response.Write " </td>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
%><!--#include file="inc_site_right.asp"--><%
end if
Response.Write " </td>" & vbNewLine & _
" </tr>" & vbNewLine
if strSiteFooter = "1" then
Response.write " <tr>" & vbNewLine & _
" <td"
if strSiteLeft = "1" or strSiteRight = "1" then
if strSiteLeft = "1" and strSiteRight = "1" then
Response.write " colspan=""3"""
else
Response.write " colspan=""2"""
end if
end if
Response.write ">"
%><!--#include file="inc_site_footer.asp"--><%
Response.write " </td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
Response.write "</table>" & vbNewLine
end if
response.write "</body>" & vbNewLine & _


but my code in the inc_footer.asp looks like this :

"</table>" & vbNewLine & _
"</body>" & vbNewLine & _
"</html>" & vbNewLine


can anyone help? sorry for my lack of understanding, dont want to break anything!<



In the installation guide you will notice that beside the boxes there are little side notes, this will help you install it correctly.

quote:
Installation Guide (note: in v3.4.04, there is no <font> tag)
radiodelicate Posted - 12 July 2008 : 15:10:40
quote:
Originally posted by D3mon


http://www.buildyourown.org.uk/snitz/mods/inc_site_left.txt

this example will give you basic navigation + login/out functionality from one of the included sections. I'll leave it to you to format it how you wish.
To make the navigation list vertically, just replace all the | characters in the function sForumNavigation() with <br />


Oh, this was exactly what I was looking for, brilliant!
Proves well how important it is to read through all relevant threads before start asking questions <
AnonJr Posted - 12 May 2008 : 08:41:14
All I can say is that the line numbers won't match. They didn't after the move from 3.4.04 to 3.4.05, and they will even less since you've added some MODs. Its probably time for the instructions to be updated...

Being that I try to encourage self-reliance, I would suggest you first try to make the best guess you can (after having made backups of course ) based on the context, and if you run any problems, start a new thread in the "Help: MOD Implementation" forum with a detaild and descriptive layout of the problem and a link to .txt copies of your inc_header.asp and inc_footer.asp files.<
omega1 Posted - 11 May 2008 : 14:22:33
hi, im trying to isntall the site integration mod, but have run into the following problems:

on the inc_header.asp im told to replace this

"<a name=""top""></a><font face=""" & strDefaultFontFace & """>" & vbNewLine & _
vbNewLine & _


with this

"<a name=""top""></a>" & vbNewLine
if strSiteIntegEnabled = "1" then
response.write "<table width=""100%"" border="""
if strSiteBorder = "1" then
response.write "1"
else
response.write "0"
end if
response.write """ cellspacing=""0"" cellpadding=""0"">" & vbNewLine
if strSiteHeader = "1" then
response.write " <tr>" & vbNewLine & _
" <td"
if strSiteLeft = "1" or strSiteRight = "1" then
if strSiteLeft = "1" and strSiteRight = "1" then
Response.write " colspan=""3"""
else
Response.write " colspan=""2"""
end if
end if
response.write ">"
%><!--#include file="inc_site_header.asp"--><%
response.write "</td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
response.write " <tr>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
if strSiteLeft = "1" then
%><!--#include file="inc_site_left.asp"--><%
response.write "</td>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
end if
end if
response.write vbNewLine & _


but i cant find that line, i know in the instructions it says there is no 'font' bit in 3.4.0.4 but im running 3.4.0.5 and the lines don't correspond (and i've added other mods too...) so what to change?!

and with inc_footer.asp a similar problem:

im told to replace this :

"</table>" & vbNewLine & _
"</font>" & vbNewLine & _


with this

"</table>" & vbNewLine
if strSiteIntegEnabled = "1" then
if strSiteRight = "1" then
Response.Write " </td>" & vbNewLine & _
" <td valign=""top"">" & vbNewLine
%><!--#include file="inc_site_right.asp"--><%
end if
Response.Write " </td>" & vbNewLine & _
" </tr>" & vbNewLine
if strSiteFooter = "1" then
Response.write " <tr>" & vbNewLine & _
" <td"
if strSiteLeft = "1" or strSiteRight = "1" then
if strSiteLeft = "1" and strSiteRight = "1" then
Response.write " colspan=""3"""
else
Response.write " colspan=""2"""
end if
end if
Response.write ">"
%><!--#include file="inc_site_footer.asp"--><%
Response.write " </td>" & vbNewLine & _
" </tr>" & vbNewLine
end if
Response.write "</table>" & vbNewLine
end if
response.write "</body>" & vbNewLine & _


but my code in the inc_footer.asp looks like this :

"</table>" & vbNewLine & _
"</body>" & vbNewLine & _
"</html>" & vbNewLine


can anyone help? sorry for my lack of understanding, dont want to break anything!<
texanman Posted - 21 April 2008 : 21:01:31
It should work! Send me your inc_header.asp.<
natty Posted - 21 April 2008 : 20:59:20
never mind... I just tried it again (for the thousandth time), and it worked! Thank you!<
natty Posted - 21 April 2008 : 20:55:50
Hmm, that's what I've been told, but for some reason, it's not working.<
JJenson Posted - 21 April 2008 : 11:27:29
in inc_header.asp there is a line that says Call strForumNav() or something like that just comment that line out with a ' and that should do the trick.<
natty Posted - 20 April 2008 : 22:37:30
Great MOD; thank you!
Is there a way of deleting the default nav menu (home, profile, register, etc.)? I want the default header gone; I'd like to use completely my own instead. Unfortunately, I'm not too familiar with ASP. Is there a relatively easy way to do this?<
natty Posted - 19 April 2008 : 20:47:54
brilliant; thank you!~<
stevesensei Posted - 28 February 2008 : 16:41:17
I'm brand new to Snitz Forums software and have just used the Site Integration mod to integrate it into my site. I'm finding that I have some extra HTML tages that are throwing off the integratiion efforts.

In the site header, just before the forums code takes over, I have
</td>
</tr>
<tr>
<td valign="top">
which needs to be removed.

In the site footer, right after the forums coding ends, I have
</td>
</tr>
<tr>
<td>
that needs to be removed

My question is, whereb would I go to find these tags so I can delete them?<
Berrie Posted - 02 September 2007 : 11:50:08
Thanks for your reply!

Hope I can find something about SunOne

<

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.07 seconds. Powered By: Snitz Forums 2000 Version 3.4.07