<?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>Wordpress Archive - Pixelfriedhof</title>
	<atom:link href="https://pixelfriedhof.com/en/tag/wordpress-en/feed/" rel="self" type="application/rss+xml" />
	<link>https://pixelfriedhof.com/en/tag/wordpress-en/</link>
	<description>IT-Blog, Fotoblog, Travelblog, Nerdstuff</description>
	<lastBuildDate>Fri, 06 Jan 2023 10:31:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>

<image>
	<url>https://pixelfriedhof.com/wp-content/uploads/2022/02/cropped-My-project-3-32x32.png</url>
	<title>Wordpress Archive - Pixelfriedhof</title>
	<link>https://pixelfriedhof.com/en/tag/wordpress-en/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>ERR_TOO_MANY_REDIRECTS on WordPress after Go Live + Domain change</title>
		<link>https://pixelfriedhof.com/en/err_too_many_redirects-on-wordpress-after-go-live-and-domain-change/</link>
					<comments>https://pixelfriedhof.com/en/err_too_many_redirects-on-wordpress-after-go-live-and-domain-change/#respond</comments>
		
		<dc:creator><![CDATA[megaadmin]]></dc:creator>
		<pubDate>Sun, 01 Jan 2023 09:48:16 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">https://pixelfriedhof.com/?p=6927</guid>

					<description><![CDATA[<p>You just released your new wordpress site from development into productive state and changed the domain. But now, some links don’t work and redirect in infinity. We can fix it in the databases backend.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/err_too_many_redirects-on-wordpress-after-go-live-and-domain-change/">ERR_TOO_MANY_REDIRECTS on WordPress after Go Live + Domain change</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>You just released your new wordpress site from development into productive state and changed the domain. But now, some links don’t work and redirect in infinity. We can fix it in the databases backend.</p>



<p><strong>First of all TAKE A BACKUP BEFOREHAND if possible at this time.</strong><br><br>Now go into your database.<br>Search for tables which data includes the old domain name.<br><br>For example search for <mark class="kt-highlight">http://development.mydomain.com</mark> if that was the subdomain or domain your site was initially being build up on.<br><br>Now exchange all these entries against the new domain. Make sure to also check if you will need to change the http to https for example change this to <mark class="kt-highlight">https://myproductivedomain.com</mark>.</p>



<p>Quick tip:<br><br>The SQL statement to do so per identified table is:<br><br>UPDATE <mark class="kt-highlight">tablename</mark> SET <mark class="kt-highlight">columnname</mark> = REPLACE(<mark class="kt-highlight">columnname</mark>,&#8221;<mark class="kt-highlight">http://development.mydomain.com</mark>&#8220;,&#8221;<mark class="kt-highlight">https://myproductivedomain.com</mark>&#8220;)<br><br><strong>BUT TAKE A BACKUP BEFOREHAND!</strong><br><br><mark class="kt-highlight">Things highlighted</mark> must be adapted to your own domains, tables, columns of course.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/err_too_many_redirects-on-wordpress-after-go-live-and-domain-change/">ERR_TOO_MANY_REDIRECTS on WordPress after Go Live + Domain change</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://pixelfriedhof.com/en/err_too_many_redirects-on-wordpress-after-go-live-and-domain-change/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>WordPress database very large, table WP_OPTIONS huge</title>
		<link>https://pixelfriedhof.com/en/wordpress-database-very-large-table-wp_options-huge/</link>
					<comments>https://pixelfriedhof.com/en/wordpress-database-very-large-table-wp_options-huge/#respond</comments>
		
		<dc:creator><![CDATA[megaadmin]]></dc:creator>
		<pubDate>Wed, 19 Feb 2020 15:07:10 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[phpMyAdmin]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[wp_options]]></category>
		<guid isPermaLink="false">https://pixelfriedhof.com/?p=2274</guid>

					<description><![CDATA[<p>My Wordpress database suddenly blocked 920 MB disk space. The table "wp_options" alone had grown to 600 MB. A simple optimization of the table on database level solves the problem.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/wordpress-database-very-large-table-wp_options-huge/">WordPress database very large, table WP_OPTIONS huge</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>My WordPress database suddenly blocked 920 MB disk space. The table &#8220;wp_options&#8221; alone had grown to 600 MB. A simple optimization of the table on database level solves the problem.</p>



<h2 class="wp-block-heading">Others crack a nut with a sledgehammer</h2>



<p>When I googled the symptom for the first time, I naturally found several articles that suggested a solution to this problem. The only problem was that all of these posts were looking for the cause in certain WordPress functions, some of which I didn&#8217;t even use or which were simply not responsible for the behavior on my case. In other posts, the autoload functions were often blamed for the too large database. Other posts recommended plugins for optimizing the WordPress instance. All nonsense and clickbait, as it turned out.</p>



<p>My problem first appeared after using my WordPress page for about 4 weeks. Before that I had migrated my blog from Joomla to WordPress via a plugin and added features for multilingualism. In short: During the last weeks my database was very busy and a lot of garbage accumulated.</p>



<h2 class="wp-block-heading">Solved by optimizing the tables in phpMyAdmin</h2>



<p>First we open our database in phpMyAdmin. On the top level we sort the contained tables by their size and identify the biggest space wasters:</p>



<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="1061" height="730" src="https://pixelfriedhof.com/wp-content/uploads/2020/02/phpmyadmin1-1-1061x730.png" alt="Identify storage-hungry tables in the WordPress database" class="wp-image-2278"/><figcaption>Identify storage-hungry tables in the WordPress database</figcaption></figure>



<p class="has-text-color has-background has-very-light-gray-color has-pale-pink-background-color"><strong>Attention: </strong>At the next step we can easily click wrong options and thus possibly delete whole tables. As a precaution I recommend to make a backup first.</p>



<p>Now we mark the largest tables of our WordPress database with a check mark in the selection box and now click on the drop-down menu next to the &#8220;Select All&#8221; button at the bottom of the screen.</p>



<p>Here we select the entry &#8220;optimized table&#8221;.</p>



<figure class="wp-block-image size-large"><img decoding="async" width="1067" height="730" src="https://pixelfriedhof.com/wp-content/uploads/2020/02/phpmyadmin2-1-1067x730.png" alt="Optimization of the tables in phpMyAdmin" class="wp-image-2280"/><figcaption>Optimization of the tables in phpMyAdmin</figcaption></figure>



<p>phpMyAdmin now optimizes the table, or recreates it cleanly, if direct optimization is impossible. In my case the table shrunk from 602 MB to a reasonable 1.5 MB.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/wordpress-database-very-large-table-wp_options-huge/">WordPress database very large, table WP_OPTIONS huge</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://pixelfriedhof.com/en/wordpress-database-very-large-table-wp_options-huge/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Centrally manage and internationalize Amazon Affiliate Links</title>
		<link>https://pixelfriedhof.com/en/centrally-manage-and-internationalize-affiliate-links-2/</link>
					<comments>https://pixelfriedhof.com/en/centrally-manage-and-internationalize-affiliate-links-2/#respond</comments>
		
		<dc:creator><![CDATA[megaadmin]]></dc:creator>
		<pubDate>Tue, 04 Feb 2020 08:10:32 +0000</pubDate>
				<category><![CDATA[IT & Technology]]></category>
		<category><![CDATA[Affiliate]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon Affiliate]]></category>
		<category><![CDATA[Amazon Marketplace]]></category>
		<category><![CDATA[geni.us]]></category>
		<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://pixelfriedhof.com/?p=1894</guid>

					<description><![CDATA[<p>With geni.us there is now a possibility to automatically forward your Amazon affiliate links to the right international marketplace for the visitor. Furthermore, you can manage your affiliate links centrally in one interface. Gone are the days when we had to change expired links among dozens of youtube videos and republish a shitload of links to the different country sites.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/centrally-manage-and-internationalize-affiliate-links-2/">Centrally manage and internationalize Amazon Affiliate Links</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>With geni.us there is now a possibility to automatically forward your Amazon affiliate links to the right international marketplace for the visitor. Furthermore, you can manage your affiliate links centrally in one interface. Gone are the days when we had to change expired links among dozens of youtube videos and republish a shitload of links to the different country sites.</p>



<h2 class="wp-block-heading">Automatic internationalization</h2>



<p>With <a href="https://geni.us/JOgWy6" target="_blank" rel="noreferrer noopener" aria-label="geni.us (öffnet in neuem Tab)">geni.us</a> we can create an internationally functional affiliate link very quickly.<br> First we have to provide all our tracking IDs of the various affiliate programs once.</p>



<p>Next, we can create our first link for a product. For this it is sufficient to enter a normal Amazon link (not necessarily an affiliate link) in the portal.  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a>  will now use this link to search for the matching product and products at all Amazon marketplaces we have set up.</p>



<p> <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a>  now creates a short link for its own service and stores the different marketplaces as dynamic forwarding targets.</p>



<p>The shortlink then looks like this, for example: <a href="https://geni.us/WjaEcr" target="_blank" rel="noreferrer noopener" aria-label="https://geni.us/WjaEcr (öffnet in neuem Tab)">https://geni.us/WjaEcr</a> (Amazon Affiliate Link)<br><br>Depending on the country a potential visitor comes from, geni.us will now forward the link to the internationalized marketplace that suits him. This ensures that really every link call also leads to monetization.</p>



<h2 class="wp-block-heading">Simple central administration</h2>



<p>However, the international monetization on the different marketplaces is not the only advantage of  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a>. For example, if you provide links to products on different channels, you spend a lot of time keeping every single link up to date and may have to replace the links on hundreds of videos on YouTube individually.<br>With  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a> , these &#8220;maintenance tasks&#8221; are reduced to a minimum because the geni.us short code remains the same everywhere. In the  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a>  link portal, the product stored on the link is only changed once. That&#8217; it.</p>



<p>A &#8220;Bad-Link-Checker&#8221; also informs us if a linked product is no longer available on one of the marketplaces. </p>



<h2 class="wp-block-heading">Monetization of all website links through a script for WordPress</h2>



<p>Particularly useful is the possibility to have all outgoing Amazon links of a WordPress page automatically internationalized by geni.us. For this purpose, the official geni.us plugin &#8220;Amazon Link Engine&#8221; can be used. <br> https://de.wordpress.org/plugins/amazon-link-engine/<br><br>The nicest thing is that this plugin also automatically adjusts the outgoing link of popular WordPress plugins like AAWP. So I don&#8217;t need to care about internationalization and Geo-IP in these plugins anymore.</p>



<p>An AAWP product is embedded as usual and the outgoing link runs automatically through  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a>:</p>



<div class="aawp">

            
            
<div class="aawp-product aawp-product--horizontal"  data-aawp-product-asin="B07GJJYRXX" data-aawp-product-id="10709" data-aawp-tracking-id="daniel-net-21" data-aawp-product-title="DJI Mavic 2 Pro - Drohne mit Hasselblad L1D-20c Kamera Video 4K HDR 10 bits 31 Minuten Flugzeit 20 MP 1  CMOS-Sensor Hyperlapse Omnidirektionale Hinderniserkennung Ultra-hohe Bildqualität - Grau">

    
    <div class="aawp-product__thumb">
        <a class="aawp-product__image-link"
           href="https://www.amazon.de/dp/B07GJJYRXX?tag=daniel-net-21&linkCode=ogi&th=1&psc=1" title="DJI Mavic 2 Pro - Drohne mit Hasselblad L1D-20c Kamera, Video 4K HDR 10 bits, 31 Minuten Flugzeit, 20 MP 1' CMOS-Sensor,..." rel="nofollow noopener sponsored" target="_blank">
            <img decoding="async" class="aawp-product__image" src="https://pixelfriedhof.com/wp-content/plugins/aawp/public/image.php?url=YUhSMGNITTZMeTl0TG0xbFpHbGhMV0Z0WVhwdmJpNWpiMjB2YVcxaFoyVnpMMGt2TlRGbmVsZGtRakI0VlV3dVgxTk1NVFl3WHk1cWNHYz18MTc2NDI4NTk4Ng=" alt="DJI Mavic 2 Pro - Drohne mit Hasselblad L1D-20c Kamera, Video 4K HDR 10 bits, 31 Minuten Flugzeit, 20 MP 1' CMOS-Sensor,..."  />
        </a>

            </div>

    <div class="aawp-product__content">
        <a class="aawp-product__title" href="https://www.amazon.de/dp/B07GJJYRXX?tag=daniel-net-21&linkCode=ogi&th=1&psc=1" title="DJI Mavic 2 Pro - Drohne mit Hasselblad L1D-20c Kamera, Video 4K HDR 10 bits, 31 Minuten Flugzeit, 20 MP 1' CMOS-Sensor,..." rel="nofollow noopener sponsored" target="_blank">
            DJI Mavic 2 Pro - Drohne mit Hasselblad L1D-20c Kamera, Video 4K HDR 10 bits, 31 Minuten Flugzeit, 20 MP 1" CMOS-Sensor,...*        </a>
        <div class="aawp-product__description">
            <ul><li>MAVIC 2 PRO: Mavic 2 Pro ist mit der Hasselblad L1D-20c Kamera ausstatten; die Natural Colour Solution Technologie hilft mit...</li><li>VERBESSERTE DETAILS: Mit dem 1 Zoll CMOS-Sensor steht der Mavic 2 Pro, im Vergleich zum Vorgänger Mavic Pro, eine viermal größere...</li></ul>        </div>
    </div>

    <div class="aawp-product__footer">

        <div class="aawp-product__pricing">
            
                            <span class="aawp-product__price aawp-product__price--current">541,05 EUR</span>
            
                    </div>

                <a class="aawp-button aawp-button--buy aawp-button aawp-button--amazon aawp-button--icon aawp-button--icon-black" href="https://www.amazon.de/dp/B07GJJYRXX?tag=daniel-net-21&#038;linkCode=ogi&#038;th=1&#038;psc=1" title="Amazon" target="_blank" rel="nofollow noopener sponsored">Amazon</a>
            </div>

</div>

    
</div>




<h2 class="wp-block-heading">Does geni.us comply with the Amazon guidelines?</h2>



<p>If you believe the manufacturer, yes. I myself have not had any bad experiences yet.</p>



<p>My biggest concern was that Amazon actually prohibits short linking of Amazon affiliate links in my opinion. And  <a rel="noreferrer noopener" href="https://geni.us/JOgWy6" target="_blank">geni.us</a> does nothing else, does it? </p>



<p>If you take a closer look at the terms and conditions, you will see that shortlinking is only forbidden if it makes it unrecognizable that the link will lead to Amazon. And exactly this can be achieved by simply placing a note à la &#8220;(Amazon Affiliate Link)&#8221; behind the link.<br><br>According to the manufacturer, Amazon itself has confirmed and approved the product.<br>Details can be found here: https://www.geni.us/amazon-safe</p>



<h2 class="wp-block-heading">How much for the fun?</h2>



<p>The service can be <a href="https://geni.us/JOgWy6" target="_blank" rel="noreferrer noopener" aria-label="tested free of charge for 14 days (öffnet in neuem Tab)">tested free of charge for 14 days</a>.</p>



<p>For up to 2000 clicks per month the service costs $5 per month. Each additional 1000 clicks cost $2 more. So I think that these costs scale very well with the clicks generated and the pricing is definitely fair.</p>



<p>The account can be terminated at any time without a minimum contract period.</p>







<div class="wp-block-image"><figure class="aligncenter size-large"><a href="https://geni.us/JOgWy6" target="_blank" rel="noreferrer noopener"><img decoding="async" width="250" height="250" src="https://pixelfriedhof.com/wp-content/uploads/2020/02/genius_link.png" alt="" class="wp-image-2086" srcset="https://pixelfriedhof.com/wp-content/uploads/2020/02/genius_link.png 250w, https://pixelfriedhof.com/wp-content/uploads/2020/02/genius_link-160x160.png 160w" sizes="(max-width: 250px) 100vw, 250px" /></a></figure></div>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/centrally-manage-and-internationalize-affiliate-links-2/">Centrally manage and internationalize Amazon Affiliate Links</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://pixelfriedhof.com/en/centrally-manage-and-internationalize-affiliate-links-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Solved: Fix missing product images with Woozone (WZone)</title>
		<link>https://pixelfriedhof.com/en/fix-missing-product-images-with-woozone-wzone/</link>
					<comments>https://pixelfriedhof.com/en/fix-missing-product-images-with-woozone-wzone/#comments</comments>
		
		<dc:creator><![CDATA[megaadmin]]></dc:creator>
		<pubDate>Mon, 25 Nov 2019 12:53:08 +0000</pubDate>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[WooCommerce]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[WZone]]></category>
		<guid isPermaLink="false">http://pixelfriedhof.com/?p=330</guid>

					<description><![CDATA[<p>How to fix missing images in WZone (WooZone) products in Wordpress and WooCommerce.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/fix-missing-product-images-with-woozone-wzone/">Solved: Fix missing product images with Woozone (WZone)</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>How to fix missing images in WZone (WooZone) products in WordPress and WooCommerce.</p>
<h2>Symptom:&nbsp;</h2>
<p>Some or all product images aren&#8217;t showing up in front end view.</p>
<p>&nbsp;</p>
<h2>Fix:</h2>
<p>&nbsp;</p>
<p>Go to WZone -&gt; Config -&gt; Bug Fixes:</p>
<p>&nbsp;<img loading="lazy" decoding="async" class=" size-full wp-image-993" src="http://pixelfriedhof.com/wp-content/uploads/2019/11/wzone1.JPG" alt="wzone1" style="border: 1px solid #000000;" width="1184" height="582" srcset="https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone1.JPG 1184w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone1-300x147.jpg 300w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone1-768x378.jpg 768w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone1-1024x503.jpg 1024w" sizes="auto, (max-width: 1184px) 100vw, 1184px" /></p>
<p>&nbsp;</p>
<p>Scroll down to &#8220;<strong>Disable WordPress Images srcset attributes</strong>&#8221; and set the option to &#8220;Yes&#8221;:</p>
<p>&nbsp;</p>
<p><img loading="lazy" decoding="async" class=" size-full wp-image-994" src="http://pixelfriedhof.com/wp-content/uploads/2019/11/wzone2.JPG" alt="wzone2" style="border: 1px solid #000000;" width="1027" height="679" srcset="https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone2.JPG 1027w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone2-300x198.jpg 300w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone2-768x508.jpg 768w, https://pixelfriedhof.com/wp-content/uploads/2019/11/wzone2-1024x677.jpg 1024w" sizes="auto, (max-width: 1027px) 100vw, 1027px" /></p>
<p>&nbsp;</p>
<p>Now save everything and reload your frontend. The images should now show up again.</p>
<p>Der Beitrag <a href="https://pixelfriedhof.com/en/fix-missing-product-images-with-woozone-wzone/">Solved: Fix missing product images with Woozone (WZone)</a> erschien zuerst auf <a href="https://pixelfriedhof.com/en">Pixelfriedhof</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://pixelfriedhof.com/en/fix-missing-product-images-with-woozone-wzone/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
	</channel>
</rss>
