<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Webentwicklung &#8211; Everswan</title>
	<atom:link href="https://everswan.de/category/webentwicklung/feed/" rel="self" type="application/rss+xml" />
	<link>https://everswan.de</link>
	<description>Unternehmensseite von Everswan</description>
	<lastBuildDate>Wed, 27 Nov 2019 17:19:00 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>Anzahl der WordPress Revisionen begrenzen</title>
		<link>https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/</link>
					<comments>https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/#respond</comments>
		
		<dc:creator><![CDATA[Pascal Schwahn]]></dc:creator>
		<pubDate>Fri, 07 Dec 2018 11:31:10 +0000</pubDate>
				<category><![CDATA[Webentwicklung]]></category>
		<guid isPermaLink="false">https://everswan.de/?p=754</guid>

					<description><![CDATA[Anzahl der WordPress Revisionen begrenzen Was sind Revisionen WordPress erstellt bei jeder Änderung eines Beitrags eine sogenannte Revision. Das ist letztendlich nichts anderes als eine Sicherung des letzten Standes, damit man Änderungen nachträglich wieder rückgängig machen kann. Somit ermöglichen Revisionen nachträglich immer zu einer älteren Version eines Beitrages zurückzukehren. Allerdings sammeln sich dadurch beim  [...]]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-1 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-0 fusion_builder_column_3_4 3_4 fusion-three-fourth fusion-column-first" style="--awb-bg-size:cover;width:75%;width:calc(75% - ( ( 4% ) * 0.75 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-1"><h1>Anzahl der WordPress Revisionen begrenzen</h1>
<h2>Was sind Revisionen</h2>
<p>WordPress erstellt bei jeder Änderung eines Beitrags eine sogenannte Revision. Das ist letztendlich nichts anderes als eine Sicherung des letzten Standes, damit man Änderungen nachträglich wieder rückgängig machen kann.</p>
<p>Somit ermöglichen Revisionen nachträglich immer zu einer älteren Version eines Beitrages zurückzukehren.</p>
<p>Allerdings sammeln sich dadurch beim Schreiben eines Artikels häufig duzende Revisionen an. Diese sind nicht nur unübersichtlich, sondern belegen auch unnötig Speicherplatz und machen die Website langsamer. Standardmäßig begrenzt WordPress die Anzahl von Revisionen für einen Beitrag nicht, auch wenn dies durchaus sinnvoll ist.</p>
<p>Persönlich begrenze ich die Anzahl der Revisionen auf meinen Websiten immer auf 5 bis 10 Stück. Wenn eine neue Revision hinzukommt wird einfach immer die Älteste gelöscht. Somit ist es möglich immer 5 bis 10 Sicherungen von alten Beitragsständen vorzuhalten, ohne dabei die Website zu verlangsamen oder die Datenbank vollzumüllen.</p>
<h2>Begrenzen der Revisionen über die wp-config.php</h2>
<p>Wieviele Revisionen WordPress für einen Beitrag speichert lässt sich durch folgenden Eintrag in der <strong>wp-config.php</strong>, die ihr ihm Root Verzeichnis eurer WordPress Installation findet, begrenzen.</p>
<p>Am besten fügt ihr den Eintrag direkt im oberen Bereich der wp-config.php ein. Direkt nach den Zeilen:</p>
<pre><style type="text/css" scopped="scopped">.fusion-syntax-highlighter-1 > .CodeMirror, .fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-1 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-1 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_1" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_1" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_1" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-php">* @package WordPress
*/</textarea></div></pre>
<p>In diesem Beispiel werden zehn Revisionen gespeichert:</p>
<pre><style type="text/css" scopped="scopped">.fusion-syntax-highlighter-2 > .CodeMirror, .fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-2 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-2 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_2" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_2" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_2" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-php">define('WP_POST_REVISIONS', 10);</textarea></div></pre>
<p>Um Revisionen komplett zu deaktivieren:<style type="text/css" scopped="scopped">.fusion-syntax-highlighter-3 > .CodeMirror, .fusion-syntax-highlighter-3 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-3 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-3 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-3 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_3" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_3" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_3" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-php">define('WP_POST_REVISIONS', false);</textarea></div></p>
<p>Es ist auch möglich alle X Sekunden eine neue Revision automatisch erstellen zu lassen. Im Beispiel alle 600 Sekunden (10 Minuten):<style type="text/css" scopped="scopped">.fusion-syntax-highlighter-4 > .CodeMirror, .fusion-syntax-highlighter-4 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-4 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-4 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-4 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_4" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_4" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_4" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-php">define('AUTOSAVE_INTERVAL', 600);</textarea></div></p>
</div><div class="fusion-sharing-box fusion-sharing-box-1 boxed-icons has-taglines layout-floated layout-medium-floated layout-small-floated" style="background-color:rgba(0,91,183,0);padding:0;--awb-layout:row;--awb-alignment-small:space-between;" data-title="Kategorie: Webentwicklung" data-description="Anzahl der WordPress Revisionen begrenzen
Was sind Revisionen
WordPress erstellt bei jeder Änderung eines Beitrags eine sogenannte Revision. Das ist letztendlich nichts anderes als eine Sicherung des letzten Standes, damit man Änderungen nachträglich wieder rückgängig machen kann.

Somit ermöglichen Revisionen nachträglich immer zu einer älteren Version eines Beitrages zurückzukehren.

Allerdings sammeln sich dadurch beim Schreiben eines Artikels häufig duzende" data-link="https://blog.everswan.de/wordpress-multisite-mit-ssl/" data-image="https://blog.everswan.de/wp-content/uploads/sites/4/2017/07/Thumbnail.jpg"><h4 class="tagline" style="color:#000000;">Teile diesen Beitrag!</h4><div class="fusion-social-networks sharingbox-shortcode-icon-wrapper sharingbox-shortcode-icon-wrapper-1 boxed-icons"><span><a href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;t=Kategorie%3A%20Webentwicklung" target="_blank" rel="noreferrer" title="Facebook" aria-label="Facebook" data-placement="top" data-toggle="tooltip" data-title="Facebook"><i class="fusion-social-network-icon fusion-tooltip fusion-facebook awb-icon-facebook" style="color:#ffffff;background-color:#3b5998;border-color:#3b5998;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://x.com/intent/post?text=Kategorie%3A%20Webentwicklung&amp;url=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_blank" rel="noopener noreferrer" title="X" aria-label="X" data-placement="top" data-toggle="tooltip" data-title="X"><i class="fusion-social-network-icon fusion-tooltip fusion-twitter awb-icon-twitter" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;description=Anzahl%20der%20WordPress%20Revisionen%20begrenzen%0D%0AWas%20sind%20Revisionen%0D%0AWordPress%20erstellt%20bei%20jeder%20%C3%84nderung%20eines%20Beitrags%20eine%20sogenannte%20Revision.%20Das%20ist%20letztendlich%20nichts%20anderes%20als%20eine%20Sicherung%20des%20letzten%20Standes%2C%20damit%20man%20%C3%84nderungen%20nachtr%C3%A4glich%20wieder%20r%C3%BCckg%C3%A4ngig%20machen%20kann.%0D%0A%0D%0ASomit%20erm%C3%B6glichen%20Revisionen%20nachtr%C3%A4glich%20immer%20zu%20einer%20%C3%A4lteren%20Version%20eines%20Beitrages%20zur%C3%BCckzukehren.%0D%0A%0D%0AAllerdings%20sammeln%20sich%20dadurch%20beim%20Schreiben%20eines%20Artikels%20h%C3%A4ufig%20duzende&amp;media=https%3A%2F%2Fblog.everswan.de%2Fwp-content%2Fuploads%2Fsites%2F4%2F2017%2F07%2FThumbnail.jpg" target="_blank" rel="noopener noreferrer" title="Pinterest" aria-label="Pinterest" data-placement="top" data-toggle="tooltip" data-title="Pinterest"><i class="fusion-social-network-icon fusion-tooltip fusion-pinterest awb-icon-pinterest" style="color:#ffffff;background-color:#bd081c;border-color:#bd081c;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="mailto:?subject=Kategorie%3A%20Webentwicklung&amp;body=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_self" title="E-Mail" aria-label="E-Mail" data-placement="top" data-toggle="tooltip" data-title="E-Mail"><i class="fusion-social-network-icon fusion-tooltip fusion-mail awb-icon-mail" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span></div></div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-1 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-last" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% ) * 0.25 ) );"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-0 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-1 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Über Pascal Schwahn</span></h2></div><div class="fusion-person person fusion-person-left fusion-person-1 fusion-person-icon-top" style="--awb-pic-style-color:#000000;--awb-pic-borderradius:50%;--awb-margin-top:0px;--awb-margin-right:0px;--awb-margin-bottom:0px;--awb-margin-left:0px;--awb-social-box-border-top:0px;--awb-social-box-border-right:0px;--awb-social-box-border-bottom:0px;--awb-social-box-border-left:0px;--awb-social-box-border-color:var(--awb-color3);--awb-social-box-border-color-hover:var(--awb-color4);--awb-social-box-colors-hover:rgba(232,232,232,0.8);--awb-social-icon-boxed-colors:#e8e8e8;--awb-social-icon-colors:#bebdbd;--awb-social-icon-colors-hover:rgba(190,189,189,0.8);"><div class="person-shortcode-image-wrapper"><div class="person-image-container hover-type-none person-rounded-overflow" style="-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;border:1px solid #f6f6f6;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;"><img fetchpriority="high" decoding="async" class="person-img img-responsive wp-image-327" width="2217" height="2328" src="https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg" srcset="https://everswan.de/wp-content/uploads/2017/08/autor_image-200x210.jpg 200w, https://everswan.de/wp-content/uploads/2017/08/autor_image-400x420.jpg 400w, https://everswan.de/wp-content/uploads/2017/08/autor_image-600x630.jpg 600w, https://everswan.de/wp-content/uploads/2017/08/autor_image-800x840.jpg 800w, https://everswan.de/wp-content/uploads/2017/08/autor_image-1200x1260.jpg 1200w, https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg 2217w" sizes="(max-width: 800px) 100vw, 1200px" /></div></div><div class="person-desc"><div class="person-author"><div class="person-author-wrapper"><span class="person-name"></span><span class="person-title"></span></div></div><div class="person-content fusion-clearfix">Ich habe mein Abitur mit dem Schwerpunkt Informatik gemacht, arbeite seitdem in einer Unternehmensberatung und studiere Wirtschaftsinformatik an der TU Darmstadt. Ich lerne jeden Tag etwas neues und will hier mein Wissen mit Dir teilen! Wieso solltest Du kostbare Zeit durch Recherche verschwenden, wenn ich Dein Problem schon gelöst habe? Diese Frage treibt mich an Dir mit meinem Wissen hier weiterzuhelfen. </div></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-1 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-2 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Letzte Beiträge</span></h2></div><div class="fusion-recent-posts fusion-recent-posts-1 avada-container layout-default layout-columns-1 recent_posts"><section class="fusion-columns columns fusion-columns-1 columns-1"><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/" aria-label="Anzahl der WordPress Revisionen begrenzen" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="anzahl_wordpress_revisionen" srcset="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Anzahl der WordPress Revisionen begrenzen</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:07:24+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/" aria-label="WordPress Plugin UpdraftPlus auf HostEurope Websiten" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="WordPress Plugin “UpdraftPlus” auf HostEurope Websiten" srcset="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">WordPress Plugin UpdraftPlus auf HostEurope Websiten</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:12:56+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/rich-dad-poor-dad-buchreview/" aria-label="Rich Dad Poor Dad &#8211; Buchreview" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="Rich Dad Poor Dad - Buchreview" srcset="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Rich Dad Poor Dad &#8211; Buchreview</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:14:52+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/startseite-als-unternehmenshomepage-beispiel/" aria-label="Everswan Startseite als Unternehmenshomepage Beispiel" class="hover-type-zoomin"><img decoding="async" width="632" height="441" src="https://everswan.de/wp-content/uploads/2017/09/Thumbnail-632x441.gif" class="attachment-recent-posts size-recent-posts" alt="Everswan Startseite als Unternehmenshomepage Beispiel" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Everswan Startseite als Unternehmenshomepage Beispiel</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:16:27+00:00</span></div></article></section></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-2 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-widget-area awb-widget-area-element fusion-widget-area-1 fusion-content-widget-area" style="--awb-title-size:20px;--awb-title-color:#005bb7;--awb-padding:0px 0px 0px 0px;"><div class="fusion-additional-widget-content"></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-clearfix"></div></div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Plugin UpdraftPlus auf HostEurope Websiten</title>
		<link>https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/</link>
					<comments>https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/#respond</comments>
		
		<dc:creator><![CDATA[Pascal Schwahn]]></dc:creator>
		<pubDate>Wed, 31 Oct 2018 08:58:07 +0000</pubDate>
				<category><![CDATA[Webentwicklung]]></category>
		<guid isPermaLink="false">https://everswan.de/?p=726</guid>

					<description><![CDATA[WordPress Plugin "UpdraftPlus" auf HostEurope Websiten Da es für Kunden oft sehr viel einfacher ist ihre Backups direkt in WordPress verwalten zu können, statt im doch oft sehr unübersichtlichen Backend des Hostinganbieters, empfehle ich gerne Plugins wie UpdraftPlus. Diese Plugins sind meistens auch schon in ihrer kostenlosen Variante mehr als ausreichend und sparen somit dem Kunden viel Ärger.  [...]]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-2 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-2 fusion_builder_column_3_4 3_4 fusion-three-fourth fusion-column-first" style="--awb-bg-size:cover;width:75%;width:calc(75% - ( ( 4% ) * 0.75 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-2"><h1>WordPress Plugin &#8222;UpdraftPlus&#8220; auf HostEurope Websiten</h1>
<p>Da es für Kunden oft sehr viel einfacher ist ihre Backups direkt in WordPress verwalten zu können, statt im doch oft sehr unübersichtlichen Backend des Hostinganbieters, empfehle ich gerne Plugins wie <a href="https://updraftplus.com/" target="_blank" rel="noopener">UpdraftPlus</a>. Diese Plugins sind meistens auch schon in ihrer kostenlosen Variante mehr als ausreichend und sparen somit dem Kunden viel Ärger.</p>
<p>Auch bei meinem letzten Kunden sollte somit dieses Plugin installiert werden und da dieser seine Website bei <a href="https://www.hosteurope.de/" target="_blank" rel="noopener">HostEurope</a> liegen hat war das auch mehr als nötig. Das Backend bei <a href="https://www.hosteurope.de/" target="_blank" rel="noopener">HostEurope</a> ist nämlich nicht zu vergleichen mit einem CPanel und kann somit auch Entwicklern Kopfschmerzen bereiten.</p>
<p>Ich installierte also <a href="https://updraftplus.com/" target="_blank" rel="noopener">UpdraftPlus</a> für meinen Kunden und wollte auch direkt die erste Sicherung anlegen. Der Backupprozess blieb allerdings recht bald schon stehen und bewegte sich kein bisschen weiter. Ein Blick in die Logs eröffnete folgenden letzten erfolgreichen Schritt:</p>
<style type="text/css" scopped="scopped">.fusion-syntax-highlighter-5 > .CodeMirror, .fusion-syntax-highlighter-5 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-5 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-5 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-5 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_5" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_5" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_5" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-sh">0322.344 (1) Adding batch to zip file (UpdraftPlus_BinZip): over 500 files added on this batch (5.1 MB, 8638 files batched, 501 (501) added so far); re-opening (prior size: 0 KB)</textarea></div>
<h2></h2>
<h2>Problembehebung</h2>
<p>Nach ein wenig Recherche fand ich heraus, dass das Problem wohl bei Websiten auf <a href="https://www.hosteurope.de/" target="_blank" rel="noopener">HostEurope</a> auftritt. Dieser Verdacht wurde mir dann auch durch einen <a href="https://wordpress.org/support/topic/backup-doesnt-work/" target="_blank" rel="noopener">Forenbeitrag</a> bestätigt. Nach diesem <a href="https://wordpress.org/support/topic/backup-doesnt-work/" target="_blank" rel="noopener">Forenbeitrag</a> funktioniert die Erzeugung der ZIP-Dateien bei <a href="https://www.hosteurope.de/" target="_blank" rel="noopener">HostEurope</a> nicht und somit kann das Backup nie abgeschlossen werden.</p>
<p>Das Problem kann allerdings relativ einfach behoben werden:</p>
<ol>
<li>Öffne deine &#8222;<strong>wp-config.php</strong>&#8220; (Diese findest du im Rootverzeichnis deiner WordPress Installation)</li>
<li>Füge folgenden Code in die &#8222;wp-config.php&#8220; Datei ein:<style type="text/css" scopped="scopped">.fusion-syntax-highlighter-6 > .CodeMirror, .fusion-syntax-highlighter-6 > .CodeMirror .CodeMirror-gutters {background-color:var(--awb-color1);}.fusion-syntax-highlighter-6 > .CodeMirror .CodeMirror-gutters { background-color: var(--awb-color2); }.fusion-syntax-highlighter-6 > .CodeMirror .CodeMirror-linenumber { color: var(--awb-color8); }</style><div class="fusion-syntax-highlighter-container fusion-syntax-highlighter-6 fusion-syntax-highlighter-theme-light" style="opacity:0;margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;font-size:14px;border-width:1px;border-style:solid;border-color:#e0dede;"><div class="syntax-highlighter-copy-code"><span class="syntax-highlighter-copy-code-title" data-id="fusion_syntax_highlighter_6" style="font-size:14px;">Kopieren</span></div><label for="fusion_syntax_highlighter_6" class="screen-reader-text">Syntax Highlighter</label><textarea class="fusion-syntax-highlighter-textarea" id="fusion_syntax_highlighter_6" data-readOnly="nocursor" data-lineNumbers="1" data-lineWrapping="1" data-theme="default" data-mode="text/x-php">define('UPDRAFTPLUS_NO_BINZIP', true);</textarea></div></li>
<li>Speichere die Datei</li>
</ol>
<p>Nun funktioniert das WordPress Plugin <a href="https://updraftplus.com/" target="_blank" rel="noopener">UpdraftPlus</a> auch auf <a href="https://www.hosteurope.de/" target="_blank" rel="noopener">HostEurope</a> Websiten.</p>
</div><div class="fusion-sharing-box fusion-sharing-box-2 boxed-icons has-taglines layout-floated layout-medium-floated layout-small-floated" style="background-color:rgba(0,91,183,0);padding:0;--awb-layout:row;--awb-alignment-small:space-between;" data-title="Kategorie: Webentwicklung" data-description="WordPress Plugin &quot;UpdraftPlus&quot; auf HostEurope Websiten
Da es für Kunden oft sehr viel einfacher ist ihre Backups direkt in WordPress verwalten zu können, statt im doch oft sehr unübersichtlichen Backend des Hostinganbieters, empfehle ich gerne Plugins wie UpdraftPlus. Diese Plugins sind meistens auch schon in ihrer kostenlosen Variante mehr als ausreichend und sparen somit dem Kunden viel Ärger.

Auch bei" data-link="https://blog.everswan.de/wordpress-multisite-mit-ssl/" data-image="https://blog.everswan.de/wp-content/uploads/sites/4/2017/07/Thumbnail.jpg"><h4 class="tagline" style="color:#000000;">Teile diesen Beitrag!</h4><div class="fusion-social-networks sharingbox-shortcode-icon-wrapper sharingbox-shortcode-icon-wrapper-2 boxed-icons"><span><a href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;t=Kategorie%3A%20Webentwicklung" target="_blank" rel="noreferrer" title="Facebook" aria-label="Facebook" data-placement="top" data-toggle="tooltip" data-title="Facebook" data-><i class="fusion-social-network-icon fusion-tooltip fusion-facebook awb-icon-facebook" style="color:#ffffff;background-color:#3b5998;border-color:#3b5998;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://x.com/intent/post?text=Kategorie%3A%20Webentwicklung&amp;url=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_blank" rel="noopener noreferrer" title="X" aria-label="X" data-placement="top" data-toggle="tooltip" data-title="X" data-><i class="fusion-social-network-icon fusion-tooltip fusion-twitter awb-icon-twitter" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;description=WordPress%20Plugin%20%26quot%3BUpdraftPlus%26quot%3B%20auf%20HostEurope%20Websiten%0D%0ADa%20es%20f%C3%BCr%20Kunden%20oft%20sehr%20viel%C2%A0einfacher%20ist%20ihre%C2%A0Backups%20direkt%20in%20WordPress%20verwalten%C2%A0zu%C2%A0k%C3%B6nnen%2C%20statt%20im%20doch%20oft%20sehr%20un%C3%BCbersichtlichen%20Backend%20des%20Hostinganbieters%2C%20empfehle%20ich%20gerne%20Plugins%20wie%20UpdraftPlus.%20Diese%20Plugins%20sind%20meistens%20auch%20schon%20in%20ihrer%20kostenlosen%20Variante%20mehr%20als%20ausreichend%20und%20sparen%20somit%20dem%20Kunden%20viel%20%C3%84rger.%0D%0A%0D%0AAuch%20bei&amp;media=https%3A%2F%2Fblog.everswan.de%2Fwp-content%2Fuploads%2Fsites%2F4%2F2017%2F07%2FThumbnail.jpg" target="_blank" rel="noopener noreferrer" title="Pinterest" aria-label="Pinterest" data-placement="top" data-toggle="tooltip" data-title="Pinterest" data-><i class="fusion-social-network-icon fusion-tooltip fusion-pinterest awb-icon-pinterest" style="color:#ffffff;background-color:#bd081c;border-color:#bd081c;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="mailto:?subject=Kategorie%3A%20Webentwicklung&amp;body=https%3A%2F%2Fblog.everswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_self" title="E-Mail" aria-label="E-Mail" data-placement="top" data-toggle="tooltip" data-title="E-Mail"><i class="fusion-social-network-icon fusion-tooltip fusion-mail awb-icon-mail" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span></div></div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-3 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-last" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% ) * 0.25 ) );"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-3 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-3 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Über Pascal Schwahn</span></h2></div><div class="fusion-person person fusion-person-left fusion-person-2 fusion-person-icon-top" style="--awb-pic-style-color:#000000;--awb-pic-borderradius:50%;--awb-margin-top:0px;--awb-margin-right:0px;--awb-margin-bottom:0px;--awb-margin-left:0px;--awb-social-box-border-top:0px;--awb-social-box-border-right:0px;--awb-social-box-border-bottom:0px;--awb-social-box-border-left:0px;--awb-social-box-border-color:var(--awb-color3);--awb-social-box-border-color-hover:var(--awb-color4);--awb-social-box-colors-hover:rgba(232,232,232,0.8);--awb-social-icon-boxed-colors:#e8e8e8;--awb-social-icon-colors:#bebdbd;--awb-social-icon-colors-hover:rgba(190,189,189,0.8);"><div class="person-shortcode-image-wrapper"><div class="person-image-container hover-type-none person-rounded-overflow" style="-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;border:1px solid #f6f6f6;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;"><img decoding="async" class="person-img img-responsive wp-image-327" width="2217" height="2328" src="https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg" srcset="https://everswan.de/wp-content/uploads/2017/08/autor_image-200x210.jpg 200w, https://everswan.de/wp-content/uploads/2017/08/autor_image-400x420.jpg 400w, https://everswan.de/wp-content/uploads/2017/08/autor_image-600x630.jpg 600w, https://everswan.de/wp-content/uploads/2017/08/autor_image-800x840.jpg 800w, https://everswan.de/wp-content/uploads/2017/08/autor_image-1200x1260.jpg 1200w, https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg 2217w" sizes="(max-width: 800px) 100vw, 1200px" /></div></div><div class="person-desc"><div class="person-author"><div class="person-author-wrapper"><span class="person-name"></span><span class="person-title"></span></div></div><div class="person-content fusion-clearfix">Ich habe mein Abitur mit dem Schwerpunkt Informatik gemacht, arbeite seitdem in einer Unternehmensberatung und studiere Wirtschaftsinformatik an der TU Darmstadt. Ich lerne jeden Tag etwas neues und will hier mein Wissen mit Dir teilen! Wieso solltest Du kostbare Zeit durch Recherche verschwenden, wenn ich Dein Problem schon gelöst habe? Diese Frage treibt mich an Dir mit meinem Wissen hier weiterzuhelfen. </div></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-4 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-4 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Letzte Beiträge</span></h2></div><div class="fusion-recent-posts fusion-recent-posts-2 avada-container layout-default layout-columns-1 recent_posts"><section class="fusion-columns columns fusion-columns-1 columns-1"><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/" aria-label="Anzahl der WordPress Revisionen begrenzen" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="anzahl_wordpress_revisionen" srcset="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Anzahl der WordPress Revisionen begrenzen</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:07:24+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/" aria-label="WordPress Plugin UpdraftPlus auf HostEurope Websiten" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="WordPress Plugin “UpdraftPlus” auf HostEurope Websiten" srcset="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">WordPress Plugin UpdraftPlus auf HostEurope Websiten</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:12:56+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/rich-dad-poor-dad-buchreview/" aria-label="Rich Dad Poor Dad &#8211; Buchreview" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="Rich Dad Poor Dad - Buchreview" srcset="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Rich Dad Poor Dad &#8211; Buchreview</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:14:52+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/startseite-als-unternehmenshomepage-beispiel/" aria-label="Everswan Startseite als Unternehmenshomepage Beispiel" class="hover-type-zoomin"><img decoding="async" width="632" height="441" src="https://everswan.de/wp-content/uploads/2017/09/Thumbnail-632x441.gif" class="attachment-recent-posts size-recent-posts" alt="Everswan Startseite als Unternehmenshomepage Beispiel" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Everswan Startseite als Unternehmenshomepage Beispiel</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:16:27+00:00</span></div></article></section></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-5 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-widget-area awb-widget-area-element fusion-widget-area-2 fusion-content-widget-area" style="--awb-title-size:20px;--awb-title-color:#005bb7;--awb-padding:0px 0px 0px 0px;"><div class="fusion-additional-widget-content"></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-clearfix"></div></div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress Multisite mit SSL erstellen</title>
		<link>https://everswan.de/wordpress-multisite-mit-ssl/</link>
					<comments>https://everswan.de/wordpress-multisite-mit-ssl/#respond</comments>
		
		<dc:creator><![CDATA[Pascal Schwahn]]></dc:creator>
		<pubDate>Tue, 04 Jul 2017 13:26:09 +0000</pubDate>
				<category><![CDATA[Webentwicklung]]></category>
		<guid isPermaLink="false">https://blog.everswan.de/?p=227</guid>

					<description><![CDATA[Wordpress Multisite mit SSL erstellen Vorgeschichte Bei der Erstellung meines Blogs bin ich über einige Probleme gestolpert, die mich einige Recherchearbeit und Zeit gekostet haben. Damit du diese Zeit nicht auch nochmal aufwenden musst will ich dir hier eine Schritt für Schritt Anleitung an die Hand geben. Du wirst lernen wie man eine günstige,  [...]]]></description>
										<content:encoded><![CDATA[<div class="fusion-fullwidth fullwidth-box fusion-builder-row-3 nonhundred-percent-fullwidth non-hundred-percent-height-scrolling" style="--awb-border-radius-top-left:0px;--awb-border-radius-top-right:0px;--awb-border-radius-bottom-right:0px;--awb-border-radius-bottom-left:0px;--awb-flex-wrap:wrap;" ><div class="fusion-builder-row fusion-row"><div class="fusion-layout-column fusion_builder_column fusion-builder-column-4 fusion_builder_column_3_4 3_4 fusion-three-fourth fusion-column-first" style="--awb-bg-size:cover;width:75%;width:calc(75% - ( ( 4% ) * 0.75 ) );margin-right: 4%;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-text fusion-text-3"><h1>WordPress Multisite mit SSL erstellen</h1>
<h2>Vorgeschichte</h2>
<p>Bei der Erstellung meines Blogs bin ich über einige Probleme gestolpert, die mich einige Recherchearbeit und Zeit gekostet haben. Damit du diese Zeit nicht auch nochmal aufwenden musst will ich dir hier eine Schritt für Schritt Anleitung an die Hand geben.</p>
<p>Du wirst lernen wie man eine günstige, stabile und vor allem <strong>sichere WordPress Multisite</strong> aufbaut.</p>
<h2>Wahl des Hosters</h2>
<p>Ich habe einige berühmte und weniger berühmte Hoster miteinander verglichen. Dabei waren mir folgende Punkte besonders wichtig:</p>
<ul>
<li>Support</li>
<li>Preis/Leistung</li>
<li>Backup</li>
<li>Konfigurierbarkeit</li>
<li>Standort</li>
</ul>
<p>Da es im Internet sehr viele gute und leicht zu findende Vergleiche gibt werde ich hier nur kurz auf meine Wahl eingehen.<br />
Ich habe mich für <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> entschieden. Meiner Meinung nach verdienen die <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> deutlich mehr Aufmerksamkeit als ihnen bis jetzt zuteil wird.</p>
<h3>Support</h3>
<p>Der Support ist <strong>kompetent, schnell und immer freundlich</strong> und konnte mir bis jetzt (derzeitig ca. 1 Jahr) wirklich bei jedem Problem helfen und hat darüber hinaus auch noch weitere Tipps und Tricks zur <strong>Optimierung</strong> mit mir geteilt.</p>
<h3>Preis/Leistung</h3>
<p>Preislich befinden sie die Serverprofis eher im unteren Feld, was sich allerdings nicht auf die Leistung und den Umfang der Angebote auswirkt. Eine Private Website mit 10 GB Speicherplatz, SSL, unbegrenztem Transfervolumen, 1 .de Domain, 20 E-Mail Accounts, 5 FTP Accounts und 5 MySQL Datenbanken auf SSD Festplatten gibt es bereits ab <strong>2,09€/Monat</strong>. Bei diesem Tarif kann man jeden Monat kündigen und bleibt somit vollkommen <strong>flexibel</strong> (Es gibt sogar Angebote ab <strong>0,39€/Monat</strong>). Wenn man sich länger binden will wird der monatliche Preis sogar noch geringer. Auch günstige und nochmal umfassendere <strong>Business Tarife</strong> sind vorhanden (ab <strong>4,95€/Monat</strong> für Kleinunternehmer).<br />
Die Server sind immer <strong>schnell</strong> erreichbar und erbringen eine <strong>konstante Leistung</strong>.</p>
<p>Zudem bietet <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis </a>eine <strong>30 Tage Geld zurück Garantie</strong>, weshalb du sie <strong>vollkommen Risikofrei</strong> testen kannst.</p>
<p>Ein weiterer großer Pluspunkt ist, dass bei den <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> <strong>automatisch </strong><a href="https://letsencrypt.org/" target="_blank" rel="noopener">Let&#8217;s Encrypt</a> Zertifikate für jede Domain und auch für jede Subdomain ausgestellt werden. Dies macht das verwenden von <strong>https bzw. SSL kinderleicht</strong> und vollkommen stressfrei. <strong>Ich gehe davon aus, dass der Hoster deiner Wahl dies auch beherrscht.</strong></p>
<h3>Backup</h3>
<p>Da es immer mal schnell passieren kann, dass man einen falschen Knopf drückt oder irgendetwas anderes schief geht waren mir häufige Backups sehr wichtig. Diese sichern nicht nur deinen Website Content sondern schonen auch deine Nerven falls mal etwas schief geht (ich spreche da aus Erfahrung).<br />
<a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> macht <strong>tägliche Backups</strong> aller deiner Daten und behält diese <strong>30 Tage</strong> lang. Das einspielen eines Backups ist über den Sicherungsassistenten kinderleicht.</p>
<h3>Konfigurierbarkeit</h3>
<p><a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> verwenden das allzeit bekannte und bewährte <strong>CPanel</strong>, wodurch eine sehr komfortable und einfache Konfigurierbarkeit gewährleistet wird. Zudem wird auch ein <strong>ScriptInstaller</strong> angeboten, mit dem 250 Scripts mit nur einem Klick installiert werden können (dazu gehört auch WordPress). Man kann so ziemlich alles über das CPanel konfigurieren was man will. Findet man jedoch mal etwas was nicht geht, oder wo man sich nicht ganz sicher ist, hilft einem der Kundensupport schnell und kompetent weiter.</p>
<h3>Standort</h3>
<p>Der Standort ist bei den <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> <strong>Deutschland</strong>. Genauer gesagt <strong>München</strong>. Auch das war mir wichtig, da ich somit einen Vertrag mit einem deutschen Unternehmen eingehe, welches auch an die <strong>deutschen Gesetze</strong> gebunden ist und zudem die Serverreaktionszeit für meine Zielgruppe (Deutschland/Europa) erhöht.</p>
<h2>Installieren von WordPress</h2>
<p>Wenn wir uns nun für einen Hoster entschieden und dort Webspace gemietet haben kommen wir schon zur Installation von WordPress. Dafür melden wir uns im CPanel an und scrollen dort bis an das Seitenende. Wir klicken auf &#8222;WordPress&#8220;.</p>
<p><img decoding="async" class="wp-image-306 size-full aligncenter" src="https://everswan.de/wp-content/uploads/2017/08/Scriptinstaller.jpg" alt="CPanel ScriptInstaller" width="903" height="299" /></p>
<p>Wir gelangen so in den ScriptInstaller und können dort durch das Klicken auf <strong><em>Install Now</em></strong> WordPress installieren.</p>
<p>Hier ist nun folgendes zu beachten:</p>
<ul>
<li>Als Protokoll wählen wir <em><strong>https://</strong></em> aus (bei <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">ServerProfis</a> werden automatisch Let&#8217;s Encrypt Zertifikate vergeben)</li>
<li>Als Domain wählst du deine Domain aus dem Dropdown Menü aus</li>
<li>Das Verzeichnis lassen wir leer</li>
<li>Denke dir einen passenden Seiten Namen und Beschreibung aus (beides kann später geändert werden)</li>
<li>Mache unbedingt ein Häkchen bei <strong><em>Multisite (WPMU) aktivieren</em></strong></li>
<li>Denke dir Benutzerdaten für den Admin Account aus</li>
<li>Wähle die Sprache in der du WordPress installieren willst</li>
<li>Ich würde empfehlen das Plugin &#8222;Limit Login Attempts&#8220; aus Sicherheitsgründen mitzuinstallieren</li>
<li>Alles Weitere kannst du so lassen wie es ist</li>
</ul>
<p>Drücke nun auf <strong><em>Installieren</em></strong> und warte bis WordPress fertig installiert ist.</p>
<p>Mit der URL: <em>https://[deine Domain]/wp-admin</em> kommst du nun in den administrativen Teil von WordPress.</p>
<p>Wenn du die WordPress Multisite im Format <em>https://[deine Domain]/[WordPress Seite]</em> nutzen möchtest bist du jetzt bereits fertig! Du kannst nun durch den Menüpunkt oben links <em><strong>Meine Websites</strong></em> <strong>-&gt;</strong> <em><strong>Netzwerkverwaltung</strong></em> <strong>-&gt;</strong> <em><strong>Websites</strong> </em>deine WordPress Seiten erstellen und verwalten.</p>
<p><span style="color: #005bb7;">Herzlichen Glückwunsch! Du hast erfolgreich deine erste verschlüsselte WordPress Multisite erstellt! Hinterlasse mir doch bitte einen <strong>Kommentar</strong>, damit ich meinen Content immer weiter verbessern und dir das nächste mal noch besser behilflich sein kann!</span></p>
<h2>WordPress Multisite mit Subdomains</h2>
<p>Wenn du die WordPress Multisite im Format <em>https://[WordPress Seite].[deine Domain]</em> nutzen möchtest, müssen wir noch ein paar Anpassungen vornehmen.</p>
<p>Zuerst müssen wir WordPress mitteilen, dass wir Subdomains nutzen wollen. Dafür müssen wir uns zunächst wieder im <strong>CPanel einloggen</strong> und öffnen dort nun die <strong>Dateiverwaltung</strong>.</p>
<p><img decoding="async" class="aligncenter wp-image-303 size-full" src="https://everswan.de/wp-content/uploads/2017/08/Dateien.jpg" alt="CPanel Dateien" width="885" height="244" /></p>
<p>Dort navigieren wir in den <em>public_html</em> Ordner, oder, wenn du WordPress auf einer Addon Domain installiert hast, in das jeweilige Verzeichnis deiner Domain. Wir befinden uns nun in dem <strong><em>Installationsverzeichnis von WordPress</em></strong>.</p>
<h3>Anpassung der .htaccess Datei</h3>
<p>Wir suchen hier nun die <strong>.htaccess</strong> Datei. Falls du diese nicht finden solltest musst du oben rechts unter <strong>Einstellungen ein Häkchen bei <em>Verborgene Dateien anzeigen (dotfiles)</em></strong> machen.</p>
<p><img decoding="async" class="aligncenter wp-image-304 size-full" src="https://everswan.de/wp-content/uploads/2017/08/dateiverwaltung_einstellungen.jpg" alt="Dateiverwaltung Einstellung" width="500" height="336" /></p>
<p>Wir machen nun einen <strong>Rechtsklick</strong> auf die .htaccess Datei und wählen <strong><em>Edit</em></strong> aus. In dem darauf folgenden Dialogfeld klicken wir wieder unten rechts auf <strong><em>Edit</em></strong>.</p>
<p>Wir ersetzen den Inhalt mit diesem Code:</p>
<p>[code language=&#8220;html&#8220;]RewriteEngine On<br />
RewriteBase /<br />
RewriteRule ^index\.php$ &#8211; [L]</p>
<p># add a trailing slash to /wp-admin<br />
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]</p>
<p>RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteRule ^ &#8211; [L]
RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^(.*\.php)$ $1 [L]
RewriteRule . index.php [L][/code]</p>
<h3>Anpassung der wp-config.php</h3>
<p>Nachdem wir diese Änderungen <strong>gespeichert</strong> haben kehren wir zurück in das Verzeichnis, wo wir auch die .htaccess Datei gefunden haben.</p>
<p>Dort suchen wir nun die <strong>wp-config.php</strong> und editieren auch diese. Hier tauschen wir den <strong><em>Multisite</em></strong> Codeblock durch folgenden Block aus:</p>
<p>[code language=&#8220;php&#8220;]/* Multisite */<br />
define( &#8218;WP_ALLOW_MULTISITE&#8216;, true );<br />
define(&#8218;MULTISITE&#8216;, true);<br />
define(&#8218;SUBDOMAIN_INSTALL&#8216;, true);<br />
define(&#8218;DOMAIN_CURRENT_SITE&#8216;, &#8218;[deine Domain]&#8216;);<br />
define(&#8218;PATH_CURRENT_SITE&#8216;, &#8218;/&#8216;);<br />
define(&#8218;SITE_ID_CURRENT_SITE&#8216;, 1);<br />
define(&#8218;BLOG_ID_CURRENT_SITE&#8216;, 1);[/code]</p>
<p>und <strong>speichern</strong> auch diese Datei.</p>
<h3>Wildcard Subdomain anlegen</h3>
<p>Wir schließen nun wieder die Dateiverwaltung und kommen zurück in unser <strong>CPanel</strong>.</p>
<p>Dort klicken wir nun im Bereich <em><strong>Domains</strong></em> auf <strong><em>Subdomains</em></strong>.</p>
<p><img decoding="async" class="aligncenter wp-image-305 size-full" src="https://everswan.de/wp-content/uploads/2017/08/domains.jpg" alt="CPanel Domains" width="885" height="241" /></p>
<p>dort gibst du als Subdomain nun <strong>*</strong> ein und wählst die jeweilige Domain aus.</p>
<p><span style="color: #ff5757;">Achtung! Als Basisverzeichnis musst du hier das WordPress Installationsverzeichnis angeben (normalerweise /public_html).</span></p>
<p>Dann nur noch auf <em><strong>Adressliste erstellen</strong></em> klicken und alle Seiten, die du über WordPress anlegst werden adressierbar.</p>
<p><span style="color: #005bb7;">Zu beachten ist hier, dass es manchmal etwas dauern kann (bis zu 24 Std.), bis deine Seiten erreichbar sind, da die Subdomains erst vom DNS Server registriert werden müssen.</span></p>
<h3>SSL auf WordPress Subdomain Multisites verwenden</h3>
<p>Da <a href="https://letsencrypt.org/" target="_blank" rel="noopener">Let&#8217;s Encrypt</a> keine SSL Zertifikate für Wildcard Subdomains ausstellt sind zu dem derzeitigen Zeitpunkt deine neu erstellten WordPress Seiten auch noch nicht mit <strong>https</strong> verschlüsselt. Um dies zu ändern gibt es jedoch einen <strong>Trick</strong>.</p>
<p>Alle WordPress Seiten die du im Administratorbereich über <em><strong>Meine Websites</strong></em> <strong>-&gt;</strong> <strong><em>Netzwerkverwaltung</em> -&gt;</strong> <em><strong>Websites</strong></em> erstellt hast sind nichts anderes als Subdomains im Format <em>https://[Seitenname].[deine Domain]</em>.</p>
<p>Wenn du nun also wieder im <strong>CPanel</strong> unter <strong>Subdomains</strong> eine solche Subdomain erstellst, wird für diese von <a href="https://letsencrypt.org/" target="_blank" rel="noopener">Let&#8217;s Encrypt</a> ein Zertifikat ausgestellt und du kannst die Seite unter <strong>https</strong> verwenden.</p>
<p>Dafür gibst du diesmal <strong>kein *</strong> als Subdomain ein sondern den <strong>[Seitennamen]</strong> und wählst dann wieder deine Domain aus. <span style="color: #ff5757;">Auch hier ist wieder wichtig, dass als Basisverzeichnis das WordPress Installationsverzeichnis angegeben wird.</span></p>
<p><span style="color: #005bb7;">Zu beachten ist hier, dass es manchmal etwas dauern kann (bis zu 24 Std.), bis eure Seiten erreichbar sind, da die Subdomains erst vom DNS Server registriert werden müssen. Auch die SSL Zertifikate von Let&#8217;s Encrypt brauchen ein wenig (sie werden jede Nacht von <a href="https://service.serverprofis.net/aff.php?aff=697" target="_blank" rel="noopener">Serverprofis</a> ausgestellt).</span></p>
<p>Als letzten Schritt musst du jetzt nur noch <strong>WordPress</strong> dazu <strong>zwingen</strong> immer <strong>https statt http</strong> zu verwenden. Dies ist leicht durch <strong>Plugins</strong> realisierbar. Ich verwende für diesen Zweck das Plugin <a href="https://de.wordpress.org/plugins/really-simple-ssl/" target="_blank" rel="noopener">Really Simple SSL</a> das ich Netzwerkweit aktiviert habe. Zusätzlich kann ich das Plugin <a href="https://de.wordpress.org/plugins/ssl-insecure-content-fixer/" target="_blank" rel="noopener">SSL Insecure Content Fixer</a> empfehlen, welches dafür sorgt, dass auch jeglicher Content auf deiner Website immer über https geladen wird.</p>
<p><span style="color: #005bb7;">Herzlichen Glückwunsch! Du hast erfolgreich deine erste verschlüsselte WordPress Multisite erstellt! Hinterlasse mir doch bitte einen <strong>Kommentar</strong>, damit ich meinen Content immer weiter verbessern und dir das nächste mal noch besser behilflich sein kann!</span></p>
</div><div class="fusion-sharing-box fusion-sharing-box-3 boxed-icons has-taglines layout-floated layout-medium-floated layout-small-floated" style="background-color:rgba(0,91,183,0);padding:0;--awb-layout:row;--awb-alignment-small:space-between;" data-title="Kategorie: Webentwicklung" data-description="Wordpress Multisite mit SSL erstellen
Vorgeschichte
Bei der Erstellung meines Blogs bin ich über einige Probleme gestolpert, die mich einige Recherchearbeit und Zeit gekostet haben. Damit du diese Zeit nicht auch nochmal aufwenden musst will ich dir hier eine Schritt für Schritt Anleitung an die Hand geben.

Du wirst lernen wie man eine günstige, stabile und vor allem" data-link="https://everswan.de/wordpress-multisite-mit-ssl/" data-image="https://blog.everswan.de/wp-content/uploads/sites/4/2017/07/Thumbnail.jpg"><h4 class="tagline" style="color:#000000;">Teile diesen Beitrag!</h4><div class="fusion-social-networks sharingbox-shortcode-icon-wrapper sharingbox-shortcode-icon-wrapper-3 boxed-icons"><span><a href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Feverswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;t=Kategorie%3A%20Webentwicklung" target="_blank" rel="noreferrer" title="Facebook" aria-label="Facebook" data-placement="top" data-toggle="tooltip" data-title="Facebook" data-><i class="fusion-social-network-icon fusion-tooltip fusion-facebook awb-icon-facebook" style="color:#ffffff;background-color:#3b5998;border-color:#3b5998;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://x.com/intent/post?text=Kategorie%3A%20Webentwicklung&amp;url=https%3A%2F%2Feverswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_blank" rel="noopener noreferrer" title="X" aria-label="X" data-placement="top" data-toggle="tooltip" data-title="X" data-><i class="fusion-social-network-icon fusion-tooltip fusion-twitter awb-icon-twitter" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="https://pinterest.com/pin/create/button/?url=https%3A%2F%2Feverswan.de%2Fwordpress-multisite-mit-ssl%2F&amp;description=Wordpress%20Multisite%20mit%20SSL%20erstellen%0D%0AVorgeschichte%0D%0ABei%20der%20Erstellung%20meines%20Blogs%20bin%20ich%20%C3%BCber%20einige%20Probleme%20gestolpert%2C%20die%20mich%20einige%20Recherchearbeit%20und%20Zeit%20gekostet%20haben.%20Damit%20du%20diese%20Zeit%20nicht%20auch%20nochmal%20aufwenden%20musst%20will%20ich%20dir%20hier%20eine%20Schritt%20f%C3%BCr%20Schritt%20Anleitung%20an%20die%20Hand%20geben.%0D%0A%0D%0ADu%20wirst%20lernen%20wie%20man%20eine%20g%C3%BCnstige%2C%20stabile%20und%20vor%20allem&amp;media=https%3A%2F%2Fblog.everswan.de%2Fwp-content%2Fuploads%2Fsites%2F4%2F2017%2F07%2FThumbnail.jpg" target="_blank" rel="noopener noreferrer" title="Pinterest" aria-label="Pinterest" data-placement="top" data-toggle="tooltip" data-title="Pinterest" data-><i class="fusion-social-network-icon fusion-tooltip fusion-pinterest awb-icon-pinterest" style="color:#ffffff;background-color:#bd081c;border-color:#bd081c;border-radius:4px;" aria-hidden="true"></i></a></span><span><a href="mailto:?subject=Kategorie%3A%20Webentwicklung&amp;body=https%3A%2F%2Feverswan.de%2Fwordpress-multisite-mit-ssl%2F" target="_self" title="E-Mail" aria-label="E-Mail" data-placement="top" data-toggle="tooltip" data-title="E-Mail"><i class="fusion-social-network-icon fusion-tooltip fusion-mail awb-icon-mail" style="color:#ffffff;background-color:#000000;border-color:#000000;border-radius:4px;" aria-hidden="true"></i></a></span></div></div><div class="fusion-clearfix"></div></div></div><div class="fusion-layout-column fusion_builder_column fusion-builder-column-5 fusion_builder_column_1_4 1_4 fusion-one-fourth fusion-column-last" style="--awb-bg-size:cover;width:25%;width:calc(25% - ( ( 4% ) * 0.25 ) );"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-6 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-top:0px;--awb-padding-right:0px;--awb-padding-bottom:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-5 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Über Pascal Schwahn</span></h2></div><div class="fusion-person person fusion-person-left fusion-person-3 fusion-person-icon-top" style="--awb-pic-style-color:#000000;--awb-pic-borderradius:50%;--awb-margin-top:0px;--awb-margin-right:0px;--awb-margin-bottom:0px;--awb-margin-left:0px;--awb-social-box-border-top:0px;--awb-social-box-border-right:0px;--awb-social-box-border-bottom:0px;--awb-social-box-border-left:0px;--awb-social-box-border-color:var(--awb-color3);--awb-social-box-border-color-hover:var(--awb-color4);--awb-social-box-colors-hover:rgba(232,232,232,0.8);--awb-social-icon-boxed-colors:#e8e8e8;--awb-social-icon-colors:#bebdbd;--awb-social-icon-colors-hover:rgba(190,189,189,0.8);"><div class="person-shortcode-image-wrapper"><div class="person-image-container hover-type-none person-rounded-overflow" style="-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;border:1px solid #f6f6f6;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;"><img decoding="async" class="person-img img-responsive wp-image-327" width="2217" height="2328" src="https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg" srcset="https://everswan.de/wp-content/uploads/2017/08/autor_image-200x210.jpg 200w, https://everswan.de/wp-content/uploads/2017/08/autor_image-400x420.jpg 400w, https://everswan.de/wp-content/uploads/2017/08/autor_image-600x630.jpg 600w, https://everswan.de/wp-content/uploads/2017/08/autor_image-800x840.jpg 800w, https://everswan.de/wp-content/uploads/2017/08/autor_image-1200x1260.jpg 1200w, https://everswan.de/wp-content/uploads/2017/08/autor_image.jpg 2217w" sizes="(max-width: 800px) 100vw, 1200px" /></div></div><div class="person-desc"><div class="person-author"><div class="person-author-wrapper"><span class="person-name"></span><span class="person-title"></span></div></div><div class="person-content fusion-clearfix">Ich habe mein Abitur mit dem Schwerpunkt Informatik gemacht, arbeite seitdem in einer Unternehmensberatung und studiere Wirtschaftsinformatik an der TU Darmstadt. Ich lerne jeden Tag etwas neues und will hier mein Wissen mit Dir teilen! Wieso solltest Du kostbare Zeit durch Recherche verschwenden, wenn ich Dein Problem schon gelöst habe? Diese Frage treibt mich an Dir mit meinem Wissen hier weiterzuhelfen. </div></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-7 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-title title fusion-title-6 fusion-sep-none fusion-title-text fusion-title-size-two" style="--awb-margin-bottom:10px;"><h2 class="fusion-title-heading title-heading-left" style="margin:0;"><span style="color: #005bb7;">Letzte Beiträge</span></h2></div><div class="fusion-recent-posts fusion-recent-posts-3 avada-container layout-default layout-columns-1 recent_posts"><section class="fusion-columns columns fusion-columns-1 columns-1"><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/anzahl-der-wordpress-revisionen-begrenzen/" aria-label="Anzahl der WordPress Revisionen begrenzen" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="anzahl_wordpress_revisionen" srcset="https://everswan.de/wp-content/uploads/2018/12/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/12/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Anzahl der WordPress Revisionen begrenzen</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:07:24+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/wordpress-plugin-updraftplus-auf-hosteurope-websiten/" aria-label="WordPress Plugin UpdraftPlus auf HostEurope Websiten" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="WordPress Plugin “UpdraftPlus” auf HostEurope Websiten" srcset="https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/10/WordPress-Plugin-UpdraftPlus-auf-HostEurope-Websiten-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">WordPress Plugin UpdraftPlus auf HostEurope Websiten</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:12:56+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/rich-dad-poor-dad-buchreview/" aria-label="Rich Dad Poor Dad &#8211; Buchreview" class="hover-type-zoomin"><img decoding="async" width="700" height="441" src="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif" class="attachment-recent-posts size-recent-posts" alt="Rich Dad Poor Dad - Buchreview" srcset="https://everswan.de/wp-content/uploads/2018/02/Thumbnail-320x202.gif 320w, https://everswan.de/wp-content/uploads/2018/02/Thumbnail-700x441.gif 700w" sizes="(max-width: 700px) 100vw, 700px" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Rich Dad Poor Dad &#8211; Buchreview</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:14:52+00:00</span></div></article><article class="post fusion-column column col col-lg-12 col-md-12 col-sm-12"><div class="fusion-flexslider fusion-flexslider-loading flexslider flexslider-hover-type-zoomin"><ul class="slides"><li><a href="https://everswan.de/startseite-als-unternehmenshomepage-beispiel/" aria-label="Everswan Startseite als Unternehmenshomepage Beispiel" class="hover-type-zoomin"><img decoding="async" width="632" height="441" src="https://everswan.de/wp-content/uploads/2017/09/Thumbnail-632x441.gif" class="attachment-recent-posts size-recent-posts" alt="Everswan Startseite als Unternehmenshomepage Beispiel" /></a></li></ul></div><div class="recent-posts-content"><span class="entry-title" style="display: none;">Everswan Startseite als Unternehmenshomepage Beispiel</span><span class="vcard" style="display: none;"><span class="fn"><a href="https://everswan.de/author/pascal-schwahn/" title="Beiträge von Pascal Schwahn" rel="author">Pascal Schwahn</a></span></span><span class="updated" style="display:none;">2019-11-27T17:16:27+00:00</span></div></article></section></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-builder-row fusion-builder-row-inner fusion-row"><div class="fusion-layout-column fusion_builder_column_inner fusion-builder-nested-column-8 fusion_builder_column_inner_1_1 1_1 fusion-one-full fusion-column-first fusion-column-last" style="--awb-padding-right:0px;--awb-padding-left:10px;--awb-bg-size:cover;--awb-border-color:#005bb7;--awb-border-top:5px;--awb-border-right:5px;--awb-border-bottom:5px;--awb-border-left:5px;--awb-border-style:solid;--awb-margin-bottom:30px;"><div class="fusion-column-wrapper fusion-flex-column-wrapper-legacy"><div class="fusion-widget-area awb-widget-area-element fusion-widget-area-3 fusion-content-widget-area" style="--awb-title-size:20px;--awb-title-color:#005bb7;--awb-padding:0px 0px 0px 0px;"><div class="fusion-additional-widget-content"></div></div><div class="fusion-clearfix"></div></div></div></div><div class="fusion-clearfix"></div></div></div></div></div>
]]></content:encoded>
					
					<wfw:commentRss>https://everswan.de/wordpress-multisite-mit-ssl/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
