Author |
Topic  |
chuckie365
Starting Member
10 Posts |
Posted - 17 June 2006 : 13:47:28
|
HI, I am trying to put the events calendar on the bottom of the page when viewing the forums. Can someone please tell me what i need to do specifically to accomplish this. The link below shows where i would want to place the events viewer box. Thank you very much 
http://forum.cycleoregon.com/default.asp
|
|
Helterskelter
Junior Member
 
United Kingdom
331 Posts |
Posted - 17 June 2006 : 17:24:56
|
Never tryied my self but i would first try placing the include at the top (couse where it's suitable) in inc_footer.asp
That way it's show on every page. If that dose not work then I'll have to have a think. or some one else may. |
 |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 17 June 2006 : 17:37:49
|
I moved the cal_default.asp include from default.asp to inc_footer.asp and now the events calendar doesn not show up on the default.asp page anymore. Any other suggestions?
Thanks, Chuckie |
 |
|
Helterskelter
Junior Member
 
United Kingdom
331 Posts |
Posted - 17 June 2006 : 19:07:59
|
just checked the download and the include is the only line that should be needed to be added.
This should load ok in footer. but as i said i dont have time to install this mod and test it at this time.
I'm sure some one ill help if u dont figer it out soon. |
 |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 17 June 2006 : 19:13:59
|
Thanks for looking. I'll wait for someone who has the mod installed to give me a hand....I'm not sure why it doesn't work when i put it in the inc_footer.asp file myself  |
 |
|
Helterskelter
Junior Member
 
United Kingdom
331 Posts |
Posted - 19 June 2006 : 08:58:57
|
Sorry there, I'm sure it's something simple, So as standed it works fine though ye? |
 |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 19 June 2006 : 10:44:36
|
Yes, other than that one minor detail, the forums are outstanding. I've been using them for sometime now on the school website I do and have been very happy with everything. Thanks to all that do such a wonderful job with the code and the mods. Hopefully someone can shed some light on what needs to be done....I've seen quite a bit of snitz boards with the event calendar on the bottom so it can't be too difficult i imagine....over my head anyways...lol.
Regards, Chuckie
|
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 19 June 2006 : 12:01:09
|
Having not used it before I can only guess - but knowing how inc_footer.asp is set up, where you put it makes a difference.
Do you have a link to a *.txt version of your modified inc_footer? It would probably help. |
 |
|
chuckie365
Starting Member
10 Posts |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 19 June 2006 : 18:20:35
|
I don't rightly know why that's not working. I can't see any obvious reason...
What do you see when you do those changes? |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 19 June 2006 : 19:37:50
|
The event calendar portion does not show up on the default.asp page....it's weird because a lot of sites with the snitz foumrs have the event calendar on the bottom....maybe there not version 3.4.05?...Thanks for looking into this for me.
Regards, Chuckie |
 |
|
AnonJr
Moderator
    
United States
5768 Posts |
Posted - 20 June 2006 : 11:59:10
|
To the best of my knowledge, the forums that have the calendar at the bottom placed the include further down on default.asp. I'm not entirely sure about the exact location...
What I don't get is that there isn't any immediately apparent reason why what you did isn't working... For now I'd suggest looking for an alternate place in default.asp - a good search of the archives should turn up more specifics.
Sorry I couldn't be of more help. =/ |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 20 June 2006 : 17:13:03
|
Ok i'll excperiment and let you know if it works out. Thanks for taking the time to look into this for me 
Regards, Chuckie |
 |
|
Helterskelter
Junior Member
 
United Kingdom
331 Posts |
Posted - 22 June 2006 : 03:11:52
|
try it like this
<%
'#################################################################################
'## Snitz Forums 2000 v3.4.05
'#################################################################################
'## Copyright (C) 2000-05 Michael Anderson, Pierre Gorissen,
'## Huw Reddick and Richard Kinser
'##
'## This program is free software; you can redistribute it and/or
'## modify it under the terms of the GNU General Public License
'## as published by the Free Software Foundation; either version 2
'## of the License, or (at your option) any later version.
'##
'## All copyright notices regarding Snitz Forums 2000
'## must remain intact in the scripts and in the outputted HTML
'## The "powered by" text/logo with a link back to
'## http://forum.snitz.com in the footer of the pages MUST
'## remain visible when the pages are viewed on the internet or intranet.
'##
'## This program is distributed in the hope that it will be useful,
'## but WITHOUT ANY WARRANTY; without even the implied warranty of
'## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
'## GNU General Public License for more details.
'##
'## You should have received a copy of the GNU General Public License
'## along with this program; if not, write to the Free Software
'## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
'##
'## Support can be obtained from our support forums at:
'## http://forum.snitz.com
'##
'## Correspondence and Marketing Questions can be sent to:
'## manderson@snitz.com
'##
'#################################################################################
Response.Write " </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
"</table>" & vbNewLine
%>
<!--#INCLUDE FILE="cal_default.asp" -->
<%
Response.Write "<table width=""95%"" align=""center"" border=""0"" bgcolor=""" & strForumCellColor & """ cellpadding=""0"" cellspacing=""1"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td>" & vbNewLine & _
" <table border=""0"" width=""100%"" align=""center"" cellpadding=""4"" cellspacing=""0"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td bgcolor=""" & strForumCellColor & """ align=""left"" valign=""top"" nowrap><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """ color=""" & strForumFontColor & """>" & strForumTitle & "</font></td>" & vbNewLine & _
" <td bgcolor=""" & strForumCellColor & """ align=""right"" valign=""top"" nowrap><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """ color=""" & strForumFontColor & """>© " & strCopyright & "</font></td>" & vbNewLine & _
" <td bgcolor=""" & strForumCellColor & """ width=""10"" nowrap><a href=""#top""" & dWStatus("Go To Top Of Page...") & " tabindex=""-1"">" & getCurrentIcon(strIconGoUp,"Go To Top Of Page","align=""right""") & "</a></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
"</table>" & vbNewLine & _
"<table border=""0"" width=""95%"" align=""center"" cellpadding=""4"" cellspacing=""0"">" & vbNewLine & _
" <tr valign=""top"">" & vbNewLine
if strShowTimer = "1" then
Response.Write " <td align=""left""><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>" & chkString(replace(strTimerPhrase, "[TIMER]", abs(round(StopTimer(1), 2)), 1, -1, 1),"display") & "</font></td>" & vbNewLine
end if
Response.Write " <td align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """>"
'## START - REMOVAL, MODIFICATION OR CIRCUMVENTING THIS CODE WILL VIOLATE THE SNITZ FORUMS 2000 LICENSE AGREEMENT
Response.Write "<a href=""http://forum.snitz.com"" target=""_blank"" tabindex=""-1""><acronym title=""Powered By: " & strVersion & """>"
if strShowImagePoweredBy = "1" then
Response.Write getCurrentIcon("logo_powered_by.gif||","Powered By: " & strVersion,"")
else
Response.Write "Snitz Forums 2000"
end if
Response.Write "</acronym></a></font></td>" & vbNewline
'## END - REMOVAL, MODIFICATION OR CIRCUMVENTING THIS CODE WILL VIOLATE THE SNITZ FORUMS 2000 LICENSE AGREEMENT
Response.Write " </tr>" & vbNewLine & _
"</table>" & vbNewLine & _
"</body>" & vbNewLine & _
"</html>" & vbNewLine
my_Conn.Close
set my_Conn = nothing
%> |
 |
Edited by - Helterskelter on 29 June 2006 02:54:14 |
 |
|
chuckie365
Starting Member
10 Posts |
Posted - 23 June 2006 : 00:00:55
|
I tried the modifcation to the code you suggested and that returned an Internal Server Error. Something doesn't seem right with putting the include file there but what do i know...lol...any other ideas?
Regards, Chuckie
|
 |
|
Helterskelter
Junior Member
 
United Kingdom
331 Posts |
Posted - 29 June 2006 : 02:55:08
|
Try the code above just made a chage that i think may of been causing the problem!!!! ***Wacking my self accross the head*** |
 |
 |
|
Topic  |
|