<?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>Tim Linden</title>
	<atom:link href="https://www.timlinden.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.timlinden.com</link>
	<description>Full Stack Web Developer</description>
	<lastBuildDate>Sat, 16 Nov 2019 17:13:24 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=5.4.19</generator>
	<item>
		<title>Checking TLER setting for linux hard drives</title>
		<link>https://www.timlinden.com/checking-tler-setting-for-linux-hard-drives/</link>
					<comments>https://www.timlinden.com/checking-tler-setting-for-linux-hard-drives/#respond</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Sat, 16 Nov 2019 17:13:24 +0000</pubDate>
				<category><![CDATA[Random]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5749</guid>

					<description><![CDATA[When using hard drives in a NAS, it&#8217;s important that the drives have a proper TLER setting. This setting tells the hard drive to stop error recovery after a certain amount of time. NAS systems have their own error recovery system, so a drive taking a long time to recover for an error can actually [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When using hard drives in a NAS, it&#8217;s important that the drives have a proper TLER setting. This setting tells the hard drive to stop error recovery after a certain amount of time. NAS systems have their own error recovery system, so a drive taking a long time to recover for an error can actually negatively impact the rest of the NAS array.</p>
<p><code>for drive in $(ls -la /dev | grep -E 'sd[a-z]$' | awk '{print $10}'); do echo "Checking TLER setting for drive ${drive}:"; smartctl -l scterc /dev/${drive}; echo ''; done</code></p>
<p>To turn the setting on for a drive that states it is disabled:</p>
<p><code>smartctl -l scterc,70,70 /dev/sdg</code></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/checking-tler-setting-for-linux-hard-drives/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>include wpdb outside wordpress</title>
		<link>https://www.timlinden.com/include-wpdb-outside-wordpress/</link>
					<comments>https://www.timlinden.com/include-wpdb-outside-wordpress/#respond</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Sat, 10 Nov 2018 01:25:46 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5743</guid>

					<description><![CDATA[If you need to load the WordPress database outside of WordPress (for cron jobs, specialty pages, etc) simply put this at the beginning of your script: define( 'SHORTINIT', true ); require_once( $_SERVER['DOCUMENT_ROOT'] . '/wp-load.php' ); This will tell WordPress to load up with as little as necessary. If you don&#8217;t have the SHORTINIT call then it [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>If you need to load the <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> database outside of <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> (for cron jobs, specialty pages, etc) simply put this at the beginning of your script:</p>
<p><code>define( 'SHORTINIT', true );<br />
require_once( $_SERVER['DOCUMENT_ROOT'] . '/wp-load.php' );</code></p>
<p>This will tell <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> to load up with as little as necessary. If you don&#8217;t have the <code>SHORTINIT</code> call then it will load all of <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> as normal (which you probably don&#8217;t want).</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/include-wpdb-outside-wordpress/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>I started a YouTube Channel</title>
		<link>https://www.timlinden.com/started-youtube-channel/</link>
					<comments>https://www.timlinden.com/started-youtube-channel/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 16 May 2016 18:31:35 +0000</pubDate>
				<category><![CDATA[YouTube Creators]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5155</guid>

					<description><![CDATA[I&#8217;ve been watching lawn care videos on youtube for a while now, and I&#8217;ve been joking about making my own. Then friends started telling me I should. And today Justin concinved me to. So here we go..  I&#8217;m now known as Grass Daddy! If you have a lawn, go ahead and subscribe to the channel. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I&#8217;ve been watching lawn care videos on youtube for a while now, and I&#8217;ve been joking about making my own. Then friends started telling me I should. And today Justin concinved me to. So here we go..  I&#8217;m now known as <a href="https://www.youtube.com/channel/UC1Tv_Bd07M1FachT30W1W8g">Grass Daddy</a>!</p>
<p>If you have a lawn, go ahead and subscribe to the channel. I&#8217;ll show  you tips and tricks I use on my <a href="https://www.grassdaddy.net/" class="wpinterlink" >grass</a> to make it look amazing.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/started-youtube-channel/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Make Numbered Lists Look Amazing in WordPress</title>
		<link>https://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/</link>
					<comments>https://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 14 Mar 2016 19:12:06 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5119</guid>

					<description><![CDATA[After writing my blog post on 5 reasons to use lists in blogs, I had people email me asking how I made my lists look so good. I&#8217;ll admit, before that post my lists looked ugly. But I spent quite a bit of time playing around to get it to look that way. What I [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>After writing my <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> post on <a href="http://www.timlinden.com/5-reasons-to-use-lists-in-blog-posts/">5 reasons to use lists in blogs</a>, I had people email me asking how I made my lists look so good. I&#8217;ll admit, before that post my lists looked ugly. But I spent quite a bit of time playing around to get it to look that way.</p>
<p>What I ended up coming across was some <a href="https://css-tricks.com/numbering-in-style/" target="_blank">css tricks</a> that let you do numbering in different styles. I had to modify it to work with the lists I was making. First, I&#8217;ll give you the code to put into your theme&#8217;s custom.css file:</p>
<pre>.fancy {
    counter-reset: fancy-counter;
    list-style: none;
}

.fancy li:before {
    content: counter(fancy-counter);
    counter-increment: fancy-counter;
    left: -40px;
    position: relative;
    top: 25px;
    font: bold 50px/1 Sans-Serif;
}

.fancy strong {
    margin-left: -30px;
}</pre>
<p>Once this is in your theme&#8217;s custom.css file, you can create a new numbered list with <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> just like you always have, with two exceptions:</p>
<ol class="fancy">
<li><strong>You must use the bold tag</strong> at the begging of each section. As you can see in the css above, strong (which is what <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> uses for bolding), has a margin that is being offset by 30 pixels. This is to counter the space the numbers take up.</li>
<li><strong>You must add the fancy class</strong> to the &lt;ol&gt; tag. This can be done by changing your <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> Visual Editor from Visual to Text mode. Change the &lt;ol&gt; to &lt;ol class=&#8221;fancy&#8221;&gt;. This prevents lists outside of your content from getting changed, ensuring your <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> doesn&#8217;t break.</li>
</ol>
<p>That&#8217;s all there is to it. Seems complicated at first but once you get it figured out it really doesn&#8217;t add much to your flow when creating new posts. But it has an amazingly beautiful effect that&#8217;ll help your <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> look that much better.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>19</slash:comments>
		
		
			</item>
		<item>
		<title>Database Server Maintenance</title>
		<link>https://www.timlinden.com/database-server-maintenence/</link>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 07 Mar 2016 18:57:14 +0000</pubDate>
				<category><![CDATA[Full Stack]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5142</guid>

					<description><![CDATA[While investigating sluggish behavior on our database server this morning I noticed that a couple of our settings were not properly optimized. As a result we&#8217;ll be updating these settings tomorrow to ensure our website is as fast as can be. The actual process is quite simple, and should have a small amount of downtime. [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>While investigating sluggish behavior on our database server this morning I noticed that a couple of our settings were not properly optimized. As a result we&#8217;ll be updating these settings tomorrow to ensure our website is as fast as can be.</p>
<p>The actual process is quite simple, and should have a small amount of downtime. We&#8217;ll be doing it sometime between 2AM and 9AM EST. The actual window of downtime shouldn&#8217;t be longer than 15 minutes.</p>
<p>I&#8217;ll be posting updates on this post. Our server techs will be handling the process to ensure it&#8217;s done as quickly as possible. I&#8217;ll update here if I get a more specific time frame.</p>
<p><strong>Update:</strong> The process went smoothly with only a few minutes of downtime. Hurray!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>5 Reasons to Use Lists in Blog Posts</title>
		<link>https://www.timlinden.com/5-reasons-to-use-lists-in-blog-posts/</link>
					<comments>https://www.timlinden.com/5-reasons-to-use-lists-in-blog-posts/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 07 Mar 2016 11:04:26 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5098</guid>

					<description><![CDATA[When it comes time to write blog posts it can be really difficult getting your thoughts organized into one post. Today I&#8217;m going to tell you 5 reasons why you should use lists in blog posts! They are easier to write. When you come up with a topic, it&#8217;s easy to keep it focused when [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When it comes time to write <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> posts it can be really difficult getting your thoughts organized into one post. Today I&#8217;m going to tell you 5 reasons why you should use lists in <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> posts!</p>
<ol class="fancy">
<li><strong>They are easier to write</strong>. When you come up with a topic, it&#8217;s easy to keep it focused when it&#8217;s broken down into simple chunks. It really can help when you&#8217;ve got writers block to use a list to get your groove on.</li>
<li><strong>They are easier to read</strong>. I&#8217;ll admit it, I skim over <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> posts. I love <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> posts that use lists because I can skim and skip what I know and read what I don&#8217;t. Then end result? I end up at your <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> more often than ones that don&#8217;t.</li>
<li><strong>Lists go viral</strong>. Now I&#8217;m guessing this is because they are easier to read so when you come across a post that isn&#8217;t in list format it just won&#8217;t go viral. But it&#8217;s true, my facebook feed is filled with these kinds of posts, and google serves me these pages all the time in my results too.</li>
<li><strong>Lists make you look authoritative.</strong> It&#8217;s kinda funny but when someone has a <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> post with 5 reasons of this or 5 reasons of that, they look like they thought it out more than someone who wrote the same content but didn&#8217;t put it in list form. There could be 5 more reasons, but the fact that they are numbered and presented that way makes it appear much more thought out.</li>
<li><strong>They keep you on track</strong>. This has helped me before. I tend to go on tangents and move off topic. But when you say these are 5 reasons to use lists, I quickly stop myself when I realize I&#8217;m writing about another topic. In the end a much better <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> post comes out because it&#8217;s kept on topic.</li>
</ol>
<p>So there you have it, from the master blogger himself, 5 reasons to use lists when blogging!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/5-reasons-to-use-lists-in-blog-posts/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How To Make a Blog The Easy Way</title>
		<link>https://www.timlinden.com/how-to-make-a-blog/</link>
					<comments>https://www.timlinden.com/how-to-make-a-blog/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 29 Feb 2016 12:21:28 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5093</guid>

					<description><![CDATA[When I talk to people about blogging, they always say they don&#8217;t know how to do it. To me setting it up is a piece of cake, but in case that&#8217;s not you, I&#8217;m going to show you how to make a blog in only a few minutes! First, this applies to anyone with a [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>When I talk to people about blogging, they always say they don&#8217;t know how to do it. To me setting it up is a piece of cake, but in case that&#8217;s not you, I&#8217;m going to show you how to make a <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> in only a few minutes!</p>
<p>First, this applies to anyone with a hosting account with cPanel. While there are some ways you can get a free <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a>, I would recommend having your own hosting account for many reasons. You get complete control over which themes and plugins you use, and more importantly you can&#8217;t be told the content you are writing about isn&#8217;t allowed.</p>
<h2>Back to How To Make a Blog!</h2>
<p><img class="aligncenter wp-image-5094 size-full" src="http://www.timlinden.com/wp-content/uploads/2016-02-10_12-27-59.png" alt="This is how to make a blog, the easy way!" width="632" height="234" srcset="https://www.timlinden.com/wp-content/uploads/2016-02-10_12-27-59.png 632w, https://www.timlinden.com/wp-content/uploads/2016-02-10_12-27-59-300x111.png 300w" sizes="(max-width: 632px) 100vw, 632px" /></p>
<p>Once you are inside your cPanel control panel, it&#8217;s actually really easy. Simply goto Site Software, then click on <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a>. The next page has a bunch of options but the only one you have to change is the admin username, password, and email. The rest will automatically be filled for you.</p>
<p>Click install, and cPanel will actually make a <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> for you. It will download all the necessary files, copy them appropriately, and install the database. The hard part is left up to you: writing <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> posts! If you are still confused, I can <a href="http://www.timlinden.com/free-wordpress-installation/">make a blog for you</a> ;-)</p>
<h2>How To Make a <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >Blog</a> Look Good</h2>
<p>I could have stopped there but then you&#8217;d have the same boring looking <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> as everyone else. No worries, making a <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a> look good is just as easy, if not easier. Themes are located in the admin menu under Appearance. On the Themes page click Add New</p>
<p><img class="aligncenter size-full wp-image-5095" src="http://www.timlinden.com/wp-content/uploads/2016-02-10_12-35-21.png" alt="How to make a blog look good" width="323" height="69" srcset="https://www.timlinden.com/wp-content/uploads/2016-02-10_12-35-21.png 323w, https://www.timlinden.com/wp-content/uploads/2016-02-10_12-35-21-300x64.png 300w" sizes="(max-width: 323px) 100vw, 323px" /></p>
<p>WordPress will then show you a wide variety of themes you can install just by clicking Install. You&#8217;ll even get to preview them first. Find a theme that matches your style and you&#8217;ll enjoy writing all the more!</p>
<p>That&#8217;s all there is to it. If I <em>helped you make a blog</em> please let me know below!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/how-to-make-a-blog/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Updated Version of wpFutureCal</title>
		<link>https://www.timlinden.com/updated-version-of-wpfuturecal/</link>
					<comments>https://www.timlinden.com/updated-version-of-wpfuturecal/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Wed, 24 Feb 2016 19:29:56 +0000</pubDate>
				<category><![CDATA[Wordpress Plugins]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=5134</guid>

					<description><![CDATA[I just pushed out a new version of wpFutureCal which is sure to make at least two people happy (Justin, Patrick). The calendar now has next/previous buttons so you can just click around the months if you need to go farther than next month! If you already have it installed, your version of WordPress will [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I just pushed out a new version of wpFutureCal which is sure to make at least two people happy (Justin, Patrick). The calendar now has next/previous buttons so you can just click around the months if you need to go farther than next month!</p>
<p><img class="aligncenter size-full wp-image-5135" src="http://www.timlinden.com/wp-content/uploads/2-24-2016-2-26-09-PM.png" alt="2-24-2016 2-26-09 PM" width="286" height="245" /></p>
<p>If you already have it installed, your version of <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> will automagically ask you to update it soon. If not, you really should it&#8217;s an amazing plugin that is so simple yet so handy. It shows you when you&#8217;ve made posts so you can visually see if you are behind or where you should publish your next one!</p>
<p>To download it, search for wpfuturecal inside the plugin directory, or check out it&#8217;s new official home on the Plus1Daily site!</p>
<p><a href="http://plus1daily.com/plugins/wpfuturecal/">http://plus1daily.com/plugins/wpfuturecal/</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/updated-version-of-wpfuturecal/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>The bigger the list, the smaller the results?</title>
		<link>https://www.timlinden.com/bigger-list-smaller-results/</link>
					<comments>https://www.timlinden.com/bigger-list-smaller-results/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 22 Feb 2016 12:39:17 +0000</pubDate>
				<category><![CDATA[Email Marketing]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/blog/?p=3979</guid>

					<description><![CDATA[We&#8217;ve been getting quite a few newbie email marketers coming into RocketResponder that have this thought that the larger their list, the better their results will be. But they are actually finding the opposite is happening. The phenomenon actually happens because most smaller lists have a more personal approach to them. It&#8217;s true that you [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>We&#8217;ve been getting quite a few newbie email marketers coming into RocketResponder that have this thought that the larger their list, the better their results will be. But they are actually finding the opposite is happening.</p>
<p>The phenomenon actually happens because most smaller lists have a more personal approach to them. It&#8217;s true that you can be personal with a larger list, but when it&#8217;s small it tends to be a small list of people you have a stronger relationship with.</p>
<p>Another way to think of it is this..  If you talk to 10 people every day, how long will you talk to them for? Now if you have 100 people every day, that time shrinks. At some point when your list size gets too big you can&#8217;t keep up with the personal level.</p>
<p>This isn&#8217;t a reason to stop building your list, but it&#8217;s why you shouldn&#8217;t sweat having a small list now. Take the time to interact with that list in a way you couldn&#8217;t if you had a larger list. You can ask them questions and have them reply to the email, for instance.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/bigger-list-smaller-results/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Delete Thousands of Crons in WordPress</title>
		<link>https://www.timlinden.com/how-to-delete-thousands-of-crons-in-wordpress/</link>
					<comments>https://www.timlinden.com/how-to-delete-thousands-of-crons-in-wordpress/#comments</comments>
		
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Mon, 15 Feb 2016 18:19:18 +0000</pubDate>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[howto]]></category>
		<guid isPermaLink="false">http://www.timlinden.com/?p=4930</guid>

					<description><![CDATA[I previously posted how to fix missed scheduled posts, this time on a related but different note I&#8217;m going to show you how to delete thousands of cron jobs all at once. Now you must be asking, how did I get thousands of cron jobs? Well, I had a defunct plugin that was adding in [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I previously posted <a href="http://www.timlinden.com/how-to-fix-missed-scheduled-posts-in-wordpress/">how to fix missed scheduled posts</a>, this time on a related but different note I&#8217;m going to show you how to delete thousands of cron jobs all at once.</p>
<p>Now you must be asking, how did I get thousands of cron jobs? Well, I had a defunct plugin that was adding in new cron jobs over and over. I used Improved Cron to check out why my cron jobs weren&#8217;t firing, and found that it was flooded with cron jobs.</p>
<p>What&#8217;s interesting to note is a lot of plugins will add a cron job, but when you remove the plugin it doesn&#8217;t remove the cron job. So over years you can start to have a ton of junky cron jobs in there slowing everything down.</p>
<p><strong>Delete WordPress cron jobs with phpMyAdmin:</strong> if you are familiar with phpMyAdmin, simply goto your <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> database and open up the wp_options table. Do a search for crons.</p>
<p><img class="aligncenter size-full wp-image-4931" src="http://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-29-PM.png" alt="1-26-2016 1-23-29 PM" width="714" height="243" srcset="https://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-29-PM.png 714w, https://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-29-PM-300x102.png 300w" sizes="(max-width: 714px) 100vw, 714px" /></p>
<p>Once you find the cron, simply delete it. Scary, but actually <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> will automatically re-generate the field when necessary.</p>
<p><img class="aligncenter size-full wp-image-4932" src="http://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-46-PM.png" alt="1-26-2016 1-23-46 PM" width="621" height="55" srcset="https://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-46-PM.png 621w, https://www.timlinden.com/wp-content/uploads/1-26-2016-1-23-46-PM-300x27.png 300w" sizes="(max-width: 621px) 100vw, 621px" /></p>
<p>If you don&#8217;t know how to use phpMyAdmin, or are simply too scared, a neat trick you can do is to add this one line of code to your <a href="http://www.timlinden.com/wordpress-plugins/" class="wpinterlink" >WordPress</a> Theme functions.php file. If it doesn&#8217;t have it, then you can add it to any of the plugins:</p>
<pre class="default prettyprint prettyprinted"><code><span class="pln">delete_option</span><span class="pun">(</span> <span class="str">'cron'</span> <span class="pun">);</span></code></pre>
<p>Once you or anyone accesses your <a href="http://www.timlinden.com/how-to-make-numbered-lists-look-amazing-in-wordpress/" class="wpinterlink" >blog</a>, this will delete that field. Then remove the code and you&#8217;re good to go! Now after doing this my cron jobs run much smoother.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.timlinden.com/how-to-delete-thousands-of-crons-in-wordpress/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
