<?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>Der Magento Experte</title>
	<atom:link href="https://www.der-mage-experte.de/tag/lokale-entwicklung/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.der-mage-experte.de</link>
	<description>Ihr Magento Experte &#38; Entwickler</description>
	<lastBuildDate>Fri, 03 Apr 2026 09:02:45 +0000</lastBuildDate>
	<language>de-DE</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8.6</generator>
	<item>
		<title>Magento Mailadressen der Kunden ändern</title>
		<link>https://www.der-mage-experte.de/260/magento-mailadressen-der-kunden-andern/</link>
		<comments>https://www.der-mage-experte.de/260/magento-mailadressen-der-kunden-andern/#comments</comments>
		<pubDate>Fri, 29 Mar 2013 13:25:56 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Lösungen]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Lokale-Entwicklung]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.der-mage-experte.de/?p=260</guid>
		<description><![CDATA[Wenn Sie neu zu implementierende Funktionalitäten lokal auf Ihrem Entwicklungsrechner testen möchten, empfiehlt es sich, die Mailadressen der Kunden zu ändern. Das folgende Skript kann dafür genutzt werden: Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus! [crayon-69e344842b006/] Öffnen&#8230;]]></description>
				<content:encoded><![CDATA[<p>Wenn Sie neu zu implementierende Funktionalitäten lokal auf Ihrem Entwicklungsrechner testen möchten, empfiehlt es sich, die Mailadressen der Kunden zu ändern. Das folgende Skript kann dafür genutzt werden:</p>
<p><strong>Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus!</strong></p>
<p></p><pre class="crayon-plain-tag">update sales_flat_quote set customer_email = (concat(substring(md5(rand()) from 1 for 20), '@example.com'));
update sales_flat_order set customer_email = (concat(substring(md5(rand()) from 1 for 20), '@example.com'));
update sales_flat_quote_address set email = (concat(substring(md5(rand()) from 1 for 20), '@example.com'));
update customer_entity set email = (concat(substring(md5(rand()) from 1 for 20), '@example.com'));</pre><p></p>
<p>Öffnen Sie nun z.B. eine Bestellung und prüfen Sie, ob die Mailadresse ersetzt wurde.</p>
<p><strong>Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus!</strong></p>]]></content:encoded>
			<wfw:commentRss>https://www.der-mage-experte.de/260/magento-mailadressen-der-kunden-andern/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Magento Store Mailadressen einer lokalen Installation ändern</title>
		<link>https://www.der-mage-experte.de/142/store-mailadressen-lokale-magento-installation-aender/</link>
		<comments>https://www.der-mage-experte.de/142/store-mailadressen-lokale-magento-installation-aender/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 12:39:28 +0000</pubDate>
		<dc:creator><![CDATA[Mex]]></dc:creator>
				<category><![CDATA[Magento Lösungen]]></category>
		<category><![CDATA[E-Mail]]></category>
		<category><![CDATA[Lokale-Entwicklung]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://www.der-mage-experte.de/?p=142</guid>
		<description><![CDATA[Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus! Die folgende Abfrage erstellt das Updateskript entsprechend eines von Ihnen definierten Musters. In diesem Falle ist das Muster &#8220;ihre-domain.de&#8221;. Ersetzen Sie dieses durch Ihre Domain. [crayon-69e344842e2e0/] Das resultierende Skript sieht&#8230;]]></description>
				<content:encoded><![CDATA[<p><strong>Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus!</strong></p>
<p>Die folgende Abfrage erstellt das Updateskript entsprechend eines von Ihnen definierten Musters. In diesem Falle ist das Muster &#8220;ihre-domain.de&#8221;. Ersetzen Sie dieses durch Ihre Domain.</p><pre class="crayon-plain-tag">select concat('update core_config_data set value = \'test@example.com\' where path = \'', path, '\';')
  from core_config_data where value like '%@ihre-domain.de%'</pre><p></p>
<p>Das resultierende Skript sieht dann z.B. folgendermaßen aus:</p>
<p></p><pre class="crayon-plain-tag">update core_config_data set value = 'test@example.com' where path = 'general/imprint/email';
update core_config_data set value = 'test@example.com' where path = 'sitemap/generate/error_email';
update core_config_data set value = 'test@example.com' where path = 'sales_email/order/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/order_comment/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/invoice/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/invoice_comment/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/shipment/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/shipment_comment/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/creditmemo/copy_to';
update core_config_data set value = 'test@example.com' where path = 'sales_email/creditmemo_comment/copy_to';
update core_config_data set value = 'test@example.com' where path = 'trans_email/ident_general/email';
update core_config_data set value = 'test@example.com' where path = 'trans_email/ident_sales/email';
update core_config_data set value = 'test@example.com' where path = 'trans_email/ident_support/email';
update core_config_data set value = 'test@example.com' where path = 'trans_email/ident_custom1/email';
update core_config_data set value = 'test@example.com' where path = 'trans_email/ident_custom2/email';
update core_config_data set value = 'test@example.com' where path = 'contacts/email/recipient_email';
update core_config_data set value = 'test@example.com' where path = 'paypal/general/business_account';
update core_config_data set value = 'test@example.com' where path = 'samples/email/recipient_email';
update core_config_data set value = 'test@example.com' where path = 'bewertung/email/recipient_email';</pre><p></p>
<p><strong>Warnung: Führen Sie diese Statements niemals auf Ihrem Produktivsystem aus!</strong></p>]]></content:encoded>
			<wfw:commentRss>https://www.der-mage-experte.de/142/store-mailadressen-lokale-magento-installation-aender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
