Content

Deutsch Für eine deutsche Dokumentation hier klicken
 

1. Setup

1.1 Where I get the Guestbook?

1.2 What must be done before you install?

1.3 How to install the Guestbook?

1.4 How to call the Guestbook?

1.5 Can I use multiple Languages?

1.6 Configuration

1.7 Adapting the Layout

1.8 How to import an existing Guestbook?

 

2. FAQ

2.1 Frequently Askes Questions

2.2 Questions & Answers

 

1. Setup

1.1 Where I get the Guestbook?

The Guestbook plugin is available at my website as Download. The guestbook will be continously enhanced. It is an advantage to take a look what's new time by time.

1.2 What must be done before you install?

  1. First you have to install CMSimple. If you don't have it, please download this from www.cmsimple.dk.

  2. As next step you have to install the Plugin-Loader from Michael Svarrer. Without the loader the Guestbook plugin definitely not work. You can download the Plugin-Loader from cmsimpleplugins.svarrer.dk/?Plugin_Loader. A description how install the Plugin-Loader you will find on his website too.

1.3 How to install the Guestbook?

Download the zip-file from Download and unzip it into the folder .\cmsimple\plugins. Take care to check the "use folder names" option while unzipping. After unzip you should have the following structure:

 +-plugins
| +-gbook
| +-config
| +-content
| +-css
| +-help
| +-images
| +-languages


After this you can start CMSimple and login into the Admin area. Now you should see the Plugin in the list of all plugins. If you don't see it, something is wrong (check the folder structure).


1.4 How to call the Guestbook?

1.4.1 Installation and Build in to your Website

Plug the guestbook in your CMSimple-page by adding the line
#CMSimple $output.= GBlist();#
or
#CMSimple $output.= GBlist(cFilename);#

into your text. You can copy the text line directly from the description here. But please take care to control the HTML-code directly and delete, if necessary, the < FONT >-tags. The result should exactly look like shown above. If it looks like the following line

<font size="2">#</font>CMSimple $output.= GBlist();<font size="2">#</font>
you should delete all <font> tag, because these tags are causing errors.

Specifying the filename cFilename is optionally. The specified filename should not contain any language shortcut or an file extension, both will be added automatically. If you specify as cFilename the string 'MyGuestbook', there will be a file with the name 'MyGuestbook_en.txt' used, if you use English as language. 

If you specify no filename, the GBook plugin will use the default string 'Guestbook' as first part of the filename.

Attention:
Don't forget to disable the default guestbook of CMSimple in the settings. Otherwise spam will fill anyway the guestbook datafile (but without being visible).

1.4.2 Calling outside of Menu Structure

If you want to integrate the GBook guestbook in the same matter as the default guestbook of CMSimple, this means not visible in the menu structure, but instead of that visible as separate link in the navigation area, you have to the following steps:

First you have to create an own page for the guestbook as described under 1.4.1. For hiding the guestbook in the normal menu/navigation structure, the addition command hide is necessary. So the following lines must be inside of the guestbook page:

#CMSimple hide #
#CMSimple $output.= GBlist(); #

As next step, you have to insert the link to the new guestbook into the template file. You have to exchange the following code

<?php echo guestbooklink(); ?>

with

<a href="index.php?Contact:Guestbook">G&auml;stebuch</a>

The path specified after "index.php?"  is the menu structure you have choosen for storing / organizing the guestbook in your website. In this example the main menu is called Contact and the submenu, where the guestbook page is called has the name Guestbook. After this steps the default guestbook from CMSimple will be no longer shown and instead the GBook guestbook will be called.

1.4.3 Calling in Member Area (Memberpages)

If the GBook guestbook should be available in a member area, where only logged in members are having access, the following steps have to be proceeded:

First an own page, as described under 1.4.1, has to be created for the guestbook. For hiding the guestbook page in the normal menu structure (it should be visible only for members) the additional command hide is necessary:

#CMSimple hide #

As next line the commands for the memberpage and GBook plugins must be entered. Both command must be specified in one #CMSimple ... # command:

#CMSimple $output.=memberspage("Keine_Berechtigung","0"); $output .= GBlist(); #

This means, first the access will be checked and if successful, the guestbook will be shown.

 

1.5 Can I use multiple Languages?

GBook supports the use of multiple languages. There are no specific commands necessary. Gbook detects automatically which language is currently used and choose the dependent guestbook file.

At the moment the plugin comes with the following languages:

Danish, many thanks to Per Kongebro
Dutch, many thanks to Gerd Xhonneux
English
Finnish, many thanks to Ahti Kurki
French, many thanks to Gerd Xhonneux
German
Italian, many thanks to Sandro Cavalieri Foschini
Norwegian, many thanks to Tobias Michel
Portuguese, many thanks to JoaoVr
Slovak, many thanks to Martin Sereday

If your language is not listed above, you can create your language as well. Just copy an exiting language file (e.g. en.php), rename this file according to the used language and translate the texts inside.

At this point I like to say "Thank you very much" to all the people, which have sent their translations to me!


1.6 Configuration

The GBook plugin is individually adaptable to the desired functionality and layout by several settings.

The following settings are available:

date format:
time format:
captcha:
ask for email:
ask for website:
ask for title:
mandatory title:
mandatory email:
remove html:
items per page:
num of pages:
info mail:
thank mail:
thank sendfrom:
new entries:
spam words:
show creator:
show narrowlink:
show email:
show website:
show ip addr:
store ip_addr:
use smileys:

date format: Use this field for defining how the date of the message should be displayed on the screen. The values of the field are the same as the date() function of PHP allows.

time format: Use this field for defining how the time of the message should be displayed on the screen.The values of the field are the same as the date() function of PHP allows. The date() function of PHP is used as well for date values as well for time values.

captcha: The captcha code is a string combinations of five characters and number, which must be entered by the user, if this setting is set to true. Does this value not match with the original captcha code, the new guestbook entry will not be stored. This setting avoids most of all spam entries. Possible values for this field are True or False.

ask for email: This field defines if the user will be asked for his e-mail address or not. Possible values for this field are True or False.

ask for website: This option is for setting up if the user should be prompted for his website / homepage or not. Possible values for this field are True or False.

ask for title: This option defines if the user will asked for a title of his message or not. Possible values for this field are True or False.

mandatory title: This option defines if the user must enter a value into the field Title or not. This option can be set to True only when the option ask for title is set to True too. Possible values for this field are True or False.

remove html: This field defines if maybe contained HTML code should be removed or not. Possible values for this field are True or False. Normally it is strongly recommended to set this option to True for removing HTML code. This avoids bad links to websites which are containing viruses, trojans and other ugly stuff.

items per page: With this option the administrator can define how many items per page should be displayed. Are there more entries in the guestbook, the plugin will split the content onto so many pages as necessary.

num of  pages: This setting specifies how many page links will be shown left and right close to the actual page number in the navigation bar at the bottom of the guestbook.

info mail: This field specifies to whom an info e-mail, that there is a new entry in your guestbook, should be sent. In this field you can specify more than one e-mail address. All e-mail addresses must be separated by a comma.

thank mail: This option defines if the visitor which has created a new message in the guestbook will get an automatically send mail to thank him. Possible values for this field are True or False. The text of the thank mail is available in the section Language and can be modified as you prefer.

thank sendfrom: This field contains the e-mail address which will be shown as sender.

new entries: This option allows to switch on and off the functionality of creating new guestbook entries. Possible values for this field are True or False. This option can be used eg. when your guestbook is under maintenance or your have some other problems. Normally this option should be set to True.

spam words: This field contains a list of all words, which will be used to identify the guestbook entry as spam. Contains a message word, which are classified as spam, this message will be not stored
Hint:
At the moment this option is used only when importing an CMSimple guestbook.

show creator: At the bottom of the guestbook will be a link to the author shown. If this text should not be shown this field must be set to False. Switching off this display is only possible after contacting the author. Possible values for this field are True or False.

show narrowlink: This option allows to switch on or off the links to previous "< Back" and next "Next >" page. Possible values are True or False.

show email: This options specifies if the e-mail address of the guestbook visitor will be shown or not. Possible values for this field are True or False.  This option has no influence if the e-mail address will be stored or asked from the user (see also ask_for_email) or not. It's only for switching on/off the display.

show website: This option allows to define if the address of the homepage will be shown or not. Possible values for this field are True or False. This option has no influence if the homepage address will be asked from the user (see also ask_for_website) or not. It's just for switching the display on/off.

show ip addr: This option specifies if the ip address of the visitor will be shown or not. Possible values for this field are True or False. This option has no influence if the ip address will be stored (see store_ip_addr) or not. This setting is just for switching the display on/off.

store ip addr:This option allows to define if the ip address of the visitor will be retrieved and stored or not. Possible values for this field are True or False.

use smileys:This options enables or disables the support for using smileys. If this option is switched on on the upper right corner of the message field a toolbar with the available smileys will be displayed. If the user clicks on one of the smileys the depending code will be copied into the message field. Possible values for this field are True or False.
Hints:
The smileys will be displayed in the message field in the common used notation like :-) oder 8-), but internally they will be stored as a describing code. This means the  smiley :-) will be internally :smile: or the smiley 8o will be internally stored as :eek:. This has the advantage to support also smileys which are containing control characters which would be otherwise unsupported.
The detection and online conversion of smileys is everytime active. This means: If the smiley :-) was once a time used and stored internally as :smile:, the visitor of the guestbook will see independent of this setting everytime the graphical smiley.

List of supported smileys:

Icon  User input  Internal coding 
smile :-) :) :smile:
happy :-)) :happy:
biggrin :-D :D :biggrin:
wink ;-) :wink:
cool 8-) :cool:
tongue :P :tongue:
rolleyes :rolleyes: :rolleyes:
eek 8o :eek:
confused ?( :confused:
frown :-( :( :frown:
crying ;-( :crying:
mad X( :mad:
evil :-> :evil:
 

1.7 Adapting the Layout

Das Layout, also die Darstellung des Gästebuchs wird im Wesentlichen durch die Einstellungen in der Datei stylesheet.css im Ordner css geregelt. Dort sind sämtliche Farben und Fontgrößen festgelegt. Es sind vier verschiedene Farbdefinitionen bereits enthalten: Blau, Gelb, Grau und Grün. Diese können einfach durch Umbenennen der Datei von z. B. stylesheet.green.css in stylesheet.css verwendet werden.

Entsprechend zu diesen Farbdefinitionen sind auch passende Smileys im Lieferumfang von GBook enthalten. Die verschiedenfarbigen Smileys sind im Ordner images in den Unterordnern blue, green und yellow gespeichert. Diese müssen in den Ordner images kopiert werden. Wird beispielsweise das Stylesheet Gelb verwendet, so müssen alle Smileys aus dem Ordner yellow in den eine Stufe höher liegenden Ordner images kopiert werden.

Die Stylesheet-Datei kann selbstverständlich auch selbst angepasst werden. Die einzelnen Einträge bedeuten:
Class Description
td.gbtitle Formatierung der Titelzeile
td.gblightline Formatierung einer hellen = geraden Zeile im Gästebuch, also die Zeilen 2, 4, 6, 8, ...
td.gbdarkline Formatierung einer hellen = ungeraden Zeile im Gästebuch, also die Zeilen 1, 3, 5, 7, ...
span.gbdatetime Formatierung von Datum und Uhrzeit
div.gbname Formatierung des Besucher-Namens
span.gbmessage Formatierung der Mitteilung
input.gbcaptcha Formatierung des Captcha-Codes
input.gbtextbox Formatierung aller einzeiligen Eingabefelder
input.gbmsgbox Formatierung des Mitteilungsfeldes
 

1.8 How to import an existing Guestbook?

Since version 0.6 of GBook plugins there is the function available at the section "GBook Data". This function allows to import a default guestbook of CMSimple into the GBook guestbook. With this function you will not loose messages, stored in your old guestbook, when switching to GBook plugin.

For importing a CMSimple guestbook, please click the button . The following pages offers several options. These options can have heavy influence to the success and quality of the following import. The guestbook of CMSimple is storing all messages directely as HTML text. Therefore it is quite complicate to detect, where eg. the message text or where and how the author or the date is stored

The following options are available:

Save-Options: The default setting is  Append to GBook file . When you choose this option all items of the old guestbook will be append automatically to the new guestbook on importing the guestbook. Contains your new GBook guestbook only some test entries, which should be deleted anyway, you can choose the option  Overwrite existing GBook file . If you choose this option all entries of the GBook guestbook will be overwritten with the guestbook entries of the CMSimple guestbook..

Conversion Options: The option  Use server name as username  replace the name of the user with the name of the server. This can by helpful eg. when the recognition of the username doesn't work in any cases. or the name of the user should not be shown.

The option  Use Spam filter  enables the filtering of all new imported entries for spam. All texts defined in the field 'Spam Words' will be compared with the guestbook message which will be imported. If a text matches with a message, this message will be skipped and not imported.

Use the option  Scan Format  for defining which date and time format was used for storing these values. These settings cannot be read automatically. Therefore you have to specify them manually.
Possible values are e.g.:
%s, %d. %d. - if the date format is like March, 13. 2006
%d.%d.%d - if the date format is like 24.03.2006

The option  Parameter order  defines, the order of the values for day, month, year, hours, minutes und seconds. The number 1 is for the day, 2 for the month, 3 for the year, 4 for the hours, 5 for the minutes and 6 for the seconds.

The option Value for Posted  allows to change the predefined value of the field 'Posted'. This is necessary e.g. if you're using CMSimple Plus which adds in the source code the additional string ' am ' to the field 'Posted'. In this case you have to add the string ' am ' at the end of the option 'Value for Posted'.

Other Options: The  Debug Mode  shows addtional output during the import. This can be helpful on errors or not exactly recognized data.

Info: The fields  Used Date Format  and  Used GBook language file  are shown just for information and cannot be changed.

When you have set up all settings and you're sure to import the CMSimple guestbook, press the button .
If not press to return to normal editor of the GBook guestbook file.

Importing the original guestbook may take some time. Please wait until a summary of the import is shown. As last step of the import you have to press the button to finish the import. The new content of guestbook will be shown in the textbox and can be edit, if necessary.

2. FAQ

 
FAQ = Frequently Asked Questions (and the answers)

2.1 Frequently Askes Questions

How to install the Guestbook?
How to import the default Guestbook of CMSimple?
How to create a new Language?
How to protect against SPAM?
How to avoid < SCRIPT > or < HTML > in the entries?
How to change the colors of the guestbook?
How to change the fonts of the guestbook?
How to display the date and time information?
How to use mail notification?
Why do I need to switch off the guestbook?

2.2 Questions & Answers

Q: How to install the Guestbook?

A: A description how to install is available here (under the section installation). For individual questions and problems according the installations please use the forum.

top


Q: How to import the default Guestbook of CMSimple?

A: The default guestbook of CMSimple stores all entries directely as HTML in the guestbook file. This causes that logical structures are nearly not existing, eg. to detect where is the name stored or where does the message start and where it ends
Since version 0.6 the GBook plugin has a new function to import existing guestbooks from CMSimple. To start this function, please go to the administration section and start there the import routine. For a detailled description how to import and which settings are necessary, please take a look to the documentation of the installatione.

top


Q: How to create a new Language?

A: If you want to offer your website in multiple laguanges, surely the guestbook and its entries should support the different languages as well. The plugin Gbook offers you this functionality. It creates for each language its own guestbook file. Each guestbook file ends with a two character code, representing the containing language. For example the english guestbook has the filename Guestbook_en.txt, the german one the filename Guestbook_de.txt and so on.
A general description, how to use multiple languages with CMSimple you will find in the CMSimple manual.

top


Q: How to protect against SPAM?

A: Guestbooks are often the target of spammer. Mostly so called bots - automatically working programs - are used to create the spam entries. To avoid automatic creating of entries Gbook has the option to use a Captcha. This means for each new entry a code of characters and numbers will be created. This code is displayed on the screen and must be reentered by the user as aprovement. Most of the bots can't do this, with the result no entry is created.
The gbook displays the approvement code (=CAPTCHA) if the option is set to captcha = True. The captcha is dynamically and individually created for each user.

top


Q: How to avoid < SCRIPT > or < HTML > in the entries?

A: I fyou set the option remove_html = True, gbook will remove alle HTML code in the text. These codes are
- Formatting (bold, italic, ...)
- Links (a href)
- Scripts (script)
Therefore no unexpected links or hidden code can be stored in your guestbook entries.

top


Q: How to change the colors of the guestbook?

A: All color definitions for gbook are stored in the css file "stylesheet.css", located in the folder "/plugins/Gbook/css". In this folder there are three additional css files which are containing alternative color definitions. But only the file with the name "stylesheet.css" is used. If you like to use one of the other css files, please rename the choosen one to "stylesheet.css".
If the predefined colors doesn't match to your website, please feel free to modify the css file.

top


Q: How to change the fonts of the guestbook?

A: All font definitions are stored in the css file "stylesheet.css", located in the folder "/plugins/Gbook/css". Changes of the text layout (eg. font, font size etc.) can be made in this file.

top


Q: How to display the date and time information?

A: The format for date and time can be set up to several formats. The default settings are having the following meaning:

Date format d.m.y
d = display day with leading zero, followed by a dot ".",
m = display month as number with leading zero, followed by a dot "." and at least
y = display the year as two-digit number.

Time format H:i:s
H = display hours in 24 hours format with leading zeros, followed by ":",
i
= display minutes with leading zeros, followed by ":" and at least
s
= display the seconds with leading zeros.

For more information please see PHP Online Documentation.

top


Q: How to use mail notification?

A: Immediately after successfully storing of a guestbook entry, a info mail to the webmaster can be send. The mail address of the webmaster must be specified in the configuration under info_mail. The e-mail service must be setup by your web provider in the PHP configurations.

Tipp:
Whe you specify in the field info_mail multiple mail addresses, the info will be sent to all of them. The mail addresses must be separated by a comma.

top


Q: Why do I need to switch off the guestbook?

A: In spite of all protection, it can happen a spammer will fill your guestbook. If you want to switch of creating of new entries for some time, use the configuration new_entries = False to switch off the guestbook.

top