<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Blog Carnival Tips</title>
	
	<link>http://blogcarnivaltips.com</link>
	<description>Help with starting, managing, hosting, and reading blog carnivals</description>
	<pubDate>Sun, 02 Nov 2008 07:12:28 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/BlogCarnivalTips" type="application/rss+xml" /><feedburner:browserFriendly></feedburner:browserFriendly><item>
		<title>A quick roll-your-own carnival submission form</title>
		<link>http://blogcarnivaltips.com/2008/11/02/a-quick-roll-your-own-carnival-submission-form/</link>
		<comments>http://blogcarnivaltips.com/2008/11/02/a-quick-roll-your-own-carnival-submission-form/#comments</comments>
		<pubDate>Sun, 02 Nov 2008 07:12:28 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/11/02/a-quick-roll-your-own-carnival-submission-form/</guid>
		<description><![CDATA[BlogCarnival.com has become an integral part of many blog carnivals.&#160; They were down for about a week with database maintenance.&#160; I know that this was probably quite hectic for them as well as for all of the carnival managers that depend on the features it brings to the table.
A reasonable backup plan to handle submissions [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.blogcarnival.com">BlogCarnival.com</a> has become an integral part of many blog carnivals.&nbsp; They were down for about a week with database maintenance.&nbsp; I know that this was probably quite hectic for them as well as for all of the carnival managers that depend on the features it brings to the table.</p>
<p>A reasonable backup plan to handle submissions is to post an e-mail address to send the submissions to, and ask for blog name, blog URL, post name, post URL, blogger name or screen name, and any remarks about the post.&nbsp; That covers most of the important things a host would need to put their carnival together.</p>
<p>This will work, but it can suffer from being a little bit too free-form.&nbsp; A better solution is to set up a submission form on the website with specific fields and with form validation.&nbsp; This requires a bit of scripting to pull off, but I found a great Wordpress form generator that let me roll my own submission form for the <a href="http://www.carnivalofdebtreduction.com">Carnival of Debt Reduction</a>.&nbsp; It&#8217;s the <a href="http://www.dagondesign.com/articles/secure-php-form-mailer-script/">Secure PHP Form Mailer Script by Dagon Design</a>.</p>
<p>Here&#8217;s what I did to put together <a href="http://www.carnivalofdebtreduction.com/submit/">the form you see here</a>:</p>
<ul>
<li>I downloaded the script, unpacked it, uploaded it to my wp-content/plugins directory, and activated it.&nbsp; Standard plugin installation.
<li>I signed up for a <a href="http://recaptcha.net/">Recaptcha</a> account for my spam retarder.&nbsp; This gave me the two keys I needed for the plugin.&nbsp; I selected the Recaptcha option and entered the two keys in the&nbsp; Plugins -&gt; DFFM-Main section in the Settings tab of my Wordpress admin section.
<li>I edited the submit page and added the code <strong>&lt;!&#8211; ddfm1 &#8211;&gt; </strong>to that page where I wanted the form to appear.&nbsp;&nbsp;
<li>I clicked on the DFFM1 tab to customize the form.&nbsp; For what you see on that form, this is what I put in the Form Structure portion: </li>
</ul>
<blockquote><p><strong>type=text|class=fmtext|label=Your Name|fieldname=fm_name|max=100|req=true <br />type=text|class=fmtext|label=Email|fieldname=fm_email|max=100|req=true|ver=email <br />type=text|class=fmtext|label=Blog Name|fieldname=fm_blog_name|max=100|req=true <br />type=text|class=fmtext|label=Blog URL|fieldname=fm_blog_url|max=100|req=true <br />type=text|class=fmtext|label=Post Title|fieldname=fm_post_title|max=100|req=true <br />type=text|class=fmtext|label=Post Permalink|fieldname=fm_permalink|max=100|req=true <br />type=text|class=fmtext|label=Post Trackback|fieldname=fm_trackback|max=100|req=false <br />type=verify|class=fmverify|label=Verify <br />type=textarea|class=fmtextarea|label=Remarks|fieldname=fm_remarks|max=1000|rows=6|req=false</strong></p>
</blockquote>
<ul>
<li>And here&#8217;s what I put into the Message Structure portion: </li>
</ul>
<blockquote><p><strong>Someone has submitted a post to the Carnival of Debt Reduction! </strong></p>
<p><strong>Email: fm_email <br />Blog Name: fm_blog_name <br />Blog URL:&nbsp; fm_blog_url <br />Name/Nickname: fm_name <br />Post Title: fm_post_title <br />Post Permalink: fm_permalink <br />Post Trackback: fm_trackback <br />Remarks:&nbsp; fm_remarks </strong></p>
<p><strong>Thanks!</strong></p>
</blockquote>
<ul>
<li>Those two points above are what define it as a carnival submission form.&nbsp; I think the rest of the options on the form customization page are self-explanatory and they&#8217;re best learned just by playing with them.
<li>One slightly-tricky thing I did was to change the text in the button to &#8220;Submit&#8221; rather than the default.&nbsp; The fix is to change one of the identifiers in the lang/English.php file: </li>
</ul>
<blockquote><p><strong>define(&#8217;DDFM_SUBMITBUTTON&#8217;, &#8216;Submit&#8217;);</strong></p>
</blockquote>
<p>And that&#8217;s mostly it.&nbsp; This is a decent way to get a carnival submission form up and running on Wordpress.&nbsp; Hope this helps you manage your carnival better!&nbsp; </p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/11/02/a-quick-roll-your-own-carnival-submission-form/feed/</wfw:commentRss>
		</item>
		<item>
		<title>An unfortunate reality of hosting a blog carnival</title>
		<link>http://blogcarnivaltips.com/2008/09/06/an-unfortunate-reality-of-hosting-a-blog-carnival/</link>
		<comments>http://blogcarnivaltips.com/2008/09/06/an-unfortunate-reality-of-hosting-a-blog-carnival/#comments</comments>
		<pubDate>Sun, 07 Sep 2008 02:54:55 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Commentary]]></category>

		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/09/06/an-unfortunate-reality-of-hosting-a-blog-carnival/</guid>
		<description><![CDATA[The larger benefit goes to the people who submit to the carnivals rather than to the people who put forth all of the effort to host them.
A number of bloggers I respect have figured this out already, and they&#8217;re fairly reluctant to host a carnival anymore.
They understand the benefit of regular submission to blog carnivals: [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The larger benefit goes to the people who submit to the carnivals rather than to the people who put forth all of the effort to host them.</strong></p>
<p>A number of bloggers I respect have figured this out already, and they&#8217;re fairly reluctant to host a carnival anymore.</p>
<p>They understand the benefit of regular submission to blog carnivals: free backlinks.</p>
<p>The host gets a few things out of the carnival, mainly a little bit of traffic over the course of the week that they host the carnival, and a bit of exposure for their blog.&#160; The people who submit to the carnival get a permanent benefit of a backlink that usually means an incremental amount of SEO benefit.&#160; If their post is really good, they may get additional traffic if the host makes that post an editor&#8217;s pick, but that is small compared to the long-term benefit of the backlink.</p>
<p><strong>I see hosting as becoming more of a small blog&#8217;s game, and this is unfortunate.&#160; </strong>My main blog is reasonably old by <a href="http://www.mightybargainhunter.com">personal finance blog</a> standards, but I&#8217;ve gotten on board to host a number of carnivals over the next three months or so.&#160; Some of my colleagues who have gotten a bit bigger than myself (currently at 3,000 subscribers) seem content to submit to several carnivals, sometimes with posts from several of their blogs, and rarely host any on their main blogs anymore.&#160; And, frankly, I don&#8217;t blame them!&#160; That&#8217;s the smart way to game the blog carnival system.</p>
<p>Some carnivals strongly encourage backlinks to the carnival from participating blogs; others <a href="http://www.carnivalofpersonalfinance.com">require</a> it.&#160; I applaud those who require backlinks as a contingency for participation in future carnivals, mainly for the reason that it keeps the hosts from feeling like they&#8217;re being used too badly.</p>
<p>I still have some interest from people who want to host the Carnival of <a href="http://www.carnivalofdebtreduction.com">Debt Reduction</a> but for some reason it seems to be a little bit harder to get people to step forward than it used to be.&#160; Maybe folks who host the carnivals see the diminishing return for the effort they put out.</p>
<p>This seems to be an issue that carnival managers need to take on.&#160; Some managers have implemented a &quot;terms and conditions&quot; clause in submitting to their carnival in order to establish some accountability for linking back.&#160; For managers reliant on BlogCarnival.com like myself, the best we can do at the moment is to add a clause in the submission instructions.</p>
<p>A key ingredient of blog carnivals is the hosts, and convincing potential hosts of a carnival of the benefits of hosting is getting more difficult.&#160; It&#8217;s necessary to put measures in place to keep people from taking advantage of the hosts too badly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/09/06/an-unfortunate-reality-of-hosting-a-blog-carnival/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Easy themes your blog carnival</title>
		<link>http://blogcarnivaltips.com/2008/08/22/easy-themes-your-blog-carnival/</link>
		<comments>http://blogcarnivaltips.com/2008/08/22/easy-themes-your-blog-carnival/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 06:12:30 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/08/22/easy-themes-your-blog-carnival/</guid>
		<description><![CDATA[Adding a theme to your carnival doesn&#8217;t have to be difficult.&#160; It can be as easy as looking around you and searching Wikipedia.
Interspersing a few interesting facts about a timely topic, regardless of whether that topic is closely tied to the particular blog carnival, dresses it up substantially.&#160; It&#8217;s way better than a bare list [...]]]></description>
			<content:encoded><![CDATA[<p>Adding a theme to your carnival doesn&#8217;t have to be difficult.&#160; It can be as easy as looking around you and searching <a href="http://www.wikipedia.org">Wikipedia</a>.</p>
<p>Interspersing a few interesting facts about a timely topic, regardless of whether that topic is closely tied to the particular blog carnival, dresses it up substantially.&#160; It&#8217;s way better than a bare list of links.</p>
<p>Here&#8217;s how I&#8217;ve done it:</p>
<ul>
<li><strong>Choose the topic.&#160; </strong>Around this past Independence Day I did an <a href="http://www.mightybargainhunter.com/2008/07/07/carinval-of-personal-finance-american-flag-edition/">American Flag themed Carnival of Personal Finance</a>.</li>
<li><strong>Go to Wikipedia.&#160; </strong>This is often a great place to get general-interest information on a particular topic.&#160; This topic was no exception.</li>
<li><strong>Read the entry and pick out four or five somewhat connected pieces of information.&#160; </strong>Write a few sentences on each piece of information.&#160; (Don&#8217;t just cut and paste from the article!)</li>
<li><strong>If there are images available, great!&#160; </strong>If they&#8217;re public domain, even better.&#160; That&#8217;s how the flags were.&#160; I uploaded them to my server.</li>
<li><strong>Break up the posts with the themed pieces.&#160; </strong>This makes the carnival read a bit more like a story, for a fraction of the effort that it would take to write the entire carnival in story format.</li>
<li><strong>As an added touch, </strong>tie in the theme of the carnival to the e-mail you send to the participating blogs.</li>
</ul>
<p>Themeing your carnival this way is a low-cost way to get a fair bit more buzz.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/08/22/easy-themes-your-blog-carnival/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Pay attention to the directions from the manager</title>
		<link>http://blogcarnivaltips.com/2008/06/30/pay-attention-to-the-directions-from-the-manager/</link>
		<comments>http://blogcarnivaltips.com/2008/06/30/pay-attention-to-the-directions-from-the-manager/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 03:16:38 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Commentary]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/06/30/pay-attention-to-the-directions-from-the-manager/</guid>
		<description><![CDATA[Blog carnivals are great tools for marketing a blog and getting some free backlinks, but there are few ways more effective at killing the proverbial goose that lays the proverbial golden eggs than ticking off the manager of the carnival by not following his/her directions!
If you repeatedly submit spam or overly commercial posts and the [...]]]></description>
			<content:encoded><![CDATA[<p>Blog carnivals are great tools for marketing a blog and getting some free backlinks, but there are few ways more effective at killing the proverbial goose that lays the proverbial golden eggs than <b>ticking off the manager of the carnival by not following his/her directions!</b></p>
<p>If you repeatedly submit spam or overly commercial posts and the manager says that these types of posts are not appreciated, then you risk getting blacklisted.</p>
<p>If you are required to link back to the week&#8217;s carnival if your post is accepted, and you blow it off, then you risk getting blacklisted.</p>
<p>If you badger the hosts enough, they&#8217;ll get back to the manager, and you&#8217;ll get blacklisted.</p>
<p>If you complain to the manager too often, he/she may get really sick of it and blacklist you for sport.</p>
<p>Pay attention to the manager of the carnival, follow the directions, and nobody will get hurt!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/06/30/pay-attention-to-the-directions-from-the-manager/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Try scheduling hosts in advance</title>
		<link>http://blogcarnivaltips.com/2008/04/29/try-scheduling-hosts-in-advance/</link>
		<comments>http://blogcarnivaltips.com/2008/04/29/try-scheduling-hosts-in-advance/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 05:26:05 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/04/29/try-scheduling-hosts-in-advance/</guid>
		<description><![CDATA[This is a rule that I don&#8217;t follow all the time, and it adds a lot of stress having to find a host from week to week.
The Carnival of Personal Finance has come to ask for hosts quarterly.  He asks for hosts about a month in advance, then decides over the next couple of [...]]]></description>
			<content:encoded><![CDATA[<p>This is a rule that I don&#8217;t follow all the time, and it adds a lot of stress having to find a host from week to week.</p>
<p>The <a href="http://www.carnivalofpersonalfinance.com">Carnival of Personal Finance</a> has come to ask for hosts quarterly.  He asks for hosts about a month in advance, then decides over the next couple of weeks who to have.  The schedule is then ready to go for three months, and it&#8217;s pretty much smooth sailing from there.</p>
<p>My <a href="http://www.carnivalofdebtreduction.com">Carnival of Debt Reduction</a> isn&#8217;t quite so big yet but here&#8217;s what I did the last time:</p>
<ul>
<li><b>I asked for hosts in a forum that is read by a lot of the bloggers in my niche.</b>  I received a number of requiests to host just from one post in the <a href="http://forums.moneyblognetwork.com">Money Blog Network Forums</a>.</li>
<li><b>After I assembled a bunch of interested hosts,</b> I sent an e-mail (bcc to all of them) with a tentative schedule that took all of their requests into account.</li>
<li><b>As people respond back to me,</b> the hosting schedule takes form.</li>
</ul>
<p>If your blog carnival has been around for a while then it makes sense to streamline how you set up your hosting schedule.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/04/29/try-scheduling-hosts-in-advance/feed/</wfw:commentRss>
		</item>
		<item>
		<title>5 ways to promote your blog carnival when you host</title>
		<link>http://blogcarnivaltips.com/2008/04/02/5-ways-to-promote-your-blog-carnival-when-you-host/</link>
		<comments>http://blogcarnivaltips.com/2008/04/02/5-ways-to-promote-your-blog-carnival-when-you-host/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 06:03:39 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/04/02/5-ways-to-promote-your-blog-carnival-when-you-host/</guid>
		<description><![CDATA[Here are a few tips on promoting your edition of a blog carnival that you&#8217;ve slaved away at:

Ask the bloggers who submitted articles to share the carnival with their readers.  This probably is only fair, and some carnival managers are requiring that submitters link back to the carnival or run the risk of being [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few tips on promoting your edition of a blog carnival that you&#8217;ve slaved away at:</p>
<ul>
<li><strong>Ask the bloggers who submitted articles to share the carnival with their readers.  </strong>This probably is only fair, and some carnival managers are requiring that submitters link back to the carnival or run the risk of being blacklisted.</li>
<li><strong>Use any trackbacks you&#8217;re given and find the ones that you&#8217;re not.  </strong>Trackbacks are similar to permalinks but they are used to automatically post a comment linking from the trackback link&#8217;s post to the site that initiated the trackback.  This places a few links back to the carnival on the submitting bloggers&#8217; posts.</li>
<li><strong>Use StumbleUpon to bring some juice to the carnival. </strong> If you think that Stumbling your own posts is shady, then try this:  Stumble your Editor&#8217;s Picks, and then let those bloggers know that you&#8217;ve done this and ask them to Stumble the carnival for you.  This way it looks more natural.</li>
<li><strong>Use social networking avenues </strong>like Twitter, Del.icio.us, etc. to announce the carnival.</li>
<li><strong>Ping the BlogCarnival.com sidebar widget.  </strong>Quite a few bloggers have a running list of posted carnivals on their sidebar.  Pinging this service will display the link there and might send you some traffic.<strong>  </strong></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/04/02/5-ways-to-promote-your-blog-carnival-when-you-host/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Empower your hosts</title>
		<link>http://blogcarnivaltips.com/2008/03/04/empower-your-hosts/</link>
		<comments>http://blogcarnivaltips.com/2008/03/04/empower-your-hosts/#comments</comments>
		<pubDate>Tue, 04 Mar 2008 08:57:54 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/03/04/empower-your-hosts/</guid>
		<description><![CDATA[Managing a blog carnival can be really easy if you have great hosts.  Great hosts write inventive posts for the carnivals and help to promote the carnival.  It&#8217;s their edition of the carnival, so a good reflection on them is a good reflection on you.
My Carnival of Debt Reduction is no exception.  I have great [...]]]></description>
			<content:encoded><![CDATA[<p>Managing a blog carnival can be really easy if you have great hosts.  Great hosts write inventive posts for the carnivals and help to promote the carnival.  It&#8217;s <em>their </em>edition of the carnival, so a good reflection on them is a good reflection on you.</p>
<p>My <a href="http://www.carnivalofdebtreduction.com">Carnival of Debt Reduction</a> is no exception.  I have great hosts.  I&#8217;m not the most organized person in the world, and they keep me in line and make sure the carnival&#8217;s covered if I fall behind a little bit.  It&#8217;s a great position to be in to have that kind of support from your hosts.</p>
<p><strong>I hope that part of this support stems from me basically letting them do what they want.  </strong>I try very hard not to micromanage and to empower them to put together their carnivals however they see fit.  Some of the hosts are pretty liberal with the topics of posts accepted into the carnivals, and others really want the posts to be closely tied to the carnival&#8217;s theme, which is on debt reduction resources and stories.  Most things are fine with me.  Why?</p>
<ul>
<li><strong>It&#8217;s my carnival, but it&#8217;s their blogs.  </strong>Bloggers absolutely have to have control on what goes up on their blogs.  If I demand which posts should be included, then I take that freedom away from them.</li>
<li><strong>It removes any barriers that I might impose.  </strong>If hosts have to seek approval from me, it slows them down, and things don&#8217;t go as smoothly.</li>
<li><strong>They have different opinions than I do on the topic.  </strong>It&#8217;s this diversity of viewpoints that keeps the carnival fresh.</li>
<li><strong>I don&#8217;t like remembering a lot of rules.  </strong>This is a personality trait of mine, but a lot of rules give me hives.</li>
</ul>
<p>Empowering your hosts means trusting them to put together a good carnival and to ask when there&#8217;s a question.  The carnivals are wins for everyone, and most hosts already know this, so it&#8217;s easy for me to just let them do what they want, and let everyone reap the benefits.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/03/04/empower-your-hosts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dealing with spammy submissions</title>
		<link>http://blogcarnivaltips.com/2008/02/03/dealing-with-spammy-submissions/</link>
		<comments>http://blogcarnivaltips.com/2008/02/03/dealing-with-spammy-submissions/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 05:47:15 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2008/02/03/dealing-with-spammy-submissions/</guid>
		<description><![CDATA[As a blog carnival gets more popular, the number of submissions goes up, and the traffic the carnival gets goes up as well.&#160; This is good.&#160; Unfortunately, this popularity also attracts posts that are of marginal quality or are highly commercial.&#160; Or, people will submit several posts to a single edition of the carnival.&#160; Spammy [...]]]></description>
			<content:encoded><![CDATA[<p>As a blog carnival gets more popular, the number of submissions goes up, and the traffic the carnival gets goes up as well.&nbsp; This is good.&nbsp; Unfortunately, this popularity also attracts posts that are of marginal quality or are highly commercial.&nbsp; Or, people will submit several posts to a single edition of the carnival.&nbsp; <i>Spammy</i> is a good word to describe these posts and these submitters.</p>
<p>It gets annoying after a while.&nbsp; <a href="http://www.blogcarnival.com">BlogCarnival.com</a> has enough safeguards that the &#8220;spam&#8221; is limited, but as of now there&#8217;s nothing to prevent someone from going down the line of carnivals and submitting the same post to every single one, or from submitting multiple posts to a single carnival edition.&nbsp; Here are a few ways to handle these kinds of unwanted submissions:
<ul>
<li><b>Leave it up to the host to use editorial discretion.&nbsp; </b>This has worked so far with the <a href="http://www.carnivalofdebtreduction.com">Carnival of Debt Reduction</a>, but some of the hosts are beginning to complain.&nbsp; And rightfully so, I suppose.</li>
<li><b>E-mail the offending poster </b>and ash him/her to post more normally.</li>
<li><b>Ban the offender </b>if the submissions get bad enough or if s/he doesn&#8217;t take the hint.</li>
<li><b>Move the submission form off site.&nbsp; </b>The <a href="http://www.carnivalofpersonalfinance.com">Carnival of Personal Finance</a> did this, and the submissions still seem to be up.&nbsp; <a href="http://www.mightybargainhunter.com/2007/10/15/welcome-to-carnival-of-personal-finance-122/">The last time I hosted</a> the spam was pretty moderate if not non-existent.&nbsp; This might cause a hit in the number of submissions initially, but after a while the posting should get better.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2008/02/03/dealing-with-spammy-submissions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Do due diligence with hosts</title>
		<link>http://blogcarnivaltips.com/2007/12/30/do-due-diligence-with-hosts/</link>
		<comments>http://blogcarnivaltips.com/2007/12/30/do-due-diligence-with-hosts/#comments</comments>
		<pubDate>Sun, 30 Dec 2007 09:54:42 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2007/12/30/do-due-diligence-with-hosts/</guid>
		<description><![CDATA[Getting hosts for your carnival can be tough.&#160; It takes organization to keep things moving, and sometimes the hosting schedule gets tight.
It&#8217;s tempting to jump at the first person who offers.&#160; That&#8217;s fine but be sure to do some due diligence.
Meaning check out their blog.&#160; Is it a place that you&#8217;d want to have the [...]]]></description>
			<content:encoded><![CDATA[<p>Getting hosts for your carnival can be tough.&nbsp; It takes organization to keep things moving, and sometimes the hosting schedule gets tight.</p>
<p>It&#8217;s tempting to jump at the first person who offers.&nbsp; That&#8217;s fine but <b>be sure to do some due diligence.</p>
<p></b>Meaning check out their blog.&nbsp; Is it a place that you&#8217;d want to have the carnival posted at?&nbsp; Is the blog ready for the carnival (assuming it&#8217;s a popular carnival)?</p>
<p>I didn&#8217;t check out someone&#8217;s blog for the carnival that I manage.&nbsp; There were some questionable advertisements (almost not safe for work) in the sidebar, but I had already asked the person to host.&nbsp; I had to apologize to the person I asked to host and eat a lot of crow.&nbsp; If I hadn&#8217;t, I might get someone fired who checked the carnival at work on break, which wouldn&#8217;t be good at all.</p>
<p>Word to the wise:&nbsp; Don&#8217;t do what I did, and check your hosts&#8217; blogs out before extending the invitation to host.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2007/12/30/do-due-diligence-with-hosts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Communicate with your hosts</title>
		<link>http://blogcarnivaltips.com/2007/11/27/communicate-with-your-hosts/</link>
		<comments>http://blogcarnivaltips.com/2007/11/27/communicate-with-your-hosts/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 03:42:12 +0000</pubDate>
		<dc:creator>mbhunter</dc:creator>
		
		<category><![CDATA[Managing]]></category>

		<guid isPermaLink="false">http://blogcarnivaltips.com/2007/11/27/communicate-with-your-hosts/</guid>
		<description><![CDATA[If you&#8217;re managing a carnival then you know how important your hosts are.&#160; They can make managing the carnival a piece of cake.&#160; And if they volunteer to host, they likely know what it entails and will put together a good carnival for you, the carnival readers, and for the submitters.
Once in a while, though, [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re managing a carnival then you know how important your hosts are.&nbsp; They can make managing the carnival a piece of cake.&nbsp; And if they volunteer to host, they likely know what it entails and will put together a good carnival for you, the carnival readers, and for the submitters.</p>
<p>Once in a while, though, life gets in the way, someone forgets, someone gets kicked down by a really bad cold, someone dies, etc.&nbsp; The carnival may (rightfully) take a back seat for the moment while things get sorted out.&nbsp; A week ago the host for the <a href="http://www.carnivalofdebtreduction.com">Carnival of Debt Reduction</a> got really ill and didn&#8217;t post.&nbsp; I finally saw her online and asked where the carnival was.&nbsp; She told me that she was sick, and I stepped in and did the carnival for her.</p>
<p>Now, I was pretty sure something was wrong because this particular host was on top of things in previous editions of the carnival.&nbsp; Even though I had to approach her as to why the carnival wasn&#8217;t posted, the day of the carnival was the first time that I actually tried to remind her.&nbsp; <b>This was a mistake.</b>&nbsp; I should have checked before then.&nbsp; Here are a few tips to keep on top of your carnival hosts (in an unobtrusive way):
<ul>
<li><b>A few days before the carnival, check the e-mail account where the submissions go.&nbsp; </b>If it&#8217;s a Gmail account, then if the host has read them, they&#8217;ll be marked read unless the host (a) hasn&#8217;t read them yet or (b) deliberately marked them unread again.&nbsp; It&#8217;s a positive indicator if they&#8217;re marked read, but inconclusive if they&#8217;re not marked read. <img src='http://blogcarnivaltips.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </li>
<li><b>Email the host to remind them of the carnival and ask for a response.&nbsp; </b>It&#8217;s important to ask them for a response to make sure it&#8217;s still in the cards for them to host.&nbsp; I&#8217;ve found most hosts will respond if you ask them to.</li>
<li><b>If the carnival isn&#8217;t posted on time, politely look for an answer.&nbsp; </b>It&#8217;s common sense to me not to dump on your hosts, but it&#8217;s always better to assume something&#8217;s wrong than to accuse.</li>
<li><b>Pinch hit if necessary.&nbsp; </b>It may be that you end up dressing up an InstaCarnival just to get the carnival edition out the door.&nbsp; If this is the case, then definitely be sure to e-mail all of the participants so that they know where the carnival is, because they&#8217;ll be expecting it somewhere else.&nbsp; I found it was helpful to explain why the carnival moved at the last minute, and folks had sympathy for the sick host.</li>
</ul>
<p>It&#8217;s definitely better to communicate more with your hosts.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogcarnivaltips.com/2007/11/27/communicate-with-your-hosts/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
