<?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>Covered &#187; wpg2</title>
	<atom:link href="http://www.ryanbarr.com/tag/wpg2/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ryanbarr.com</link>
	<description>Options, Economics, Futures, Politics and a bit of the Barr Family scattered in between</description>
	<lastBuildDate>Thu, 10 Jun 2010 02:40:30 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My Journey to Wordpress &#8211; Part 4</title>
		<link>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-4</link>
		<comments>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-4#comments</comments>
		<pubDate>Thu, 03 Jan 2008 04:48:36 +0000</pubDate>
		<dc:creator>Ryan Barr</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[vslider3]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpg2]]></category>

		<guid isPermaLink="false">http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-4</guid>
		<description><![CDATA[The next article in a the series "My Journey to Wordpress."  In this article I discuss my tweaks to the vSlider theme, including how to get the lightbox script to work just right...]]></description>
			<content:encoded><![CDATA[<p></p><p>Holy crap, this is getting long!  I figured when I started writing about my journey it would maybe be 3 articles, max.  I&#8217;m easily going to hit five now.</p>
<p>Well, onto the journey&#8230;</p>
<h2>Customizing vSlider3</h2>
<p>I&#8217;ll be totally honest here &#8211; I decided to make the switch after installing the vSlider3 theme.  This thing has to be the coolest, most customizable theme I have ever seen.  I was flat out blown away!</p>
<p>When you install this theme, there is an entire <em>Options</em> pane that allows you to change all of the colors, icons, headers, footers, sidebars and just about everything else!  Not only that, you can setup &#8220;color schemes&#8221; for the site so that with a click of a button you can go from theme A to theme B.</p>
<p>It is very, very cool. However&#8230; not everything is completely customizable.  So I hacked away a bit <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The key things that you&#8217;ll likely want to change with the vSlider theme are the fonts.  I wasn&#8217;t thrilled with the default package of fonts, so I went in search of the typography settings.  Unfortunately they are buried in a bunch of different style sheets.  The good news is that they are commented quite nicely.  You&#8217;ll find the fonts in the default stylesheet.css file, along with all of the .css files in the styles folder in the theme.  Most of the stuff you&#8217;ll be looking for will be in the style_post.css and style_header.css <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h2>Header</h2>
<p>The vSlider3 theme has a ton of header customizations available.  You can toggle the header border, enable the &#8220;rotating&#8221; header images and a bunch of other stuff.  However, by default the navigation links at the top are not in the rounded border.  I didn&#8217;t like the way this looked so I had to make a few tweaks.</p>
<p>In order to get the nav links in the right spot, you need to open up the header.php file as well as it&#8217;s supporting .css files.  I&#8217;d be happy to send my copies out of you need a sample to support your needs, <strike>they are fairly specific to this site so I didn&#8217;t upload them</strike>. 
<a  href="http://www.ryanbarr.com/wordpress/wp-content/uploads/2008/02/ryanbarrcom_headercss.zip" title="Header Files for ryanbarr.com" onclick="javascript:pageTracker._trackPageview('/downloads/wordpress/wp-content/uploads/2008/02/ryanbarrcom_headercss.zip');" >Click here to download the Header Files for ryanbarr.com.</a></p>
<p>These are very specific for my site, so please look through them and clean them up as you see fit.</p>
<p>If you want to include the rss link (as I did here on my site) make sure to copy the code out of the sidebar.php file to take advantage of the customizable icons.  It is pretty nice when tweaking the theme.</p>
<h2>Lightbox</h2>
<p>Enabling lightboxing was a little trickier.  The vSlider theme supports the lightbox script out of the box, WPG2 supports lightbox out of the box.  However, vSlider and WPG2 don&#8217;t use the same lightbox configurations.  If you download and install the lightbox plugin as recommended by the vSlider webpage, you&#8217;ll have a mess on your hands.</p>
<p>I&#8217;m sure this isn&#8217;t the <em>best<strong> </strong></em>way to fix it &#8211; but this is what I did! Enable lightboxing in the WPG2 plugin -&gt; lightbox configuration page.  Turn it on for everything!  Then, open up the file in theme.inc in your gallery vSlider3 theme. Do a search for $theme['lightbox_plugin_active'].  Delete whatever is on that line and replace it with $theme['lightbox_plugin_active']  = true;</p>
<h3>Handling multiple picture sizes in the lightbox&#8230;</h3>
<p>Now, if you are uploading big monster files, you&#8217;ll probably notice right away that the vSlider theme is picking up your <em>huge</em> version for the lightbox.  Here at ryanbarr.com I have gallery configured to create 3 versions of each file, a 640&#215;480, 800&#215;600 and 1024&#215;768 version, I&#8217;d like to show the 800&#215;600 version in the lightbox.</p>
<p>To accomplish this, you need to change two things.</p>
<p>In the theme.inc file you&#8217;ll need to add the following to the end of the loadWordpressOptions function, right after $theme['columnWidthPct'] = floor(100 / $params['columns']):</p>
<pre> /* Add resizedId to child values, required for Lightbox JS */
    if ( $theme['children'] ){
	foreach ( $theme['children'] as $key =&gt; $value ){
	if ( $value['id'] ){
	    list($ret,$resizedIds) =
    GalleryCoreApi::fetchResizesByItemIds(array($value['id']));
	    if ($ret)
	    return $ret;
	}
	$theme['children'][$key]['resizedId'] = $value['id'];
	if ( $resizedIds ){
	    /* Find the best resized option
	     *
	     * Use width/height max=800; */
	    $lboxMaxEdge = 800;
	    $resizedEdge = NULL;
	    $resizedId = NULL;
	    foreach ( $resizedIds[$value['id']] as $resize ){
	    $width = $resize-&gt;getWidth();
	    $height = $resize-&gt;getHeight();
	    $edge = ( $width &gt; $height )? $width : $height;
	    if ( $edge &lt;= $lboxMaxEdge ){
		if ( !isset($resizedEdge) ){
		$resizedId = $resize-&gt;getId();
		$resizedEdge = $edge;
		} else if ( $edge &gt; $resizedEdge ){
		$resizedId = $resize-&gt;getId();
		$resizedEdge = $edge;
		}
	    }
	    }
	    $theme['children'][$key]['resizedId'] = $resizedId;
	}
	}
    }
/* end add resizedId to child values, required for Lightbox JS */</pre>
<p>Then, make a copy of the album.tpl file (located in gallery/themes/vSlider3/templates) and put in in gallery/themes/vSlider3/templates/local.</p>
<p>In that file, change <em>href=&#8221;{g-&gt;url arg1=&#8221;view=core.DownloadItem&#8221; arg2=&#8221;itemId=`$child.id`&#8221;}&#8221;</em> on line 46 to <em>href=&#8221;{g-&gt;url arg1=&#8221;view=core.DownloadItem&#8221; arg2=&#8221;itemId=`$child.resizedId`&#8221;}&#8221;</em></p>
<p>That should fix your the lightbox issues.  If you&#8217;d like a size other than 800&#215;600 as your lightboxed image, just change this <em>$lboxMaxEdge = 800; </em>to the right size in theme.inc.</p>
<p>Be careful when upgrading the vSlider3 theme!  The theme.inc file has been changed, and your &#8220;local&#8221; copy of album.tpl will override the new copy that you download.</p>
<p><em>Another note&#8230;.<strong> </strong></em>somehow, my theme.inc had extra lines at the end of it.  If yours does &#8211; <strong>delete them</strong>. They will only cause problems</p>
<h3>More lightbox stuff</h3>
<p>If you want to put a ton of pictures in a single post, but not show them all&#8230; You&#8217;ll need to do just a bit more work.</p>
<p>Add this to your stylesheet.css file:</p>
<pre>.hidden_lightbox_image {
     display: none;
}</pre>
<p>Then add hidden_lightbox_image as a custom class on the WPG2 -&gt; G2Image options page.</p>
<p>Then&#8230; when you want to put all of those photos into a post do the following</p>
<ul>
<li>For the item that you want to show on the page.  Click the G2Image button in your editor, pick the photo, chose your style (Normal, Left, Right etc&#8230;) and insert it.</li>
<li>Then, for all of the rest of the photos&#8230; Somewhere in the post (at the end is probably best) select all of those photos from the G2Image chooser and set the style to hidden_lightbox_image.</li>
</ul>
<p>I pulled this from the old Gallery Forums at 
<a  href="http://www.galleryembedded.com/forums/viewtopic.php?p=38666" title="Lightbox Forum Entry" onclick="javascript:pageTracker._trackPageview('/external/www.galleryembedded.com/forums/viewtopic.php');" >this link</a>.</p>
<h2>Sidebar</h2>
<p>I didn&#8217;t like the way that the theme setup the default sidebar.  You can choose to either &#8220;disable&#8221; the default sidebar through the theme options, or go in and hack the php.  I chose the php route as I liked a few of the things the vSlider3 theme did out of the box.</p>
<p>This one is really straight forward, so I&#8217;m not going to go into depth here.  It was a case of delete this, keep that, move the other thing.  Nothing big here, but plenty of tweaking happened.  Again &#8211; <em>upgrades beware!</em></p>
<h2> Plug-ins&#8230;</h2>
<p>Well, now that that theme is tweaked and I like what I see it&#8217;s time to deal with my stockquote stuff.  In my next article on My Journey to Wordpress I&#8217;ll talk about plug-ins.  Developing a plugin, tweaking an existing one to make it a <em>widget</em> and a few of the fun tools I&#8217;m using on ryanbarr.com</p>
<p>Stay tuned!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-4/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>My Journey to Wordpress &#8211; Part 2</title>
		<link>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-2</link>
		<comments>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-2#comments</comments>
		<pubDate>Mon, 31 Dec 2007 22:30:22 +0000</pubDate>
		<dc:creator>Ryan Barr</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[textpattern]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpg2]]></category>

		<guid isPermaLink="false">http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-2</guid>
		<description><![CDATA[For part two of &#8220;My Journey to Wordpress&#8221; I&#8217;m going to talk about setup and configuration.  I mentioned that my host does a simplified installation of both wordpress and gallery.  It made the first part of this really, really easy.   I literally, log into my administration web-panel, then click install.
After about [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>For part two of &#8220;My Journey to Wordpress&#8221; I&#8217;m going to talk about setup and configuration.  I mentioned that my host does a simplified installation of both wordpress and gallery.  It made the first part of this really, really easy.   I literally, log into my administration web-panel, then click install.</p>
<p>After about 5-10 minutes I had emails in my inbox letting me know that the software was up and running.  <em>Excellent!</em> I logged into wordpress, and it was setup in no time flat, gallery was a little more cumbersome, but  still quite simple to setup really.</p>
<p>With the gallery setup, a few of the plugins needed additional configuration so they didn&#8217;t work right out of the box.  But that was no big deal.  Now that gallery and wordpress were both <em>independently</em> working, it was time to hook them together and then pass off the site.</p>
<p>To install the WPG2 plugin, just download, unzip, ftp/ssh/sftp/whatever the files over to your wordpress plugins directory.  After installing, enable the plugin then head over the to the WPG2 tab in the admin interface.</p>
<p>General configuration of the WPG2 was pretty straight forward.  The URL rewrites section gave me a little bit of trouble, so make sure to enable and disable it in Gallery <em>first</em>.  Then try it in WPG2.  You&#8217;ll also need to download two additional Gallery plugins per the WPG2 docs.  That process was very straightforward in the Gallery admin panel, click on plugins then the second tab <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> , download, activate, enjoy.</p>
<p>Now the trouble begins&#8230;</p>
<p>I had this great setup all ready to go, Gallery 2 integrated with wordpress!  It was perfect. I clicked on the WPG2 page and saw this horrible theme that didn&#8217;t fit into wordpress at all!  <em>Uh-oh</em></p>
<p>I figured that I must have missed something.  Being the a developer type, and a guy, I didn&#8217;t bother to read the instructions,  I just stared clicking and watching the error messages.  So I figured, what the heck, let&#8217;s see what the docs have to say.   A quick google for WPG2 takes me to the old plugin homepage, put luckily there was a link to the &#8220;new&#8221; 
<a  href="http://codex.gallery2.org/Integration:WPG2_QuickStart" target="_blank" title="WPG2 Plugin Homepage" onclick="javascript:pageTracker._trackPageview('/external/codex.gallery2.org/Integration:WPG2_QuickStart');" >homepage </a>via wordpress.org.  On the homepage I see a quickstart guide &#8211; <em>perfect!</em> Or not&#8230;</p>
<p>The quickstart said to to exactly what I did! I&#8217;ve got wordpress and gallery integrated, heck I can even use the snazzy gallery picker while writing my articles&#8230; but the page looks horrible!</p>
<p>I figure that it must be a theme thing or something, so now it is time to go and figure that one out.  Back to google.  I did a quick search for &#8220;wpg2 wordpress theme&#8221; and came up with a few interesting hits.</p>
<ul>
<li>The first a site with a bunch of modified wordpress themes that are &#8220;optimized&#8221; for gallery&#8230; I have no idea what that means, it wasn&#8217;t in the quickstart&#8230; I didn&#8217;t realize you needed to <em>optimize</em> for this integration&#8230;  Bookmark it, comeback later.</li>
<li>Next, that old help forum&#8230; it rules in the google search so be careful!  Just a bunch of php nonsense.  I don&#8217;t know php &#8211; and I don&#8217;t want to know it!  That is what I loved about textpattern&#8230; <em>wordpress is beginning to piss me off</em>.</li>
<li>Next, another site from the old forum&#8230; Didn&#8217;t they move all of this stuff?!!? <em>Wait!! Something that might be useful!<br />
</em></li>
</ul>
<blockquote><p><span style="text-decoration: underline">Before you begin</span></p>
<ul>
<li><span class="postbody">  &#8211; if you need to modify the header.php file of the Wordpress theme to suite your needs, try to do this before proceeding<br />
- it&#8217;s recommended that you use a Gallery2 theme which is optimized for Wordpress integration, like the 
<a  href="http://www.galleryembedded.com/forums/viewtopic.php?t=2636" title="Wordpress Embedded" target="_blank" class="postlink" onclick="javascript:pageTracker._trackPageview('/external/www.galleryembedded.com/forums/viewtopic.php');" >WordpressEmbedded Gallery2 Theme</a> for Gallery 2.1 or the 
<a  href="http://www.galleryembedded.com/forums/viewtopic.php?t=625" title="Wordpress Gallery2 Theme" target="_blank" class="postlink" onclick="javascript:pageTracker._trackPageview('/external/www.galleryembedded.com/forums/viewtopic.php');" >Wordpress Gallery2 Theme</a> for Gallery 2.0.x. </span></li>
</ul>
</blockquote>
<p><strong>Aha! </strong>There is some sort of wordpress embdeded Gallery 2 theme.  That makes sense&#8230; Since I&#8217;m using a version of Gallery 2 that is above 2.1 that might just be the ticket.  <em>Download, install.</em></p>
<p>Okay, so now gallery has a new theme.  It&#8217;s pretty boring, but what the heck, I haven&#8217;t seen it in wordpress yet.  That site at the Gallery 2 old forum mentioned something about the header.php file&#8230; Whatever, lets see what we get <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>Not good&#8230;</em> Okay, so it&#8217;s not totally plug and play.  This is becoming painfully obvious.   And what happened to the quick start, <em>this isn&#8217;t feeling so quick now</em>!</p>
<p><strong>Stop!  </strong>I&#8217;m working on my friends site&#8230; this isn&#8217;t going to work.  The site looks like crap, I&#8217;m hacking a live version and this just isn&#8217;t good&#8230; <em>Detour</em>.  Reset my development instance of ryanbarr.com.  Install of the the files from my host, re-configure and walk through the steps I&#8217;ve taken so far&#8230; <em>a while later&#8230;</em> <strong>Resume</strong>, on my development instance of my personal site.</p>
<blockquote><p><em>Now you see how I got roped into this whole mess&#8230; Since I&#8217;m already working on it to figure it all out&#8230; </em></p></blockquote>
<p>Next step, lets try hooking into the &#8220;bookmarked&#8221; link I found earlier.  I download a few of the &#8220;optimized&#8221; themes, activate and suddenly all is well in the world. The blog, and the gallery are working perfectly <em>together</em> &#8211; but why?  I realize that I have no idea why this is suddenly working, the <em>quick start</em> guide wasn&#8217;t so quick and now I&#8217;m lost.  Okay, time to read some more.</p>
<p>Back to the 
<a  href="http://codex.gallery2.org/Integration:WPG2" target="_blank" title="Gallery 2 Integration" onclick="javascript:pageTracker._trackPageview('/external/codex.gallery2.org/Integration:WPG2');" >official homepage of the plugin</a>. Under <em>WPG2 Operations</em> I finally find a few pieces of what I&#8217;m looking for.  But it is sparse to and sort of fragmented.  Again, no mention of this elusive Gallery 2 theme I found while googling, the only thing close was a page that was &#8220;under construction,&#8221; it linked back to the place I found my Galley 2 theme&#8230; So I guess if you look hard enough it is there, not <em>not</em> obvious.</p>
<p>Well, At this point I&#8217;m still a little lost, and don&#8217;t really have any desire to learn php <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  (I do happen to know about 13 other programming/scripting languages, so i guess another one can&#8217;t hurt).  What I really want it a customizable theme that doesn&#8217;t require me to re-do all of the work I just did in textpattern!</p>
<p><em>The support forums&#8230;</em> Lets see, click, click, click, there we go&#8230; Found them! The support forums are 
<a  href="http://gallery.menalto.com/forum/81" title="Gallery 2 Plugin Support Forum" target="_blank" onclick="javascript:pageTracker._trackPageview('/external/gallery.menalto.com/forum/81');" >located here</a>.  There are three options, if your looking for help with themes etc&#8230; go to 
<a  href="http://gallery.menalto.com/forum/84" title="Themes etc..." target="_blank" onclick="javascript:pageTracker._trackPageview('/external/gallery.menalto.com/forum/84');" >WPG2 CSS/Layout Support</a>.  Don&#8217;t bother with the other areas, they will help if you have other integration issues <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The forums are excellent!  The guys that work the plugins seem to have answered all of the questions quickly and I was able to find what I needed&#8230; My theme 
<a  href="http://irui.ac/cool-stuff/vslider3/" title="vSlider3" onclick="javascript:pageTracker._trackPageview('/external/irui.ac/cool-stuff/vslider3/');" >vSlider3</a> this particular theme seemed to have it all.  Customization, integration into gallery, options, configuration, no php required! <em>Download, install!</em></p>
<p><em>Why didn&#8217;t I start at the support forums&#8230;</em> Oh yeah, they are buried in the google results!  That will work itself out with time&#8230;</p>
<p>Now I&#8217;ve installed vSlider3 and have a working site!  Excellent!</p>
<p>Okay&#8230; now that this is all working, lets see about getting all of our content back into wordpress like it was in textpattern.  Off to the admin panel, manage -&gt; import -&gt; textpattern -&gt; <em><strong>oh crap</strong>.</em></p>
<p>In my next installment&#8230; Read about the joys of importing data from textpattern, and what I did about sections&#8230; <strong>What do you mean wordpress doesn&#8217;t have sections?!?!?!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Journey to Wordpress &#8211; Part 1</title>
		<link>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-1</link>
		<comments>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-1#comments</comments>
		<pubDate>Sun, 30 Dec 2007 20:21:37 +0000</pubDate>
		<dc:creator>Ryan Barr</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[textpattern]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wpg2]]></category>

		<guid isPermaLink="false">http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-1</guid>
		<description><![CDATA[Wow&#8230;
I never thought I would do this, but I&#8217;ve dumped textpattern.  It actually came  about rather quickly and I&#8217;m quite happy after doing it.   Just a few weeks ago, Megan and I began the process of re-vamping the website.  She really wanted to start blogging some more, and well, I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Wow&#8230;</p>
<p>I never thought I would do this, but I&#8217;ve dumped textpattern.  It actually came  about rather quickly and I&#8217;m quite happy after doing it.   Just a few weeks ago, Megan and I began the process of re-vamping the website.  She really wanted to start blogging some more, and well, I needed to stop slacking off and start really blogging again.  We talked about the options and figured that a re-design of ryanbarr.com was the way to go.  It&#8217;s been quite a journey.  One that I&#8217;ll probably split over a few posts so that this one isn&#8217;t obscenely long!</p>
<p>Anyhow, here is the story&#8230; I started off by <em>completely </em>re-doing the site in textpattern.  I nabbed a pretty nice theme from 
<a  href="http://www.textplates.com" title="Textpattern Themes - Textplates.com" onclick="javascript:pageTracker._trackPageview('/external/www.textplates.com');" >textplates.com</a>, and then dove in. After working out with Megan how we should manage the whole site, we decided to move a ton of content around (which of course wreaked havoc on my  google placements) and totally reset the way a bunch of things were handled. I installed a ton of new textpattern plug-ins to try and make the administration a little more user friendly and even wrote a few myself to handle some stock quote functionality I was looking for.  After spending a few weekends working on it, we finally had it ready to go.</p>
<p>Then a good friend of mine asked me to help her setup a new website &#8211; 
<a  href="http://www.michellerenephotography.com" title="Michelle Rene Photography" onclick="javascript:pageTracker._trackPageview('/external/www.michellerenephotography.com');" >michellerenephotography.com</a>.</p>
<blockquote><p>My response: No problem! I&#8217;d be happy to help you out.  Lets get a domain setup, I&#8217;ve got a great host that you can work with etc&#8230;</p></blockquote>
<p>Then the kicker&#8230; &#8220;We&#8217;ll you know, it&#8217;s a photography site.   I&#8217;d really like to have some serious image management.  Really, I&#8217;d like it to be a gallery first, then a blog second.&#8221;</p>
<p><em>Serious image management?</em></p>
<p>I wasn&#8217;t quite sure how to approach it. I&#8217;ve been using textpattern for quite some time, and have built quite a few client sites using it. Textpattern is a great CMS, but <em>serious image management</em> is <strong>not </strong>it&#8217;s strong point.   So, like any good open source kinda guy I went in search of an existing project.  I happened to stumble upon a project called Gallery 2, and a wordpress plug-in called WPG2.  Interesting&#8230; a full image management studio with pre-existing integration into wordpress.  This could be worth a try.</p>
<p>The only hangup that I had was, well&#8230; I&#8217;d never used wordpress, and the last time I looked at it customization and theme&#8217;s were all handled through php hacks.  Not nearly as elegant a design as textpattern.</p>
<p>I was a little more than skeptical, but I figured what the heck.  It&#8217;s her site and  if I can get her started I&#8217;m sure she can finish it off.  So, after a bit more research, I was ready to install.  Given that 
<a  href="http://www.michellerenephotography.com" title="Michelle Rene Photography" onclick="javascript:pageTracker._trackPageview('/external/www.michellerenephotography.com');" >michellrenephotography.com</a> is a brand new site, I put the tools up and started hacking away.</p>
<p>My host does a cool quick install of both wordpress and gallery2 so we were off to the races quickly.  I got the two systems up and running, did a bit of quick configuration and then went about getting the plug-in working.  That is when I realized that there was no way on earth she was going to get this all figured out without some serious help.  Permissions, themes, configuration, ssh, linux and a ton of other things that are way to <em>geeky</em> for her to understand.  Well, I figured I&#8217;d better dig in&#8230;</p>
<p>As I worked on getting things working, I found that wordpress had evolved quite a bit since the last time I took a look.  Quite frankly, I was  downright impressed with it!  I&#8217;ll walk through my challenges and learning through this hole process over the next few posts&#8230;</p>
<p>Stay tuned to hear about the configuration and setup of the WPG2 plug-in.  The core of the blog/gallery setup that runs ryanbarr.com <img src='http://www.ryanbarr.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.ryanbarr.com/webdevelopment/my-journey-to-wordpress-part-1/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
