1. Liebe Forumsgemeinde,

    aufgrund der Bestimmungen, die sich aus der DSGVO ergeben, müssten umfangreiche Anpassungen am Forum vorgenommen werden, die sich für uns nicht wirtschaftlich abbilden lassen. Daher haben wir uns entschlossen, das Forum in seiner aktuellen Form zu archivieren und online bereit zu stellen, jedoch keine Neuanmeldungen oder neuen Kommentare mehr zuzulassen. So ist sichergestellt, dass das gesammelte Wissen nicht verloren geht, und wir die Seite dennoch DSGVO-konform zur Verfügung stellen können.
    Dies wird in den nächsten Tagen umgesetzt.

    Ich danke allen, die sich in den letzten Jahren für Hilfesuchende und auch für das Forum selbst engagiert haben. Ich bin weiterhin für euch erreichbar unter tti(bei)pcwelt.de.
    Dismiss Notice

XMLBoard brauche Eure hilfe...

Discussion in 'Web-Know-how für die Homepage' started by Pretorian, Mar 20, 2007.

Thread Status:
Not open for further replies.
  1. Pretorian

    Pretorian ROM

    XMLBoard brauche Eure hilfe...

    Hallo!

    wie kann man bei einem XMLBoard den Zugang mit Password
    ausstatten bzw. einfügen.

    Siehe z.Bspl. Forum Bulletin Board von

    http://wwbo.hypermart.net/public_html/cgi-bin/forum/xmlboardsolo.cgi

    Der Programier-Text lautet wie folgt



    ###### FORUM.CONF ######
    #
    # Diese Konfigurationsdatei besteht aus Perl-Code und wird von dem
    # CGI-Sxript xmlboard forenabhaengig ausgefuehrt. Diese Datei defniert
    # Variablen fuer den Aufruf eines speziellen Forenbereichs.
    #
    # This file is perl code executed by the xmlboard script, specific for
    # each forum. It declares variables for the execution of a particular
    # forum.

    ### Spezielle Optionen der deutschen Uebersetzung des HomePage Magazins:
    #

    # Zum CGI-Skript relativer Pfad des HTML-Headers

    $htmlHeader = "config/top.html";

    # Zum CGI-Skript relativer Pfad des HTML-Footers

    $htmlFooter = "config/bottom.html";

    # Zum CGI-Skript relativer Pfad der Passwort-Datei

    $passfile = "config/pass.txt";

    #
    ###

    ### Cookies-related values:
    #

    # Cookies benutzen? Setzten Sie $useCookies = 1 so speichert xmlboard den
    # Benutzernamen, das Datum des letzten Forenbesuchs und die Anzahl vorhandener
    # Nachrichten in einem Cookie (zulaessige Werte: 0 oder 1)
    # Use cookies? If $useCookies = 1, the script will set cookies recording the
    # user's name, the last date of visit, and the number of posts at each
    # visit: (valid values: 0,1)

    $useCookies = 1;

    # Nach wie vielen Sekunden soll das Cookie seine Gueltigkeit verlieren?
    # In how many seconds does the cookie expire?

    $expiresIn = 31449600;

    # Farbwert des Hinweises "neu" vor einer Mitteilung:
    # The color for new post indicators:

    $newColor = "\#ff0000";

    #
    ###

    ### Miscellaneous functionality-related values:
    #

    # The maximum length allowed for posted values:

    $maxLength = 100;

    # Mit der naechsten Option legen Sie fest, ob nur neuere Nachrichten
    # in der Uebersicht erscheinen sollen. Setzen Sie diesen Wert entweder
    # auf 0 fuer alle Nachrichten, oder auf einen anderen Zahlenwert fuer
    # das maximale Alter der angezeigten Beitraege in Sekunden.
    # How recent a post must be for it to show up in the index (in seconds):
    # This feature can be disabled by setting $recent = 0; (all posts will
    # show up).

    $recent = 0;

    # When the parser writes to the xml file, it creates a temp file, a copy
    # of the xml file, for reading. By setting $leaveTemp = 1, the temp
    # file will be left on the disk after the parsing is finished. You should
    # use this option if you expect the xml file will become very lengthy,
    # and don't want the computer to be copying and deleting a potentially
    # large file. This should also be used if you cannot set the appropriate
    # write permissions on the directory in which the file is located.
    # (valid values: 0, 1)

    $leaveTemp = 0;

    # Setzen Sie den folgenden Wert auf 1 wird die Angabe einer Email-Adresse
    # beim Versand von Nachrichten zwingend.
    # Does not permit posting of messages without a valid email address if true:
    # (valid values: 0, 1)

    $needEmail = 1;

    # Setzen Sie den folgenden Wert auf 1, zeigt xmlboard die IP-Adresse des Absenders.
    # Selects whether the poster's ip should be displayed on the page, or
    # hidden in the source as a comment (1 for visible, 0 for hidden):

    $showIp = 1;

    # If true, newline characters (\n) will be inserted when the text in the
    # message field wraps around:
    # (valid values: 0, 1)

    $hardWrap = 1;

    # Setzen Sie den folgenden Wert auf 0, so verschwindet der Link "Admin".
    # If true, a link to the admin action will be displayed on the index page.
    # You might not want this link because it would invite hacking attempts,
    # although it is convenient for the administrators. If you elect to turn
    # this option off, which I recommend, you may access the admin page by setting
    # "action=admin" in the url query string. (valid values: 0, 1)

    $adminLink = 1;

    # Setzen Sie den folgenden Wert auf 0, so verschwindet der Link "Suchen".
    # If true, a link to the search page will be displayed on the index. If you
    # don't think people will be searching your forum, you can set it to false.
    # (valid values: 0, 1)

    $searchLink = 1;

    # Setzen SIe den folgenden Wert auf 0, so wird jeder Antwort ein "Re:" vorangestellt.
    # If true, indiscriminately puts Re: at the front of each subject in the reply
    # form. Otherwise, only leaves 1. (valid values: 0, 1)

    $reAlways = 1;

    # If true, text will be filtered for naughty words and changed into more
    # pleasant ones. (valid values: 0, 1)

    $languageFilter = 0;

    #
    ###

    ### List-type values:
    #

    # Setzen SIe den folgenden Wert auf 0, so verwendet das CGI Tabellen statt
    # unsortierter Listen zur Anzeige der Uebersicht.
    # If true, an unordered list (<ul>) will be used for an index; otherwise,
    # a table with &nbsp; for indentation will be used:
    # You only need to define the variables in the corresponding section below.
    # (valid values: 0, 1)

    $uList = 1;

    ### For unordered lists:

    # Definiert das Aussehen des Markers unsortierter Listen.
    # Zulaessig: "circle", "square", "disc".
    # What type of bullet will be used for a list item. If you use anything other
    # than the valid values, a different bullet will be shown depending on the
    # item's depth.
    # (valid values: "circle", "square", "disc", (anything else))

    $liType = "square";

    ### For tables:

    # Definiert das Aussehen des Markers fuer die Tabellen-Darstellung.
    # What character will be used for a bullet. The html entity &middot; will give
    # you a simple bullet, but you can use any character you wish, or even
    # html code for an image.

    $bulletChar = '&middot;';

    # Schrittweite für das Einruecken von Antworten.
    # The number of spaces to indent posts in the index listing:

    $indentDepth = 10;

    # Rahmenbreite fuer die Tabellen-Darstellung der Uebersicht.
    # Changes the thickness of the border of the table for the message index:
    # (0 = no border)

    $border = 1;

    # Hintergrundfarbe fuer die Tabellen-Darstellung der Uebersicht.
    # The color of the table cells' background ("" = no color):

    $cellColor = "";

    # Padding-Wert fuer die Tabellen-Darstellung der Uebersicht.
    # The amount of padding between text and the walls of the data cells in
    # a table for a message index, in pixels:

    $cellPadding = 1;

    # Zellenabstand fuer die Tabellen-Darstellung der Uebersicht.
    # The amount of spacing between data cells in a table for a message index,
    # in pixels:

    $cellSpacing = 2;

    #
    ###

    ### Misc Appearance-Related Values:
    #

    # Breite in Zeichen fuer alle Formular-Anzeigen
    # Determines the length of the fields (appearance-wise) in the form:

    $fieldLength = 60;


    # Anfang der Titelzeile fuer dieses Forum.
    # What text will appear in the title of all generated pages-- in the message
    # index this text will be followed by "Message Index" and in a message it
    # will be followed by the subject of the post.

    $titlePrefix = "Forum: advert-Promotion Advertising -";

    #
    ###
     
Thread Status:
Not open for further replies.

Share This Page