Inhaltsverzeichnis
  1. Delightful Download Plugin Doku 2 - 8
  2. Besprechungs-Timer 9
  3. Rinteln, Bückeburg, Kleve 2020 Mrz 9
  4. Wordpress empfohlene Plugins März 2020 10 - 12
  5. SSD auf größere SSD klonen - Clonezilla 13 - 14
  6. Stade, Schneverdingen, Scheeßel 2020 Mrz 15
  7. Bokel, Lohbarbek, Stade 2020 Mrz 16

Delightful Download Plugin Doku

Da das Open Source Delightful Plugin für zwar im Quellcode noch auf Github zu finden ist, aber dort keine Dokumentation liegt, habe ich die mir heruntergeladene Doku mal aufbereitet und stelle sie hier zur Verfügung. Die Doku ist in englischer Sprache und erklärt Shortcodes und Attribute. Ich habe die Möglichkeit und Wildcard, eine Beschreibung zum Download einzugeben, ergänzt, sowie einige Ausgabeformate (box, link) und die Listenausgabe angepasst.

Zum Quellcode auf Github

———————————- Delightful Downloads Documentation —————————-

———————————— FAQ ————————-

General

Can I manually upload files via FTP/SFTP?

Yes, simply upload them to your server anywhere within the WordPress file structure (usually wp-content/uploads/). Once uploaded, you can enter the file URL into the Add New Download screen.

How do I increase the maximum file upload size?

Please refer to this tutorial on how to increase the maximum file size in WordPress.

How do I add additional allowed file types to the file uploader?

Please refer to this tutorial on how to add additional file types to WordPress.

Usage

How do I output a single download link?

Use the shortcode [ddownload id="123"]. Replace the ID with the desired download ID, which can be found in the All Downloads screen.

How do I output a single download file size?

Use the shortcode [[ddownload_size id=“123″]]. Replace the ID with the desired download ID, which can be found in the All Downloads screen.

How do I output the number of times a single file has been downloaded?

Use the shortcode [[ddownload_count id=“123″]]. Replace the ID with the desired download ID, which can be found in the All Downloads screen.

How do I output a list of download links?

Use the shortcode [ddownload_list].

How do I output the number of times all of my files have been download?

Use the shortcode [[ddownload_total_count]].

Troubleshooting

Why when I click a download link does the download count not update?

This is usually caused by being logged in as an admin. Downloads by admin users are not automatically logged, however you can change this behaviour in the Settings screen under the Statistics tab.

If using the [[ddownload_total_count]] shortcode, the count is also cached by default and will only update every few minutes based on the Cache Duration, which is set in the Settings screen under the Advanced tab.

Why do I receive a 403 Forbidden error when I try to access a file directly?

Delightful Downloads automatically blocks direct access to files stored within the wp-content/uploads/delightful-downloads/ directory. To access the file you must use the [ddownload id="123"] shortcode.

Why do my files download with the incorrect file extension?

This is caused when WordPress does not know the file type your are serving to users. Please refer to this tutorial on how to add additional file types to WordPress.

Why do my remote files open directly in the browser?

When serving remote files it is not possible to set the correct headers which force a file to be downloaded, instead the browser will attempt to open them.

Why do my files show a file size of unknown?

This is caused when the file does not exist at the location specified or is inaccessible due to incorrect permissions.

———————————–Shortcodes———————-

[[ddownload_count]]

You can output the number of times a download has been downloaded using the [[ddownload_count]] shortcode. You must supply a download ID and optional attributes can be supplied to further customise the output. To output a download count using the default settings: [[ddownload_count id=“123″]]

You can find the ID of a download in the All Downloads screen.

All Downloads Screen

Attributes

The following are optional attributes that will modify the output.

format

Format the number (10000 becomes 10,000). Default: true.

[[ddownload_count id=“123″ format=“false“]]

———————————————–

[[ddownload_filesize]]

You can output the file size of a download using the [[ddownload_filesize]] shortcode. You must supply a download ID and optional attributes can be supplied to further customise the output. To output a file size using the default settings: [[ddownload_filesize id=“123″]]

You can find the ID of a download in the All Downloads screen.

All Downloads Screen

Attributes

The following are optional attributes that will modify the output.

format

Format the number (100000 becomes 97.66 KB). Default: true.

[[ddownload_filesize id=“123″ format=“false“]]

———————————————–

[ddownload_list]

You can output a list of downloads using the [ddownload_list] shortcode. Optional attributes can be supplied to customise the output. To output all published downloads, sorted by title in ascending order: [ddownload_list]

Attributes

The following are optional attributes that will modify the output.

cache

Cache the results. The amount of time the results are cached for can be set in the Settings screen under the Advanced tab. Default: true.

categories

Show only downloads within specified categories. Comma separated list of category slugs. Default: blank.

exclude_categories

Exclude downloads within specified categories. Comma separated list of category slugs. Default: blank.

exclude_tags

Exclude downloads within specified tags. Comma separated list of tag slugs. Default: blank.

limit

Limit the number of downloads to display. Set to 0 to show all results. Default: 0.

order

The order in which results are displayed. Set to either ASC or DESC. Default: ASC.

orderby

The option in which results should be sorted by. The available options are title, date, count (Download count), filesize, random. Default: title.

relation

When using both categories and tags together this attribute specifies the relationship between the two. The options are AND (Must be in all), OR (Must be in at least one). Default: AND.

style

The output style that should be used to display the list of downloads. The default options are title, title_date, title_downloads, title_filesize. Custom list styles can also be added, as detailed here.

tags

Show only downloads within specified tags. Comma separated list of tag slugs. Default: blank.

———————————————–

[[ddownload_total_count]]

You can output the total number of downloads for all files using the [[ddownload_total_count]] shortcode. Optional attributes can be supplied to further customise the output. To output the total download count with the default settings: [[ddownload_total_count]]

Attributes

The following are optional attributes that will modify the output.

cache

Cache the results. The amount of time the results are cached for can be set in the Settings screen under the Advanced tab. Default: true.

[[ddownload_total_count cache=“false“]]

days

Show the total download count over the last number of days. Set to 0 for all time. Default: 0.

[[ddownload_total_count days=“7″]]

format

Format the number (10000 becomes 10,000). Default: true.

[[ddownload_total_count format=“false“]]

———————————————–

[ddownload]

You can easily output a single download using the [ddownload] shortcode. You must supply a download ID and optional attributes can be supplied to modify the output. To output a download using the default settings: [ddownload id="123"]

You can find the ID of a download in the All Downloads screen.

All Downloads Screen

When no optional attributes are supplied Delightful Downloads will use the default values which can be configured in the Settings screen under the Shortcodes tab.

Settings Screen Shortcodes Tab

Attributes

The following optional attributes will modify the output on a per-download basis.

text

Set the text to display on links/buttons. You may use wildcards to dynamically enter data.

[ddownload id="123" text="Download my File"]

style

Set which output style to use. The default output styles are link, button or plain text. Custom output styles can also be added, as detailed here.

[ddownload id="123" style="link"]

button

Set which button to use if the style attribute is set to button. The default buttons are black, blue, grey, green, purple, red and yellow. Custom buttons can also be added, as detailed here.

[ddownload id="123" style="button" button="red"]

class

Add any custom CSS classes to the output.

[ddownload id="123" class="custom-class button-large"]

Examples

A link output with the file size displayed:

[ddownload id="123" style="link" text="Download (%filesize%)"]

A button output with the download count displayed:

[ddownload id="123" style="button" text="Download (%count%)"]

————————– Wildcards ————————————————–

Wildcards

Wildcards allow you to dynamically enter data associated with a download. The available wildcards are:

%count%

The number of times the download has been downloaded.

%date%

The date the download was published.

%ext%

The file extension.

%filename%

The file name of the download.

%filesize%

The file size of the download.

%id%

The unique identifier of the download.

%mime%

The mime type of the download.

%icon%

displays the file type icon for the extension.

%title%

The title of the download entered in the Add Download screen.

%description%

The ecxerpt of description of the download entered in the Add Download screen

%url%

The URL to the download file.

Where To Use Them

Wildcards can generate dynamic data in the following places:

The text attribute of the [ddownload] shortcode. Examples:

[ddownload text="Download - %date%"] [ddownload text="Download (%filesize%)"] [ddownload text="Download (Downloaded: %count%)"]

The Default Text field in the Settings screen under the Shortcodes tab.

Settings Screen Default Text

————————- List Types —————————————-

Choose the default list type for shortcode: ddownload_list in the admin dashboard:

title, title_date, title_count, title_filesize, title_ext_filesize,

title_date_ext_filesize,

title_ext_filesize_count,

icon_title_ext_filesize_count

————————- Styles for output ———————————

valid values for the shortcode attribute styles are. Can be found in includes/functions.php:

button = colored button with download or download Text wildcards

infobox = white box with grey border, filetype icon and all possible details

link = Download Link, displays DOWNLOAD or selected wildcards as text field

plain_text = Download URL (quicklink) as text

(Post ID:1401, erstellt am: 22.03.2020 11:31:24 von: Patrick Bärenfänger)


Besprechungs-Timer


Rinteln, Bückeburg, Kleve 2020 Mrz

Transportmittel: opelastra-st2018
Teilnehmer: P
Jahr: 2020 (Montag, 9. März 2020)
Dauer: 2   2 Tage (Übernachtungen)
Land: Deutschland (DE)  
Landinfo: Euro (EUR)  83.797.985  Berlin  4.890.363  +49  Germany (Europe)
Ziele: Rinteln   Bückeburg   Kleve  
Hotel, Infos: (H: Ringhotel Der Waldkater **** Rinteln, R: Gaststube im Hotel, A: Poolfahrzeug)
Fz-Details: OPEL     Deutschland  Opel Astra ST Kombi (Modell 2018) (Münster – Nordrhein-Westfalen) 2 Tage  
Beschreibung: H1: Modernes Einzelzimmer 251 – 80% abdunkelbar nur mit Wolldecken – breites Bett – 32Zoll-TV – Bademantel – winzige 2Pers-Sauna – kostenloser Parkplatz – sehr gutes Restaurant
Post-ID: 730
Bewertung: 7   7 von 10

Wordpress empfohlene Plugins März 2020

Die folgenden ergänzen um nützliche Funktionen. In der functions.php können im Rahmen des eingesetzten Themes (hier: mein Penguin Mod) weitere Features genutzt werden:

Antispam Bee Antispam-Plugin mit einem hochentwickelten Tool-Set für effektive tägliche Kommentar- und Trackback-Spam-Bekämpfung. Entwickelt mit Blick auf Datenschutz und Privatsphäre.

Barcode QRCode Generator QR-Codes anzeigen, keine externe Referenz QR-Code Telefonnummer direkt wählen

Categories Images Jeder Kategorie ein Bild zuweisen und über PHP-Code im Artikel anzeigen (Bannerbild)

Contact Form 7 Formulare (Kontakt, Feedback) per E-Mail an Website Admins senden, DSGVO-Einwilligung in den Formularen

Contact Form CFDB7 Speichert und verwaltet Nachrichten von Contact Form 7. DSGVO-Hinweis in Datenschutzerklärung erforderlich. Personendaten können gelöscht werden

CyberSEO lite Externe RSS-Feeds importieren (z.B. 1x pro Tag) und als Beiträge anzeigen und Kategorien/Tags zuweisen

Delightful Downloads Downloadlisten mit Kategorien, Dateitypen, Downloadzähler, Passwortschutz, Download-Ordner-Schutz (.htaccess)

Disable Google Fonts Google Fonts Online deaktivieren (enqueuing of fonts from Google used by WordPress core, default themes, Gutenberg, u.a.)

Easy Table of Contents Fügt eine benutzerfreundliche und vollautomatische Möglichkeit hinzu, ein aus dem Seiteninhalt generiertes Inhaltsverzeichnis zu erstellen und anzuzeigen.

Enable Media Replace Ermöglicht das Ersetzen von Medien-Dateien durch das Hochladen einer neuen Datei in den „Dateianhang-Details“ der WordPress-Mediathek.

Folder Gallery (PHP Mod PB) liest in einen Ordner gestellte Galerien aus und stellt sie mit Lightbox-Effekt und Diashow auf einer Page dar. Shortcode: [foldergallery folder="wp-content/uploads/../bilder/" title="Foto-Galerie" columns=auto width=280 height=200 thumbnails="all" show_thumbnail_captions=1 border=0 padding=0 margin=0]

Google XML Sitemaps erstellt Sitemaps zur SEO-freundlichen Darstellung bei Suchmaschinen

hashtagger Verwende hashtags, @usernames und $cashtags in Deinen Beiträgen, Schlagwörter werden automatisch daraus erstellt

ICS Calendar Integriere einen Live-Update-iCal (ICS) -Feed auf jede Seite mit einem Shortcode.

Simple User Avatar Erstelle ein Benutzer Avatar mit Bildern aus deiner Mediathek.

TablePress TablePress ermöglicht das Erstellen und Verwalten von Tabellen in Artikeln und Seiten, ohne dafür HTML-Code nutzen zu müssen, und fügt für die Besucher nützliche Funktionen hinzu.

W4 Post List Listendarstellung von allen Elementen und Shortcodes mit zahlreichen Filtern

WooCommerce Ein E-Commerce-Werkzeugkasten, um alles Mögliche zu verkaufen. Open Source Shop System

WordPress Importer Importiere Beiträge, Seiten, Kommentare, benutzerdefinierte Felder, Kategorien, Schlagwörter und mehr aus einer WordPress-Exportdatei.

WordPress Popular Posts Ein hochgradig anpassbares Widget, das die populärsten Beiträge auf deinem Blog anzeigt.
Popular Posts Seite mit Shortcodes

WP doodlez Terminabstimmung wie Doodle, verwendet aber keinen externen Webserver

WP GDPR Compliance unterstützt Betreiber von Websites und Webshops bei der Einhaltung der europäischen Datenschutzbestimmungen (DSGVO)

WP to Twitter Postings können hiermit automatisiert auf Twitter gepostet werden. Twitter API muss angelegt sein, Twitter-Konto aktiv

WP-Polls AJAX Umfrage system. Einfache Umfragen mit mehreren Antworten

WP-Print Öffnet eine druckfähige Version deines Beitrags (PHP Code erforderlich)

Z (PHP-Code) Duplicate Post Beitrag oder Seite duplizieren und als Kopie(Entwurf) ablegen

Z (PHP-Code) Lesezeit PHP-Codeschnipsel in der functions und meta-top.php, zeigt Anzahl Wörter im Artikel und geschätzte Lesezeit in Minuten:Sekunden an

Z (PHP-Code) Likes PHP-Codeschnipsel in der functions und meta-top.php, stellt Like-System und Counter dar.

Z (PHP-Code) Post Views PHP-Codeschnipsel in der functions und meta-top.php, zeigt Besuche pro Beitrag/Seite, Augen-Symbol: Inline HTML Image

Z (PHP-Code) Prüfungssystem PHP-Codeschnipsel in der functions.php und Custom Page Template. Speichert Ergebnisse der Prüfungen in der Datenbanktabelle Prüfungen, um daraus Zertifikate und Zertifizierungs-Status festzuhalten. S. Datenschutz-Erklärung

Z (PHP-Code) Related Posts PHP-Code in meta-bottom-php: Ähnliche Beiträge unter dem Posting anzeigen (Zufallsposts nach Kategorie und nach Schlagwörtern)

(Post ID:1438, erstellt am: 07.03.2020 20:54:52 von: Patrick Bärenfänger)


SSD auf größere SSD klonen - Clonezilla

wer einen Rechner oder ein Notebook hat und es durch Einsatz einer größeren SSD aufrüsten möchte, kann das unter Beibehalten aller Daten und Einstellungen tun. Werkzeuge hierfür gibt es viele.

Bereits vor vielen Jahren hat sich für diese Aktion das Open-Source Projekt Clonezilla bewährt.
Auf der Webseite des Projekts: https://clonezilla.org kann man sich dazu eine sogenannte „Live CD“ herunterladen. Diese enthält eine aktuelle Linux Distribution und startet auch von einem USB-Stick. Seit Rechner mit UEFI statt BIOS ausgestattet sind, sind die Datenträger anders (GPT) partitioniert und statt des MBR Master Boot Record gibt es eine versteckte Startpartition mit eben dieser UEFI Firmware. Nun zur Checkliste, wie die Umstellung erfolgreich wird:

Checkliste SSD klonen auf größeres Ersatzteil

* Rufus herunterladen, am Besten die Portable Version (rufus.ie)

* Die Clonezilla Distribution als .ISO herunterladen (clonezilla.org)

* Mit Rufus einen Boot-Datenträger erstellen (ein 8GB USB-Stick oder größer ist geeignet)

* Die neue SSD in ein externes USB3 Gehäuse stecken und per USB3 anschließen

* Den Rechner ausschalten und wieder einschalten, mit F12 in das Bootmenü und den Stick auswählen

* Linux bootet vom Stick, mit „1“ kommt man zu Clonezilla

* Tastatur und Sprache auf deutsch, 102 Tasten, deutsch einstellen

* Wichtig: Erweiterten Modus auswählen, sonst bleibt die neue SSD wie die alte klein partitioniert

* Quell-SSD (die alte, SDA) auswählen, dann Ziel SSD selektieren (die neue SDB)

* Bei den Einstellungen ankreuzen, dass die Partitionen proportional angepasst werden

* Vorgang beginnen (2x mit Y bestätigen)

* Rechner herunterfahren

* Stick und externe Platte entfernen und umbauen (alte SSD raus, neue rein)

* Neustart des Rechners

* Gerätemanager, die alte Hardware deinstallieren (es wird noch die alte SSD angezeigt)

* Neustart des Rechners

* diskmgmt.msc aufrufen (Datenträgerverwaltung) und die Partitionen kontrollieren. Ich habe noch die Wiederherstellungspartition am ende gelöscht und den Platz dem C: Laufwerk zugeschlagen. Wenns mal klemmt, kann ich von einem Recovery Stick starten)

* Nun sieht man überall die neue große SSD und kann sie nutzen

Windows Aktivierung

Hat man Windows 10 Pro, wird der Rechner bei Internetkontakt wieder über die OEMInfo im UEFi aktiviert, ist Windows 10 Enterprise in Nutzung, muss der Firmen Aktivierungsserver (KMS) erreichbar sein.


Stade, Schneverdingen, Scheeßel 2020 Mrz

Transportmittel: opelastra-st2018
Teilnehmer: P
Jahr: 2020 (Donnerstag, 5. März 2020)
Dauer: 1   1 Tage (Übernachtungen)
Land: Deutschland (DE)  
Landinfo: Euro (EUR)  83.797.985  Berlin  4.890.363  +49  Germany (Europe)
Ziele: Stade   Schneverdingen   Scheeßel  
Hotel, Infos: (H: Landhaus Höpen **** Schneverdingen, A: Poolfahrzeug)
Fz-Details: OPEL     Deutschland  Opel Astra ST Kombi (Modell 2018) (Münster – Nordrhein-Westfalen) 2 Tage  
Beschreibung: Zimmer 45 – altes Doppelzimmer – 32Zoll-TV – abdunkelbar mit Bettdecke – Sauna – Dampfbad neu – Schwimmbad – Bademantel – 0.5 Mineralwasser – Parkplatz – gutes Frühstück – WLAN langsam und mit Content-Filter
Post-ID: 725
Bewertung: 7   7 von 10

Bokel, Lohbarbek, Stade 2020 Mrz

Transportmittel: opelastra-st2018
Teilnehmer: P
Jahr: 2020 (Montag, 2. März 2020)
Dauer: 3   3 Tage (Übernachtungen)
Land: Deutschland (DE)  
Landinfo: Euro (EUR)  83.797.985  Berlin  4.890.363  +49  Germany (Europe)
Ziele: Bokel   Lohbarbek   Stade  
Hotel, Infos: (H: Hotel Bokel-Mühle am See **** Bokel, A: Poolfahrzeug)
Fz-Details: OPEL     Deutschland  Opel Astra ST Kombi (Modell 2018) (Münster – Nordrhein-Westfalen) 2 Tage  
Beschreibung: Doppelzimmer 27 im Retro-Stil – ruhig – W48-Telefon – 42Zoll-TV – Kingsize-Bett – abdunkelbar mit 2 Decken – Bademantel – Sauna – Parkplatz kostenlos – keine Getränke
Post-ID: 717
Bewertung: 8   8 von 10