<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Bludit Dokumentation</title>
    <link>https://docs.bludit.com/de/</link>
    <description>Requirements, installation and upgrade guides for Bludit CMS Flat-File. How to create a theme, how to create a plugin and all information for developers.</description>
    <lastBuildDate>Sun, 19 Sep 2021 22:10:24 +0200</lastBuildDate>
    <item>
      <title>Installation on GNU/Linux</title>
      <link>https://docs.bludit.com/de/advanced/installation-on-gnu-linux</link>
      <description>&lt;p&gt;All examples are out of the box installation, with Nginx Webserver. If you have the steps for other distributions, you can publish it on the &lt;a href="https://forum.bludit.org"&gt;forum&lt;/a&gt; or just edit this page on Github, you can find a button at the end of the page with the link.&lt;/p&gt;
&lt;h3&gt;Content&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="#ubuntu"&gt;Installation on Ubuntu 16.04&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#centos"&gt;Installation on Centos 7 / RedHat 7&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;&lt;a id="ubuntu"&gt;&lt;/a&gt; Installation on Ubuntu 16.04 LTS&lt;/h2&gt;
&lt;p&gt;Considerations:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP-FPM is running under the username &lt;code&gt;www-data&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;PHP-FPM is listen on Unix socket on &lt;code&gt;unix:/run/php/php7.0-fpm.sock&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Nginx is running under the username &lt;code&gt;www-data&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;You don't have installed any other webserver.&lt;/li&gt;
&lt;li&gt;This is a basic configuration, considere read more for production environments.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Install Nginx Webserver, PHP and some tools.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ sudo apt install -y nginx php-fpm php-dom php-mbstring php-cli php-gd php-opcache unzip wget&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Configure Nginx.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ sudo rm -f /etc/nginx/sites-enabled/*&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Add a new file with the virtual server block in &lt;code&gt;/etc/nginx/conf.d/bludit.conf&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {
    listen 80;
    server_name _;
    root /www/bludit;
    index index.php;

    location ~ \.php$ {
        fastcgi_pass    unix:/run/php/php7.0-fpm.sock;
        include         fastcgi.conf;
    }

    location / {
        try_files $uri $uri/ /index.php?$args;
    }
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Download the latest version of Bludit and uncompress it.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ mkdir /www
$ cd /www
$ wget https://s3.amazonaws.com/bludit-s3/bludit-builds/bludit_latest.zip
$ unzip bludit_latest.zip
$ sudo chown -R www-data:www-data /www&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Restart the services to load the new configurations.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ sudo service php7.0-fpm restart
$ sudo service nginx restart&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Open your browser and navigate to &lt;a href="http://localhost"&gt;http://localhost&lt;/a&gt;, finish with the installation.&lt;/p&gt;
&lt;hr /&gt;
&lt;h2&gt;&lt;a id="centos"&gt;&lt;/a&gt; Installation on Centos 7 / Red Hat 7&lt;/h2&gt;
&lt;p&gt;Considerations:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;PHP-FPM is running under the username &lt;code&gt;nginx&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;PHP-FPM is listen on Unix socket on &lt;code&gt;unix:/run/php/php-fpm.sock&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Nginx is running under the username &lt;code&gt;nginx&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;You don't have installed any other webserver.&lt;/li&gt;
&lt;li&gt;This is a basic configuration, considere read more for production environments.&lt;/li&gt;
&lt;/ul&gt;
&lt;pre&gt;&lt;code&gt;$ sudo yum install -y epel-release&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Install Nginx Webserver, PHP and some tools.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ yum install -y nginx php-fpm php-cli php-dom php-mbstring php-zip php-gd&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Configure Nginx, add a new file with the virtual server block in &lt;code&gt;/etc/nginx/conf.d/bludit.conf&lt;/code&gt;&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;server {
    listen 80;
    server_name _;
    root /www/bludit;
    index index.php;

    location ~ \.php$ {
        fastcgi_pass    unix:/run/php/php7.0-fpm.sock;
        include         fastcgi.conf;
    }

    location / {
        try_files $uri $uri/ /index.php?$args;
    }
}&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Download the latest version of Bludit and uncompress it.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ mkdir /www
$ cd /www
$ wget https://s3.amazonaws.com/bludit-s3/bludit-builds/bludit_latest.zip
$ unzip bludit_latest.zip
$ sudo chown -R nginx:nginx /www&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Restart the services to load the new configurations.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;$ sudo systemctl php-fpm restart
$ sudo systemctl nginx restart&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Open your browser and navigate to &lt;a href="http://localhost"&gt;http://localhost&lt;/a&gt;, finish with the installation.&lt;/p&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">bf2ed6796b8a4cef4adc632030646d47</guid>
    </item>
    <item>
      <title>Grundlagen</title>
      <link>https://docs.bludit.com/de/plugins/grundlagen</link>
      <description>&lt;p&gt;Plugins befinden sich bei Bludit im Verzeichnis &lt;code&gt;bl-plugins&lt;/code&gt; und haben eine vordefinierte Verzeichnis- und Dateistruktur.
Jedes Plugin ist in Bludit als Objekt mit Hooks (Methoden) dargstellt und ansprechbar.&lt;/p&gt;
&lt;h3&gt;Inhalt&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="#hello-world"&gt;Hello World&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#structure"&gt;Plugin Struktur&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#information"&gt;Informationen über das Plugin&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#name-description"&gt;Name und Beschreibung&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2&gt;&lt;i id="hello-world"&gt;&lt;/i&gt; Hello World&lt;/h2&gt;
&lt;p&gt;Das &amp;quot;Hello World&amp;quot; Plugin für Bludit.&lt;/p&gt;
&lt;pre&gt;&lt;code data-language="php"&gt;&lt;?php
    class pluginHello extends Plugin {
        public function siteSidebar() {
            echo 'Hello world';
        }
    }
?&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;i id="structure"&gt;&lt;/i&gt; Plugin Struktur&lt;/h2&gt;
&lt;p&gt;Das ist die vorgegebene Verzeichnis- und Dateistruktur für ein Plugin.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/bl-plugins/{PLUGIN_NAME}/
    language/en.php
    metadata.json
    plugin.php&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;i id="information"&gt;&lt;/i&gt; Informationen über das Plugin&lt;/h2&gt;
&lt;p&gt;Die Informationen über das Plugin befinden sich in der JSON-Datei &lt;code&gt;metadata.json&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code data-language="JSON"&gt;{
    "author": "Bludit",
    "email": "",
    "website": "https://plugins.bludit.com",
    "version": "2.0",
    "releaseDate": "2017-10-10",
    "license": "MIT",
    "compatible": "2.0",
    "notes": ""
}&lt;/code&gt;&lt;/pre&gt;
&lt;h2&gt;&lt;i id="name-description"&gt;&lt;/i&gt; Name und Beschreibung&lt;/h2&gt;
&lt;p&gt;Der Name und die Beschreibung des Plugins befinden sich in der JSON-Datei &lt;code&gt;languages/en.json&lt;/code&gt;.&lt;/p&gt;
&lt;pre&gt;&lt;code data-language="JSON"&gt;{
    "plugin-data":
    {
        "name": "Hello World",
        "description": "Print Hello World in the sidebar"
    }
}&lt;/code&gt;&lt;/pre&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Beispiele&lt;/div&gt;
Wir haben ein Gibhub-Repository mit Beispielen, welches du unter folgendem Link findest: &lt;a href="https://github.com/bludit/examples"&gt;Bludit Beispiele&lt;/a&gt;.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">0847f45f3f8e4e3cc4da49d4a19e301c</guid>
    </item>
    <item>
      <title>"Weiterlesen"-Link</title>
      <link>https://docs.bludit.com/de/inhalt/weiterlesen-link</link>
      <description>&lt;p&gt;Du kannst den Inhalt deiner Seite mit dem Tag &lt;code&gt;&amp;lt;!-- pagebreak --&amp;gt;&lt;/code&gt; aufteilen&lt;/p&gt;
&lt;p&gt;&lt;img src="https://df6m0u2ovo2fu.cloudfront.net/images/documentation-english/read-more-link.png" alt="Read more link" /&gt;&lt;/p&gt;
&lt;p&gt;Beispiel:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;This is the first part of the content of the page.

&amp;lt;!-- pagebreak --&amp;gt;

This is the second part of the page.&lt;/code&gt;&lt;/pre&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Video tutorial&lt;/div&gt;
&lt;a href="https://www.youtube.com/watch?v=8M7RqkwmAoY"&gt;Youtube&lt;/a&gt;
&lt;/div&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Anmerkung&lt;/div&gt;
Diese Funktion ist abhängig vom eingesetzten Theme. Nicht alle unterstützen diese Funktion.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">573673c87b2afc0bc7f8ed7c62290f69</guid>
    </item>
    <item>
      <title>Bild einfügen</title>
      <link>https://docs.bludit.com/de/inhalt/bild-hochladen-und-einfuegen</link>
      <description>&lt;p&gt;Beim Erstellen oder Bearbeiten einer Seite kannst du über die rechte Sidebar ein Bild hochladen und danach in den Seiteninhalt einfügen.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Öffne den Abschnitt &lt;strong&gt;Bilder&lt;/strong&gt; auf der rechten Sidebar.&lt;/li&gt;
&lt;li&gt;Auf den Button &lt;strong&gt;Upload weitere Bilder&lt;/strong&gt; klicken&lt;/li&gt;
&lt;li&gt;Auf den Button &lt;strong&gt;Bild hochladen&lt;/strong&gt; klicken&lt;/li&gt;
&lt;li&gt;Wähle das Bild auf deiner Festplatte aus&lt;/li&gt;
&lt;li&gt;Nachdem das Bild hochgeladen wurde wird eine kleine Vorschau des Bildes angezeigt. Mit einem Klick kannst du es auswählen.&lt;/li&gt;
&lt;li&gt;Wähle &lt;strong&gt;Bild einfügen&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Das Bild ist nun eingefügt.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;img src="https://df6m0u2ovo2fu.cloudfront.net/images/documentation-english/how-to-upload-and-insert-an-image.png" alt="How to upload an insert an image" /&gt;&lt;/p&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Anmerkung&lt;/div&gt;
Der eingefügte Code kann sich je nach Editor unterscheiden. Standardmäßig wird Markdown Code erzeugt.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">7a97a3e7239f4ae0f12ab0ce4b05e0d1</guid>
    </item>
    <item>
      <title>Editor wechseln</title>
      <link>https://docs.bludit.com/de/inhalt/editor-wechseln</link>
      <description>&lt;p&gt;Bludit verwendet standardmäßig den Editor SimpleMDE, einen einfachen und übersichtlichen Editor für Markdown Code. Man kann auch den Editor TinyMCE verwenden, der die einfache Erstellung und Bearbeitung von HTML Code ermöglicht.
Diese beiden Editoren sind bei Bludit vorinstalliert und unter Plugins aufgelistet.&lt;/p&gt;
&lt;h2&gt;Umstellung auf TinyMCE&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Melde dich im &lt;strong&gt;Administrationsbereich&lt;/strong&gt; an.&lt;/li&gt;
&lt;li&gt;Wähle &lt;strong&gt;Plugins&lt;/strong&gt; in der linken Seitenleiste.&lt;/li&gt;
&lt;li&gt;Deaktiviere das Plugin &lt;strong&gt;SimpleMDE&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Aktiviere das Plugin &lt;strong&gt;TinyMCE&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Jetzt kannst du TinyMCE als Editor verwenden.&lt;/li&gt;
&lt;/ul&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">1007b1792d6892477392bcd01c1fab48</guid>
    </item>
    <item>
      <title>Inhalt erstellen</title>
      <link>https://docs.bludit.com/de/inhalt/neuen-inhalt-erstellen</link>
      <description>&lt;p&gt;Logge dich in den &lt;strong&gt;Admin Bereich&lt;/strong&gt; ein und klicke auf den Punkt &lt;strong&gt;Neuer Inhalt&lt;/strong&gt; im linken Menü.&lt;/p&gt;
&lt;p&gt;Fülle alle Felder aus und speichere deinen Beitrag mit einem Klick auf den Button &lt;strong&gt;Speichern&lt;/strong&gt;.
&lt;img src="https://df6m0u2ovo2fu.cloudfront.net/images/documentation-english/how-to-create-new-content.png" alt="How to create new contente" /&gt;&lt;/p&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Hinweis&lt;/div&gt;
Der Inhalt unterstützt Markdown und HTML-Code.
&lt;/div&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Editor&lt;/div&gt;
Bludit verwendet standardmäßig den Editor SimpleMDE, du kannst aber auch TinyMCE oder einen anderen Editor benutzen. &lt;a href="https://docs.bludit.com/de/inhalt/editor-wechseln"&gt;Wie man den Editor wechselt&lt;/a&gt;
&lt;/div&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Markdown&lt;/div&gt;
Weitere Informationen zum Markdown Code findest du unter dem folgenden Link: &lt;a href="https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet"&gt;Markdown Cheatsheet&lt;/a&gt; oder &lt;a href="https://planet-bludit.ch/verschiedenes/markdown" target="_blank"&gt;Markdown&lt;/a&gt; auf der Website &lt;em&gt;Planet Bludit&lt;/em&gt;.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">e428867ea5331bb182ead70dfba73468</guid>
    </item>
    <item>
      <title>Beispiel: Mein erstes Theme</title>
      <link>https://docs.bludit.com/de/themes/example-my-first-theme</link>
      <description>&lt;p&gt;Nachfolgend erstellen wir ein neues, einfaches Theme mit dem Namen 'Coffee'.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Erstelle das Theme-Verzeichnis im Verzeichnis &lt;code&gt;/bl-themes/&lt;/code&gt;, in unserem Fall &lt;code&gt;/bl-themes/coffee/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Erstelle das Verzeichnis &lt;code&gt;languages&lt;/code&gt; im Theme-Verzeichnis &lt;code&gt;/bl-themes/coffee/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Erstelle die Datei &lt;code&gt;en.json&lt;/code&gt; im Verzeichnis &lt;code&gt;/bl-themes/coffee/languages/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Erstelle die Datei &lt;code&gt;metadata.json&lt;/code&gt; im Verzeichnis &lt;code&gt;/bl-themes/coffee/&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Erstelle die Datei &lt;code&gt;index.php&lt;/code&gt; im Verzeichnis &lt;code&gt;/bl-themes/coffee/&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Die Verzeichnisstruktur mit den eben erstellten Dateien muss jetzt so aussehen:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/bl-themes/coffee/
    language/en.json
    metadata.json
    index.php&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Im nächsten Schritt erstellen wir den Inhalt der Dateien. Wir beginnen mit der Datei &lt;code&gt;index.php&lt;/code&gt; und fügen dieser folgenden HTML und PHP Code zu.&lt;/p&gt;
&lt;pre&gt;&lt;code class="language-html"&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html&amp;gt;
    &amp;lt;head&amp;gt;
        &amp;lt;meta charset="UTF-8"&amp;gt;
        &amp;lt;title&amp;gt;Bludit&amp;lt;/title&amp;gt;
    &amp;lt;/head&amp;gt;
    &amp;lt;body&amp;gt;
        &amp;lt;?php foreach ($pages as $Page): ?&amp;gt;

        &amp;lt;h1&amp;gt;&amp;lt;?php echo $Page-&amp;gt;title() ?&amp;gt;&amp;lt;/h1&amp;gt;
        &amp;lt;div&amp;gt;&amp;lt;?php echo $Page-&amp;gt;content() ?&amp;gt;&amp;lt;/div&amp;gt;

        &amp;lt;hr&amp;gt;

        &amp;lt;?php endforeach; ?&amp;gt;
    &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Bearbeite jetzt die Datei &lt;code&gt;languages/en.json&lt;/code&gt; um den Namen und die Beschreibung des Themes hinzuzufügen.&lt;/p&gt;
&lt;pre&gt;&lt;code data-language="php"&gt;{
    "theme-data":
    {
        "name": "Coffee",
        "description": "This is my first theme for Bludit."
    }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Jetzt bearbeiten wir die Datei &lt;code&gt;metadata.json&lt;/code&gt; um die Informationen über das Theme zu vervollständigen.&lt;/p&gt;
&lt;pre&gt;&lt;code data-language="php"&gt;{
    "author": "Bludit",
    "email": "",
    "website": "",
    "version": "1.0",
    "releaseDate": "2017-10-10",
    "license": "MIT",
    "compatible": "2.0",
    "notes": ""
}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Herzlichen Glückwunsch, du hast soeben dein erstes Theme für Bludit erstellt!&lt;/p&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Beispiele&lt;/div&gt;
Wir haben ein Gibhub-Repository mit Beispielen, welches du unter folgendem Link findest: &lt;a href="https://github.com/bludit/examples"&gt;Bludit Theme Beispiele&lt;/a&gt;.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">6a5f6ca01689a4db489889a05f450af4</guid>
    </item>
    <item>
      <title>Plugins</title>
      <link>https://docs.bludit.com/de/erste-schritte/plugins</link>
      <description>&lt;p&gt;Mit Plugins können die Funktionen von Bludit erweitert werden.&lt;/p&gt;
&lt;p&gt;Einige Plugins sind standardmässig installiert. Nicht alle sind jedoch aktiviert.&lt;/p&gt;
&lt;p&gt;Weitere Plugins können von der Seite &lt;a href="https://plugins.bludit.com"&gt;Bludit Plugins&lt;/a&gt; heruntergeladen werden.&lt;/p&gt;
&lt;h3&gt;Plugin installieren&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Das ZIP-Archiv mit dem Plugin herunterladen.&lt;/li&gt;
&lt;li&gt;Das ZIP-Archiv entpacken.&lt;/li&gt;
&lt;li&gt;Das entpackte ZIP-Archiv in den Ordner '/bl-plugins/' auf dem Server laden.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Plugin aktivieren und konfigurieren&lt;/h3&gt;
&lt;ol&gt;
&lt;li&gt;Im Admin-Bereich in der linken Seitenleiste unter &amp;quot;Einstellungen&amp;quot; den Menüpunkt &lt;strong&gt;Plugins&lt;/strong&gt; klicken.&lt;/li&gt;
&lt;li&gt;Beim Plugin, das verwendet werden soll, &lt;strong&gt;Aktivieren&lt;/strong&gt; klicken.&lt;/li&gt;
&lt;li&gt;Die meisten Plugins können durch Anklicken von &lt;strong&gt;Einstellungen&lt;/strong&gt; den eigenen Bedürfnissen angepasst werden.&lt;/li&gt;
&lt;/ol&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">ef86a11b1cd1eaf3459b2be36415fa8d</guid>
    </item>
    <item>
      <title>Hiawatha</title>
      <link>https://docs.bludit.com/de/webservers/hiawatha</link>
      <description>&lt;p&gt;Bludit suppors Hiawatha webserver, you can use the following rewrite rule:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;UrlToolkit {
    ToolkitID = bludit
    RequestURI exists Return
    Match [^?]*(\?.*)? Rewrite /index.php$1
}&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">84f4f5583cb044d09aa5c378995f0bfd</guid>
    </item>
    <item>
      <title>Installation</title>
      <link>https://docs.bludit.com/de/erste-schritte/installation</link>
      <description>&lt;p&gt;Bludit ist in wenigen Schtitten installiert:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Lade die neueste Version von Bludit von der &lt;a href="https://www.bludit.com/de/"&gt;offiziellen Website&lt;/a&gt; herunter.&lt;/li&gt;
&lt;li&gt;Entpacke das ZIP-Archiv.&lt;/li&gt;
&lt;li&gt;Lade den Inhalt des ZIP-Archivs in das Verzeichnis auf deinem Server, in dem du Bludit installieren möchtest. Das kann im Hauptverzeichnis sein (root) oder in einem Unterverzeichnis wie beispielsweise &lt;code&gt;/bludit&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Rufe im Browser die Domain mit der Installation auf. Befindet sie im Hauptverzeichnis &lt;code&gt;https://meinedomain.ch&lt;/code&gt;, wenn sie sich in einem Unterverzeichnis befindet beispielsweise &lt;code&gt;https://meinedomain.ch/bludit&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Der Bludit-Installer führt dich darauf durch die Einrichtung der Website.&lt;/li&gt;
&lt;/ol&gt;
&lt;hr /&gt;
&lt;h2 id="unterverzeichnis"&gt;Installation in einem Unterverzeichnis&lt;/h2&gt;
&lt;p&gt;Wird Bludit in einem Unterverzeichnis  eingerichtet, muss bei einigen Hostern die Datei &lt;code&gt;.htaccess&lt;/code&gt; im Installationsverzeichnis angepasst werden.&lt;/p&gt;
&lt;p&gt;Wird Bludit beispielsweise im Unterverzeichnis &lt;code&gt;bludit&lt;/code&gt; installiert, muss in diesem Falle die Datei &lt;code&gt;.htaccess&lt;/code&gt; wie folgt angepasst werden (Zeile 9):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;# Base directory
RewriteBase /bludit/&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;h2 id="iis-internet-information-services"&gt;IIS (Internet Information Services)&lt;/h2&gt;
&lt;p&gt;Für die Installation mit IIS (Internet Information Services, früher: Internet Information Server) von Microsoft muss die Datei .htaccess angepasst werden.&lt;/p&gt;
&lt;p&gt;Beispielsweise:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;rules&amp;gt; 
   &amp;lt;rule name="Rule1" stopProcessing="true"&amp;gt;
      &amp;lt;match url="^(.*)$" ignoreCase="false" /&amp;gt;
         &amp;lt;conditions&amp;gt;
            &amp;lt;add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /&amp;gt;
            &amp;lt;add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /&amp;gt;
            &amp;lt;add input="{URL}" pattern="^/favicon.ico$" ignoreCase="false" negate="true" /&amp;gt;
         &amp;lt;/conditions&amp;gt;
      &amp;lt;action type="Rewrite" url="index.php?q={R:1}" appendQueryString="true" /&amp;gt;
   &amp;lt;/rule&amp;gt;
&amp;lt;/rules&amp;gt;&lt;/code&gt;&lt;/pre&gt;
&lt;hr /&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Zeitzone&lt;/div&gt;
Bludit versucht deine Zeitzone automatisch zu ermitteln. Es empfiehlt sich aber, die Einstellung der Zeitzone nach der Installation im Administrationsbereich unter &lt;strong&gt;Einstellungen&lt;/strong&gt; &gt; &lt;strong&gt;Sprache/Zeitzone&lt;/strong&gt; &gt; &lt;strong&gt;Zeitzone&lt;/strong&gt; zu überprüfen.
&lt;/div&gt;
&lt;div class="note"&gt;
&lt;div class="title"&gt;Dateien auf den Server laden&lt;/div&gt;
Um die Dateien auf den Server zu laden, kannst du einen FTP- oder SFTP-Prograamm (FTP-Client) oder WebFTP verwenden. Weitere Informationen dazu findest du beispielsweise auf der Website &lt;em&gt;Planet Bludit&lt;/em&gt; unter &lt;a href="https://planet-bludit.ch/installation/file-transfer-ftp-und-sftp" target="_blank"&gt;File Transfer (FTP und SFTP)&lt;/a&gt;.
&lt;/div&gt;</description>
      <pubDate>So, 19 Sep 2021 22:10:24 +0200</pubDate>
      <guid isPermaLink="false">1f9e8b1a82c575fb92b40d1317414588</guid>
    </item>
  </channel>
</rss>
