<% '**************************************************************************************** '** Copyright Notice '** '** Web Wiz Guide - Web Wiz Journal '** '** Copyright 2001-2002 Bruce Corkhill All Rights Reserved. '** '** This program is free software; you can modify (at your own risk) any part of it '** under the terms of the License that accompanies this software and use it both '** privately and commercially. '** '** All copyright notices must remain in tacked in the scripts and the '** outputted HTML. '** '** You may use parts of this program in your own private work, but you may NOT '** redistribute, repackage, or sell the whole or any part of this program even '** if it is modified or reverse engineered in whole or in part without express '** permission from the author. '** '** You may not pass the whole or any part of this application off as your own work. '** '** All links to Web Wiz Guide and powered by logo's must remain unchanged and in place '** and must remain visible when the pages are viewed unless permission is first granted '** by the copyright holder. '** '** This program is distributed in the hope that it will be useful, '** but WITHOUT ANY WARRANTY; without even the implied warranty of '** MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR ANY OTHER '** WARRANTIES WHETHER EXPRESSED OR IMPLIED. '** '** You should have received a copy of the License along with this program; '** if not, write to:- Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom. '** '** '** No official support is available for this program but you may post support questions at: - '** http://www.webwizguide.info/forum '** '** Support questions are NOT answered by e-mail ever! '** '** For correspondence or non support questions contact: - '** info@webwizguide.com '** '** or at: - '** '** Web Wiz Guide, PO Box 4982, Bournemouth, BH8 8XP, United Kingdom '** '**************************************************************************************** 'Set the response buffer to true Response.Buffer = True 'Dimension variables Dim rsJournalConfig 'Recorset holding all the username in the database Dim strMode 'holds the mode of the page, set to true if changes are to be made to the database Dim strUsername 'Holds the admin username Dim strPassword 'Holds the admin password Dim intPreviewJournalItems 'Holds the number of preview items to display 'If the session variable is False or does not exsist then redirect the user to the unauthorised user page If Session("blnIsUserGood") = False or IsNull(Session("blnIsUserGood")) = True then 'Redirect to unathorised user page Response.Redirect"unauthorised_user_page.htm" End If 'Read in the users colours for the journal administrator strUsername = Request.Form("username") strPassword = Request.Form("password") strTitleImage1 = Request.Form("titleImage") intRecordsPerPage = CInt(Request.Form("RecPerPage")) strBgColour = Request.Form("bg") strTextColour = Request.Form("text") strTextType = Request.Form("FontType") intHeadingTextSize = CInt(Request.Form("HeadingFontSize")) intTextSize = CInt(Request.Form("FontSize")) intSmallTextSize = CInt(Request.Form("SmallFontSize")) strTableColour = Request.Form("table") strTableBorderColour = Request.Form("tableBorder") strTableTitleColour = Request.Form("tableTitle") strLinkColour = Request.Form("links") strVisitedLinkColour = Request.Form("vLinks") strActiveLinkColour = Request.Form("aLinks") intMsgCharNo = CInt(Request.Form("CharNo")) blnCookieSet = CBool(Request.Form("Cookies")) blnIPBlocking = CBool(Request.Form("IP")) intPreviewJournalItems = CInt(Request.Form("PrePerPage")) strMode = Request.Form("mode") 'Intialise the ADO recordset object Set rsJournalConfig = Server.CreateObject("ADODB.Recordset") 'Initalise the strSQL variable with an SQL statement to query the database strSQL = "SELECT tblConfiguration.* From tblConfiguration;" 'Set the cursor type property of the record set to Dynamic so we can navigate through the record set rsJournalConfig.CursorType = 2 'Set the Lock Type for the records so that the record set is only locked when it is updated rsJournalConfig.LockType = 3 'Query the database rsJournalConfig.Open strSQL, strCon 'If the user is changing tthe colours then update the database If strMode = "change" Then 'Update the recordset rsJournalConfig.Fields("username") = strUsername rsJournalConfig.Fields("password") = strPassword rsJournalConfig.Fields("No_records_per_page") = intRecordsPerPage rsJournalConfig.Fields("bg_colour") = strBgColour rsJournalConfig.Fields("text_colour") = strTextColour rsJournalConfig.Fields("text_type") = strTextType rsJournalConfig.Fields("heading_text_size") = intHeadingTextSize rsJournalConfig.Fields("text_size") = intTextSize rsJournalConfig.Fields("small_text_size") = intSmallTextSize rsJournalConfig.Fields("table_colour") = strTableColour rsJournalConfig.Fields("table_border_colour") = strTableBorderColour rsJournalConfig.Fields("table_title_colour") = strTableTitleColour rsJournalConfig.Fields("links_colour") = strLinkColour rsJournalConfig.Fields("visited_links_colour") = strVisitedLinkColour rsJournalConfig.Fields("active_links_colour") = strActiveLinkColour rsJournalConfig.Fields("No_of_preview_items") = intPreviewJournalItems rsJournalConfig.Fields("Title_image") = strTitleImage1 rsJournalConfig.Fields("Message_char_no") = intMsgCharNo rsJournalConfig.Fields("Cookie") = blnCookieSet rsJournalConfig.Fields("IP_blocking") = blnIPBlocking 'Update the database with the new user's colours rsJournalConfig.Update 'Re-run the query to read in the updated recordset from the database rsJournalConfig.Requery End If 'Read in the journal colours from the database If NOT rsJournalConfig.EOF Then 'Read in the colour info from the database strUsername = rsJournalConfig.Fields("username") strPassword = rsJournalConfig.Fields("password") intRecordsPerPage = rsJournalConfig.Fields("No_records_per_page") strBgColour = rsJournalConfig.Fields("bg_colour") strTextColour = rsJournalConfig.Fields("text_colour") strTextType = rsJournalConfig.Fields("text_type") intHeadingTextSize = CInt(rsJournalConfig.Fields("heading_text_size")) intTextSize = CInt(rsJournalConfig.Fields("text_size")) intSmallTextSize = CInt(rsJournalConfig.Fields("small_text_size")) strTableColour = rsJournalConfig.Fields("table_colour") strTableBorderColour = rsJournalConfig.Fields("table_border_colour") strTableTitleColour = rsJournalConfig.Fields("table_title_colour") strLinkColour = rsJournalConfig.Fields("links_colour") strVisitedLinkColour = rsJournalConfig.Fields("visited_links_colour") strActiveLinkColour = rsJournalConfig.Fields("active_links_colour") intPreviewJournalItems = Cint(rsJournalConfig.Fields("No_of_preview_items")) strTitleImage1 = rsJournalConfig.Fields("Title_image") intMsgCharNo = CInt(rsJournalConfig.Fields("Message_char_no")) blnCookieSet = CBool(rsJournalConfig.Fields("Cookie")) blnIPBlocking = CBool(rsJournalConfig.Fields("IP_blocking")) End If 'Reset Server Objects Set adoCon = Nothing Set strCon = Nothing Set rsJournalConfig = Nothing %> Configure Journal

Configure Journal

Return to the Journal Menu

It is highly recommended that you change the Username and Password, but don't forget what you change them to as you will NOT be able to Administer the Journal without them.


Background Colour

Table Title
Normal Text
Small Text
Links

Comments Form Colour
*Indicates required fields
Admin Username:*
Admin Password:*
Journal Title Image Location
This is the image shown at the top of each page of the Journal eg. Your web logo
Background Colour*
Text Colour*
Font Style
Table Heading Font Size pixels
Normal Font Size pixels
Small Font Size pixels
Table Background Colour*
Table Comments Background Colour*
Table Border Colour*
Links*
Visited Links*
Mouse Over Link Colour*
Number of Journal Items Per Page:
Preview Journal Items:
This is the number of Journal Items shown on the homepage integration file
Maximum Number of Characters per Comment
This is the maximum allowed amount of comments allowed in comments posted in the Journal
Anti-Spam Cookies
This will mean a cookie is set on the uesers machine to stop them spamming Journal Items with multiple comments.
On >    Off >
Anti-Spam IP Blocking
This will mean the IP addrees of the user is checked to stop them spamming Journal Items with multiple comments.
On >    Off >