<?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>Optimus Media</title>
	<atom:link href="http://new.optimusmedia.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://new.optimusmedia.com</link>
	<description>Taking the frustration out of having a website.</description>
	<lastBuildDate>Mon, 30 Dec 2013 15:44:02 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.8</generator>
	<item>
		<title>How to Maximize Security For Your WordPress Blog</title>
		<link>http://new.optimusmedia.com/archives/wordpress-login-brute-force-attack/</link>
		<comments>http://new.optimusmedia.com/archives/wordpress-login-brute-force-attack/#respond</comments>
		<pubDate>Fri, 05 Jul 2013 18:17:06 +0000</pubDate>
		<dc:creator><![CDATA[Ron Shank]]></dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://new.optimusmedia.com/?p=231</guid>
		<description><![CDATA[Recently, there was a worldwide, highly distributed WordPress attack. This attack was known for using forged or spoofed IP addresses. During the attack, we actively blocked the most common attacking IP addresses across our server farm. If this type of attack happens again, we will again take appropriate measures. Measures You Can Take to Prevent [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Recently, there was a worldwide, highly distributed WordPress attack. This attack was known for using forged or spoofed IP addresses. During the attack, we actively blocked the most common attacking IP addresses across our server farm. If this type of attack happens again, we will again take appropriate measures.</p>
<h3>Measures You Can Take to Prevent Similar Attacks</h3>
<p>The following steps can be used to secure (by password protection) <code>wp-login.php</code> for all WordPress sites in your cPanel account. This will help deter this type of attack. <span id="more-231"></span></p>
<h3>How to Password Protect the wp-login.php File</h3>
<p>There are two (2) steps in accomplishing this. First you need to define a password in the <code>.wpadmin</code> file, and then you activate the security in the <code>.htaccess</code> file.</p>
<h3>Step 1: Create the Password File</h3>
<p>Create a file named <code>.wpadmin</code> and place it in your home directory, where visitors can&#8217;t access it. (Please note there is a period preceding the wpadmin in that file name.) The following example is for cPanel.</p>
<p>EXAMPLE: <code>/home/username/.wpadmin</code><br />
(where &#8220;username&#8221; is the cPanel username for the account.)</p>
<p>Put the username and encrypted password inside the <code>.wpadmin</code> file, using the format <code>username:encryptedpassword</code></p>
<p>EXAMPLE: <code>john:n5MfEoHOIQkKg</code><br />
(where &#8220;john&#8221; is a username of your choice, and the password shown is encrypted.)</p>
<h3>Option A: Generate Password File &amp; Uploading Via File Manager</h3>
<p>One way to do this is to generate the file using the website linked below, and then upload it to your site via FTP or File Manager. In the directions below, we will use File Manager, but you could use FTP instead, for those of you familiar with FTP.</p>
<ol>
<li>Visit: <a href="http://www.htaccesstools.com/htpasswd-generator/" target="_blank">http://www.htaccesstools.com/htpasswd-generator/</a></li>
<li>Use the form to create the username and password.</li>
<li>Login to cPanel in another window or tab.</li>
<li>Click on <b>File Manager</b>.</li>
<li>Select <b>Home Directory</b>.</li>
<li>Check <b>Show Hidden Files (dotfiles)</b> if not already checked.</li>
<li>Click on the <b>Go</b> button.</li>
<li>Look for a <code>.wpadmin</code> file.
<ul>
<li>If one exists, right click on it and select <b>Code Edit</b> to open the editor. Click on the <b>Edit</b> button to edit the file.</li>
<li>If one does not exist, click on <b>New File</b> at the top of the page, and specify the name as <code>.wpadmin</code> (with the dot at the front) and click on the <b>Create New File</b> button.</li>
</ul>
</li>
<li>Paste the code provided from the website in step 2.</li>
<li>Click on the <b>Save Changes</b> button when complete.</li>
<li>You can <b>Close</b> the file when finished.</li>
</ol>
<h3>Option B: Creating the Password File via SSH / Command Line</h3>
<p>To create the encrypted password you will need to use a utility such as the command-line program htpasswd. More detailed technical information about htpasswd can be found at <a href="http://httpd.apache.org/docs/current/programs/htpasswd.html" target="_blank">http://httpd.apache.org/docs/current/programs/htpasswd.html</a>.</p>
<p>An example would be to do this:</p>
<div>htpasswd -c /home/username/.wpadmin john</div>
<p>You would then be prompted to enter the password you wish to use for the username &#8220;john&#8221; in order to access the wp-login page. You can then log into the wp-admin interface as you normally would. There are many other online tools that can be used to convert standard passwords to encrypted for this purpose.</p>
<h3>Step 2: Update the .htaccess File</h3>
<p>All domains under the home directory will share the common <code>.wpadmin</code> file. (The command listed in Option B above creates the <code>/home/username/.wpadmin</code> file due to the <code>-c</code>.)</p>
<p>The last step is to place the following code in the <code>/home/username/.htaccess</code> file:</p>
<div><code>ErrorDocument 401 "Unauthorized Access"<br />
ErrorDocument 403 "Forbidden"<br />
&lt;FilesMatch "wp-login.php"&gt;<br />
AuthName "Authorized Only"<br />
AuthType Basic<br />
AuthUserFile /home/username/.wpadmin<br />
require valid-user<br />
&lt;/FilesMatch&gt;</code></div>
<p><i>Note: replace &#8220;username&#8221; above with your cPanel username.</i></p>
]]></content:encoded>
			<wfw:commentRss>http://new.optimusmedia.com/archives/wordpress-login-brute-force-attack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screencast: How Do I Invite My Friends To Like My Facebook Page?</title>
		<link>http://new.optimusmedia.com/archives/screencast-how-do-i-invite-my-friends-to-like-my-facebook-page/</link>
		<comments>http://new.optimusmedia.com/archives/screencast-how-do-i-invite-my-friends-to-like-my-facebook-page/#respond</comments>
		<pubDate>Sun, 03 Jun 2012 23:31:04 +0000</pubDate>
		<dc:creator><![CDATA[Ron Shank]]></dc:creator>
				<category><![CDATA[Screencasts]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Pages]]></category>

		<guid isPermaLink="false">http://new.optimusmedia.com/?p=112</guid>
		<description><![CDATA[I was recently asked, &#8220;How can I invite my friends to like my Facebook Page? It&#8217;s really pretty simple and this screencast shows you how. If you have questions or comments, please leave them in the comments section below.  I&#8217;d also love to hear what screencast you&#8217;d like to see next.]]></description>
				<content:encoded><![CDATA[<p>I was recently asked, &#8220;How can I invite my friends to like my Facebook Page? It&#8217;s really pretty simple and this screencast shows you how. If you have questions or comments, please leave them in the comments section below.  I&#8217;d also love to hear what screencast you&#8217;d like to see next.</p>
<p><iframe src="http://www.youtube.com/embed/NNLot6KHZh8" height="498" width="664" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://new.optimusmedia.com/archives/screencast-how-do-i-invite-my-friends-to-like-my-facebook-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some great free themes</title>
		<link>http://new.optimusmedia.com/archives/some-great-free-themes/</link>
		<comments>http://new.optimusmedia.com/archives/some-great-free-themes/#respond</comments>
		<pubDate>Sat, 26 May 2012 14:45:27 +0000</pubDate>
		<dc:creator><![CDATA[Ron Shank]]></dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://new.optimusmedia.com/?p=84</guid>
		<description><![CDATA[I just updated my wife&#8217;s blog (jonib.com) with one of the free themes from here. Great free themes for WordPress.]]></description>
				<content:encoded><![CDATA[<p>I just updated my wife&#8217;s blog (<a href="http://jonib.com">jonib.com</a>) with one of the <a href="http://www.evaneckard.com/wp-themes/">free themes from here</a>. Great free themes for WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://new.optimusmedia.com/archives/some-great-free-themes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why do you do what you do?</title>
		<link>http://new.optimusmedia.com/archives/why-do-you-do-what-you-do/</link>
		<comments>http://new.optimusmedia.com/archives/why-do-you-do-what-you-do/#respond</comments>
		<pubDate>Fri, 25 May 2012 14:00:42 +0000</pubDate>
		<dc:creator><![CDATA[Ron Shank]]></dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://new.optimusmedia.com/?p=75</guid>
		<description><![CDATA[This is a great video from Simon Sinek, Author of Start with Why: How Great Leaders Inspire Everyone to Take Action The video has many of the key principles in his book.  If you like the video, I recommend the book.  If you are like me, it will cause you to reconsider your current marketing and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>This is a great video from Simon Sinek, Author of <a href="http://www.amazon.com/gp/product/1591846447/ref=as_li_ss_tl?ie=UTF8&amp;camp=1789&amp;creative=390957&amp;creativeASIN=1591846447&amp;linkCode=as2&amp;tag=ronshankcom-20">Start with Why: How Great Leaders Inspire Everyone to Take Action</a><img style="border: none !important; margin: 0px !important;" alt="" src="http://ir-na.amazon-adsystem.com/e/ir?t=ronshankcom-20&amp;l=as2&amp;o=1&amp;a=1591846447" width="1" height="1" border="0" /> The video has many of the key principles in his book.  If you like the video, <a href="http://www.amazon.com/gp/product/1591846447/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1591846447&#038;linkCode=as2&#038;tag=ronshankcom-20">I recommend the book</a><img src="http://ir-na.amazon-adsystem.com/e/ir?t=ronshankcom-20&#038;l=as2&#038;o=1&#038;a=1591846447" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" />.  If you are like me, it will cause you to reconsider your current marketing and maybe even how you lead your team.</p>
<p><iframe src="http://www.youtube.com/embed/qp0HIF3SfI4" height="360" width="640" allowfullscreen="" frameborder="0"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://new.optimusmedia.com/archives/why-do-you-do-what-you-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
