<?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>redirect loop &#8211; My Web Development</title>
	<atom:link href="https://mywebdevelopment.org/tag/redirect-loop/feed/" rel="self" type="application/rss+xml" />
	<link>https://mywebdevelopment.org</link>
	<description>Always learning something new..</description>
	<lastBuildDate>Sun, 16 Nov 2014 02:06:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>Oops! Google Chrome Could Not Connect To 127.0.0.1</title>
		<link>https://mywebdevelopment.org/oops-google-chrome-could-not-connect-to-127-0-0-1/</link>
				<pubDate>Sun, 15 Sep 2013 05:25:12 +0000</pubDate>
		<dc:creator><![CDATA[Elias]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[firewall]]></category>
		<category><![CDATA[redirect loop]]></category>
		<category><![CDATA[WP Security Plugin]]></category>

		<guid isPermaLink="false">http://mywebdevelopment.org/?p=546</guid>
				<description><![CDATA[<p>While I was developing a site with WordPress; all of a sudden, I attempted to access dashboard and I got an error indicating that Google Chrome could not connect to 127.0.0.1 During my research, I figured this blog might of been my solution: http://wordpress.org/support/topic/redirections-to-127001-when-enabling-network There was even a suggestion about the configuration within the nginx… <span class="read-more"><a href="https://mywebdevelopment.org/oops-google-chrome-could-not-connect-to-127-0-0-1/">Read More &#187;</a></span></p>
<p>The post <a rel="nofollow" href="https://mywebdevelopment.org/oops-google-chrome-could-not-connect-to-127-0-0-1/">Oops! Google Chrome Could Not Connect To 127.0.0.1</a> appeared first on <a rel="nofollow" href="https://mywebdevelopment.org">My Web Development</a>.</p>
]]></description>
								<content:encoded><![CDATA[<p>While I was developing a site with WordPress; all of a sudden, I attempted to access dashboard and I got an error indicating that Google Chrome could not connect to 127.0.0.1</p>
<p>During my research, I figured this blog might of been my solution: <a title="127.0.0.1 Redirect" href="http://wordpress.org/support/topic/redirections-to-127001-when-enabling-network">http://wordpress.org/support/topic/redirections-to-127001-when-enabling-network</a><br />
There was even a suggestion about the configuration within the nginx conf file and this did not resolve my issue; although, perhaps it might for you..</p>
<p>So many different suggestions regarding local host, yada, yada, none of the queries seemed to bring me much luck; until, I decided to revert my .htaccess in attempts this would work. YES, I was able to log back into my WordPress. After I reverted to previous .htaccess file, I was able to trouble shoot the issue and here is what I discovered.</p>
<p>Troubleshooting: WordPress 3.5+<br />
My 127.0.0.1 Redirect Loop had to do with the plugin WP Security and the code it used inside .htaccess.</p>
<p>In WordPress, Dashboard; on the tool bar you will see option for WP Security &gt; Firewall</p>
<p><strong>WP Security &gt; Firewall</strong></p>
<p>If I enable the Basic Firewall Settings: fail<br />
If I enable the WordPress Pingback Vulnerability Protection: fail</p>
<p>In either combination of enabling/disabling the above settings, no resolution was achieved.</p>
<p>So, with the Basic Firewall &amp; Pingback Settings disabled, I troubleshooted &#8216;Brute Force Prevention&#8217;.</p>
<p>WP Security &gt; Firewall &gt; Brut Force Prevention: Enabled Brue Force attack Prevention &amp; populated Secrete Word with the Re-Direcdt URL of http://127.0.0.1 (or where ever you want) and save (regenerating .htaccess file).</p>
<p><strong>Conclusion</strong></p>
<p>If you enabled WP Security plugin and in the Firewall options under Brute Force, you are provided a &#8216;secrete word&#8217; as a login phrase; be sure you login into WordPress with the unique phrase or URL Brute Force provides.</p>
<p>So, instead of going to generic WordPress login: http://domain.com/wordpress/wp-admin<br />
You would go to unique phrase WordPress login: http://domain.com/wordpress/?uniquephrase</p>
<p>And if that solution does not work for you, revert back to your old .htaccess file or copy the contents below and create your own .htaccess file &amp; upload:</p>
<p><span style="color: #993300;"># BEGIN WordPress</span><br />
<span style="color: #993300;">&lt;IfModule mod_rewrite.c&gt;</span><br />
<span style="color: #993300;">RewriteEngine On</span><br />
<span style="color: #993300;">RewriteBase /wordpress/</span><br />
<span style="color: #993300;">RewriteRule ^index\.php$ &#8211; [L]</span><br />
<span style="color: #993300;">RewriteCond %{REQUEST_FILENAME} !-f</span><br />
<span style="color: #993300;">RewriteCond %{REQUEST_FILENAME} !-d</span><br />
<span style="color: #993300;">RewriteRule . /wordpress/index.php [L]</span><br />
<span style="color: #993300;">&lt;/IfModule&gt;</span></p>
<p><span style="color: #993300;"># END WordPress</span></p>
<p><strong>Resources</strong></p>
<p>Hardening WordPress: <a href="http://codex.wordpress.org/Hardening_WordPress">http://codex.wordpress.org/Hardening_WordPress</a><br />
Redirecting loop occurs with .htaccess file: <a href="http://www.justincener.com/blog/how-to-easily-fix-the-wordpress-redirect-loop-error-without-admin-access/">http://www.justincener.com/blog/how-to-easily-fix-the-wordpress-redirect-loop-error-without-admin-access/</a></p>
 <script type="text/javascript"><!--
google_ad_client = "ca-pub-9218567626174444";
/* My Web Dev Resources */
google_ad_slot = "3283801538";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<p>The post <a rel="nofollow" href="https://mywebdevelopment.org/oops-google-chrome-could-not-connect-to-127-0-0-1/">Oops! Google Chrome Could Not Connect To 127.0.0.1</a> appeared first on <a rel="nofollow" href="https://mywebdevelopment.org">My Web Development</a>.</p>
]]></content:encoded>
										</item>
	</channel>
</rss>
