<?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>Ed Schipul &#187; mobile</title>
	<atom:link href="http://eschipul.com/category/mobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://eschipul.com</link>
	<description>Web Marketing, PR, Sociology, Photography</description>
	<lastBuildDate>Thu, 09 Sep 2010 00:00:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Adding eBook epub and mobi downloads to WordPress</title>
		<link>http://eschipul.com/2010/08/adding-ebook-epub-and-mobi-downloads-to-wordpress/</link>
		<comments>http://eschipul.com/2010/08/adding-ebook-epub-and-mobi-downloads-to-wordpress/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 22:26:51 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[electronic publishing]]></category>
		<category><![CDATA[epub]]></category>
		<category><![CDATA[mobi]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress configuration]]></category>

		<guid isPermaLink="false">http://eschipul.com/?p=3199</guid>
		<description><![CDATA[A few technical notes if you want to add ebooks (.epub and .mobi file formats) downloads to your wordpress site. We encountered three obstacles, file size, upload restrictions and file association. Here are the solutions. WordPress File Size Limits are Too Low WordPress by default only allows 2 meg uploads and only of particular file [...]]]></description>
			<content:encoded><![CDATA[<p>A few technical notes if you want to add ebooks (.epub and .mobi file formats) downloads to your <a href="http://wordpress.com">wordpress site</a>. We encountered three obstacles, file size, upload restrictions and file association. Here are the solutions.</p>
<h2>WordPress File Size Limits are Too Low</h2>
<p>WordPress by default only allows 2 meg uploads and only of particular file types. Unfortunately .epub and .mobi are not among the default file types that are allowed by WordPress.</p>
<p>First the bad news &#8211; if you want to increase the allowed file sizes for uploads you have to modify the php.ini file. Depending on your hosting provider this may or may not be easy. See Bill Erickson&#8217;s post on <a href="http://www.billerickson.net/increase-wordpress-upload-limit-on-bluehost/">increasing allowed file uploads in WordPress</a>.</p>
<h2>File Types That can be uploaded in WordPress</h2>
<p>Hopefully this will change, but currently .mobi and .epub are obscure. So you have to configure WordPress to allow them on most hosting providers.</p>
<p>We are running the <a href="http://diythemes.com/">WordPress Thesis theme</a> on this particular site so the solution to <a href="http://www.wprecipes.com/wordpress-tip-allow-upload-of-more-file-types">add file types for upload was found here</a> and is abbreviated below.</p>
<p>In the Thesis custom_functions.php file add this php code using the WordPress editor. But don&#8217;t make a typo as after that you would have to FTP in to fix it. Hypothetically speaking. Here is the function modified from the link above.</p>
<pre>function addUploadMimes($mimes) {
    $mimes = array_merge($mimes, array(
        'epub|mobi' =&gt; 'application/octet-stream'
    ));
    return $mimes;
}
add_filter('upload_mimes', 'addUploadMimes');</pre>
<p>The above example only includes the .epub and .mobi examples, but if you want more just pipe-filetype further where the code says &#8216;epub|mobi&#8217;.</p>
<h2>Change the Content-Type for epub Files Served by Apache and WordPress</h2>
<p>All fixed, right? Not so fast. WordPress serves unknown files with the content-type of &#8220;Content-Type text/plain&#8221; in the HTTP header. You can see this using the <a href="http://www.rexswain.com/httpview.html">excellent long-lasting Rex Swain HTTP viewer</a>.</p>
<p>The problem is that while Windows handles the misidentified .epub files fine, Macs freak out and show you the binary. You click it on a Mac and see garbage. Not cool. Must fix.</p>
<p>I found this post in the <a href="http://docs.webfaction.com/software/static.html">WebFaction support on adding epub to the .htaccess file to change content-type by file extension</a>. A bit of modification and I found adding this to the application root .htaccess file did the trick</p>
<pre>AddType application/epub+zip .epub
AddType application/x-mobipocket-ebook .mobi</pre>
<p>A word of caution &#8211; BE CAREFUL WITH YOUR HTACCESS file! It probably already exists so be sure to download-backup-modify-upload-via-ssh for maximum security. Or really sFTP is plenty secure as well.</p>
<h2>Other epub and mobi pit-falls to look out for</h2>
<p>The ePub must be strictly validated. it is really a Zip compressed directory with it&#8217;s own MIME type specification. And XML that must be valid. Google &#8220;<a href="http://www.google.com/search?q=epub+validation">epub validation</a>&#8221; if the above list did not solve your problem and go from there.</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2010/08/adding-ebook-epub-and-mobi-downloads-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Wipe a Blackberry Clean</title>
		<link>http://eschipul.com/2007/10/how-to-wipe-a-blackberry-clean/</link>
		<comments>http://eschipul.com/2007/10/how-to-wipe-a-blackberry-clean/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 23:03:58 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://eschipul.com/2007/10/how-to-wipe-a-blackberry-clean/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>I had trouble figuring this out, so here goes. To completely wipe your blackberry clean varies by device. But it can be done. I had a 7100 series and the steps are:</p>
<ol>
<li>Settings (looks like a folder with gears on the top right)</li>
<li>Options (just has two gears)</li>
<li>Security Options &#8211; select this from the visible menu by scrolling down</li>
<li>General Settings &#8211; select this from the visible menu by scrolling down</li>
<li>&lt;&lt; Press Scroll Wheel in &gt;&gt; &#8211; this shows a scroll wheel menu</li>
<li>On the resulting <strong>scroll wheel menu</strong> there is an option to &quot;wipe handheld&quot; &#8211; That is what you want.</li>
</ol>
<p>I mention this because several places on the interwebs told me to go to options and select &quot;wipe handheld&quot; but of course this ONLY shows up for this particular device in a scroll wheel menu.</p>
<p>Other sources (<a href="http://www.blackberrytoday.com/articles/2007/2/2007-2-15-Tip-Wipe-Your-uo1.html">clear blackberry</a>) and (<a href="https://www.eaccessinc.com/Support/BB_FAQ_General.htm">blackberry faq</a>)</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2007/10/how-to-wipe-a-blackberry-clean/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Shelly Palmer does NOT like the iPhone</title>
		<link>http://eschipul.com/2007/07/shelly-palmer-does-not-like-the-iphone/</link>
		<comments>http://eschipul.com/2007/07/shelly-palmer-does-not-like-the-iphone/#comments</comments>
		<pubDate>Mon, 23 Jul 2007 17:07:03 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://eschipul.com/2007/07/shelly-palmer-does-not-like-the-iphone/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>See &quot;<a href="http://www.shellypalmerblog.com/?p=476">iPhone Reality/Sanity Check &#8211; my iWish list</a>&quot; &#8211; Shelly sort of doesn&#8217;t like it.</p>
<p>And I confess. Yes I bought an iPhone. No, I did *not* port my number and I am still carrying my blackberry. I got burned so bad on a craptacular windows mobile unit from HP a while back that I was wary this time. Apparently that was a good thing. And everyone is enjoying borrowing the iPhone for a few days at a time to test web sites with and such.</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2007/07/shelly-palmer-does-not-like-the-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Development PPT Uploaded to SlideShare</title>
		<link>http://eschipul.com/2007/07/iphone-development-ppt-uploaded-to-slideshare/</link>
		<comments>http://eschipul.com/2007/07/iphone-development-ppt-uploaded-to-slideshare/#comments</comments>
		<pubDate>Tue, 10 Jul 2007 22:24:32 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://eschipul.com/2007/07/iphone-development-ppt-uploaded-to-slideshare/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>It is exactly two days past <a href="http://barcamp.org/iPhoneDevCamp">iPhoneDevCamp</a> in sunny San Francisco. Given we did not have a speaker scheduled for <a href="http://netsquared.meetup.com/3/">Netsquared Houston</a> <a href="http://netsquared.meetup.com/3/calendar/5885048/">tonight</a> (we do for the next three months, just not tonight) I took the opportunity to put together a <a href="http://www.slideshare.net/eschipul/i-phone-developer-introduction-by-eschipul/">developers introduction to the iPhone</a>. The slides were just posted to slideshare. And here they are (much better with a presenter).</p>
<p><object width="425" height="348" type="application/x-shockwave-flash" data="https://s3.amazonaws.com/slideshare/ssplayer.swf?id=76274&amp;doc=i-phone-developer-introduction-by-eschipul2790"><param name="movie" value="https://s3.amazonaws.com:443/slideshare/ssplayer.swf?id=76274&amp;doc=i-phone-developer-introduction-by-eschipul2790" /></object></p>
<p>Please consider these <a href="http://creativecommons.org/">creative commons with attribution</a>. Yes use the <a href="http://www.slideshare.net/eschipul/i-phone-developer-introduction-by-eschipul/">iPhone Developer Training PPT</a>, please do give credit and share the improvements you make. Thanks! &#8211; Ed</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2007/07/iphone-development-ppt-uploaded-to-slideshare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adobe Hosting iPhoneDevCamp</title>
		<link>http://eschipul.com/2007/07/adobe-hosting-iphonedevcamp/</link>
		<comments>http://eschipul.com/2007/07/adobe-hosting-iphonedevcamp/#comments</comments>
		<pubDate>Sat, 07 Jul 2007 01:57:06 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://eschipul.com/2007/07/adobe-hosting-iphonedevcamp/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"> <a title="photo sharing" href="http://www.flickr.com/photos/eschipul/743092489/"><img src="http://farm2.static.flickr.com/1341/743092489_1348e00780_m.jpg" style="border: 2px solid rgb(0, 0, 0);" /></a> <br /> <span style="font-size: 0.9em; margin-top: 0px;">&nbsp; <a href="http://www.flickr.com/photos/eschipul/743092489/">Adobe Hosting iPhoneDevCamp</a>&nbsp; <br />&nbsp; Originally uploaded by <a href="http://www.flickr.com/people/eschipul/">eschipul</a> </span></div>
<p>In San Fran for <a href="http://barcamp.org/iPhoneDevCamp">iPhoneWebDev version of BarCamp</a>. Barcamp is a self organized conference. To put this in perspective. To explain the power of social software tools. This iPhone conference with <a href="http://barcamp.org/iPhoneDevCampAttendees">400 people in attendance</a> was organized by volunteers in a three week period.</p>
<p>Let me repeat that &#8211; three volunteers started a process that resulted in corporate sponsorships and over 400 attendees with no money and only social software tools. </p>
<p>I&#8217;ll keep posting as things progress. It should be interesting if a bit intimidating.</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2007/07/adobe-hosting-iphonedevcamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhoneDevCamp in San Francisco &#8211; yea!</title>
		<link>http://eschipul.com/2007/07/iphonedevcamp-in-san-francisco-yea/</link>
		<comments>http://eschipul.com/2007/07/iphonedevcamp-in-san-francisco-yea/#comments</comments>
		<pubDate>Fri, 06 Jul 2007 12:39:58 +0000</pubDate>
		<dc:creator>eschipul</dc:creator>
				<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://eschipul.com/2007/07/iphonedevcamp-in-san-francisco-yea/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p>Headed to San Francisco this morning for BarCamp and mainly the <a href="http://barcamp.org/iPhoneDevCamp">iPhone Developers Camp</a>. <a href="http://barcamp.org/iPhoneDevCampAttendees">iPhoneDevCamp Attendees over 325</a> at the moment and the Adobe Guest wireless supports 200. And oh ya, all of us will have wifi enabled iPhones to make that a 640-200=440 deficit. Oh THIS is going to work. But hey, with all of those innovators in the room we will come up with something.</p>
<p>Resources read, cached on the browser or printed are:</p>
<ol>
<li>Select <a href="http://barcamp.org/iPhoneDevCamp">iPhoneDevCamp wiki pages</a> </li>
<li><a href="http://developer.apple.com/iphone/">iPhone Developers Guide</a> from Apple</li>
<li><a href="http://www.marketcircle.com/iphoney/">iPhoney emulator</a> installed on the MacBook</li>
<li>I am *not* installing <a href="http://developer.apple.com/opensource/internet/webkit.html">WebKit</a> as I am counting on Safari to do that for me.</li>
<li><a href="http://www.aptana.com/download_all.php">Installed Aptana web dev IDE on the Mac</a>. This is new to me but it has an iPhone plugin so I am going to test it a bit.</li>
<li>Looked up how to <strong>reboot the iPhone</strong>. Hold &quot;home&quot; button (bottom front) and &quot;sleep&quot; button (top of phone) down for 8 seconds. </li>
</ol>
<p>A couple of other iPhone thoughts on this and social software. First note the graphics from Apple on the developers guide. The iPhone is a <strong>view port</strong> and it doesn&#8217;t have &quot;windows&quot; &#8211; it just has a view port. </p>
<p>It does not support Flash or Java Packages as far as I can tell. So fly out navigation appears to be a serious issue. Will learn about that at camp I suppose, but I do know <a href="http://schipul.com">our nav is not working</a> on the iPhone. Luckily we have a sitemap, but we need a more prominent link to it.</p>
<p>Note the barcamp wiki is locked down for edits on any page besides attendees. I have ranted on this before, the point is that complete freedom on the Internets (heh) quickly attracts spam links. Attacks are part of the system. Just noting a common theme that goes against what we verbally talk about. Wikis are great if moderated in some fashion IMHO.</p>
<p>And now for another quick trip to San Fran. Hopefully Continental will bump me again!</p>
]]></content:encoded>
			<wfw:commentRss>http://eschipul.com/2007/07/iphonedevcamp-in-san-francisco-yea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
