<?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>Izikistan &#187; wordpress</title>
	<atom:link href="http://isaac.wedin.org/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://isaac.wedin.org</link>
	<description>Isaac Wedin&#039;s blog</description>
	<lastBuildDate>Thu, 05 Jan 2012 20:30:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WordPress + IIS = Suck</title>
		<link>http://isaac.wedin.org/2008/07/17/wordpress-iis-suck/</link>
		<comments>http://isaac.wedin.org/2008/07/17/wordpress-iis-suck/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 17:16:32 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/?p=185</guid>
		<description><![CDATA[I&#8217;d heard it&#8217;s difficult to get WordPress working well on an IIS host but had never experienced it myself. In my case the install appeared to be working, but then looked like it&#8217;d failed on step 2. Browsing to the &#8230; <a href="http://isaac.wedin.org/2008/07/17/wordpress-iis-suck/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d heard it&#8217;s difficult to get WordPress working well on an IIS host but had never experienced it myself. In my case the install appeared to be working, but then looked like it&#8217;d failed on step 2. Browsing to the site, the text was all there, but clearly the style sheet hadn&#8217;t been loaded. The internal links were also all messed up, with &#8220;?step=2&#8243; thrown in instead of the folder name where I&#8217;d installed the blog. A bunch of browsing of the WordPress forums revealed widespread IIS problems and a few proposed solutions. I tried a couple, involving editing wp-settings.php, but without effect.</p>
<p>I thought maybe the fixes I found were specific IIS server setups, but not necessarily mine. So, I looked at my sorry IIS server&#8217;s phpinfo() output, which revealed some obvious problems with my wp-settings.php. Apparently IIS/PHP doesn&#8217;t set some of the variables that WordPress wants, so WordPress attempts to create those variables, based on variables it supposes IIS/PHP ought to set. But my server&#8217;s variables weren&#8217;t named quite right for WordPress to suss out the variables it wanted. I changed the variable names in wp-settings.php to match my phpinfo() output and it worked.</p>
<p>I did end up having to delete the database tables for each install attempt. I don&#8217;t know how many people run into install issues, but if there are a lot maybe it&#8217;d make sense for WordPress to do some sort of post-install sanity check. Even better if that sanity check involved a form where one could hardcode in those problematic server variables.</p>
<p><strong>Update:</strong> I should have seen this coming based on what I saw browsing the forums earlier, but the admin emails from WordPress wouldn&#8217;t work out of the box. I&#8217;d guess that the dear IIS host I&#8217;m working with has had issues with spam so they don&#8217;t allow PHP to send unauthorized mail. Fortunately, there&#8217;s a plugin that lets you manually set WordPress to use an arbitrary SMTP server. There are actually a couple, but <a href="http://wordpress.org/extend/plugins/wp-mail-smtp/">WP Mail SMTP</a> is working for me.</p>
<p><strong>Another update:</strong> I just installed another instance of WP on the same IIS host and had a little different experience. First I tried installing without changing anything in wp-settings.php. The install failed when I went to the install page through index.php, but I thought I&#8217;d try going directly to wp-admin/install.php before editing anything. For some reason that worked just fine, maybe because then the relative paths worked?</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2008/07/17/wordpress-iis-suck/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading WordPress using rsync</title>
		<link>http://isaac.wedin.org/2007/03/06/upgrading-wordpress-using-rsync/</link>
		<comments>http://isaac.wedin.org/2007/03/06/upgrading-wordpress-using-rsync/#comments</comments>
		<pubDate>Wed, 07 Mar 2007 00:20:11 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2007/03/06/upgrading-wordpress-using-rsync/</guid>
		<description><![CDATA[After the recent flurry of WordPress upgrades I started looking for an easier way to upgrade. This post at techites.com was a good start, but this comment on the post, using rsync, sounded much easier. Here&#8217;s the workflow I figured &#8230; <a href="http://isaac.wedin.org/2007/03/06/upgrading-wordpress-using-rsync/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After the recent flurry of WordPress upgrades I started looking for an easier way to upgrade. <a href="http://techtites.com/2007/03/03/upgrading-wordpress-via-shell/">This post at techites.com</a> was a good start, but <a href="http://techtites.com/2007/03/03/upgrading-wordpress-via-shell/#comment-1123">this comment</a> on the post, using rsync, sounded much easier. Here&#8217;s the workflow I figured out:</p>
<ul>
<li><code>wget <a href="http://wordpress.org/latest.zip" rel="nofollow">http://wordpress.org/latest.zip</a></code> (download the latest version)</li>
<li><code>unzip wordpress-XXX.zip</code> (extract it)</li>
<li><code>mv wordpress [your-site's-folder-name]</code> (rename the wordpress folder to the name of the folder your blog lives in on the server)</li>
<li><code>rsync -avrz [your-site's-folder-name] [username@server]:[path-to-blog-folder]</code> (update the remote folder with the local folder)</li>
</ul>
<p>Repeat the last two steps for each install you want to update. I&#8217;m sure it&#8217;s possible to write a script to do this for a whole bunch of installs at once if desired. You may want to test all this out on your local testing server beforehand.</p>
<p><strong>Update:</strong> Jonathan&#8217;s right, Subversion is a VERY easy way to update WordPress&#8230;once you&#8217;ve got it set up. <a href="http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion">This Codex page</a> describes the process. It&#8217;s easiest to do if you&#8217;re either just setting up your blog or if you only have a couple of plugins or themes installed. There are other benefits to using Subversion. You can easily switch from using the current release version to using the bleeding edge version, for instance to test out a release candidate. The WP Subversion repository also wasn&#8217;t affected by the recent security exploit, so there may be a security advantage.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2007/03/06/upgrading-wordpress-using-rsync/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fixing author pages in WP</title>
		<link>http://isaac.wedin.org/2005/12/16/fixing-author-pages-in-wp/</link>
		<comments>http://isaac.wedin.org/2005/12/16/fixing-author-pages-in-wp/#comments</comments>
		<pubDate>Fri, 16 Dec 2005 22:12:58 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/12/16/fixing-author-pages-in-wp/</guid>
		<description><![CDATA[I just noticed that my author pages at wedin.org were pretty messed up and now that I&#8217;ve fixed them I figured I&#8217;d make some notes about what I did. The first problem: Giving the admin a nickname that&#8217;s the same &#8230; <a href="http://isaac.wedin.org/2005/12/16/fixing-author-pages-in-wp/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just noticed that my <a href="http://codex.wordpress.org/Author_Templates">author pages</a> at <a href="http://wedin.org/">wedin.org</a> were pretty messed up and now that I&#8217;ve fixed them I figured I&#8217;d make some notes about what I did.</p>
<p><strong>The first problem:</strong> Giving the admin a nickname that&#8217;s the same as an existing username breaks that user&#8217;s author page.</p>
<p>I thought it would be nice to give the admin user the nickname &#8216;isaac&#8217; because then when I commented on posts without remembering to log out the comments would say &#8216;isaac&#8217; rather than the Orwellian &#8216;admin.&#8217; Obviously, I wasn&#8217;t thinking straight &#8211; one should only do serious admin tasks when logged in as the admin. The danger of making a mistake isn&#8217;t the only drawback &#8211; it somehow confuses WordPress, breaking the author archive page of the user whose nickname the admin uses. This may only happen with permalinks &#8211; I didn&#8217;t investigate it extensively.</p>
<p><strong>The solution:</strong> Set the admin&#8217;s nickname back to &#8216;admin&#8217; (and log out after doing admin stuff!). Or I guess you could promote your normal user high enough to do most admin tasks.</p>
<p><strong>The second problem:</strong> Broken author pages for users with &#8216;@&#8217; and such in their usernames.</p>
<p>Some of my users have registered using their email addresses as usernames. That shouldn&#8217;t be a problem &#8211; WordPress allows &#8216;@&#8217; and &#8216;.&#8217; in usernames, so it should be able to deal with them, right? Apparently not with permalinks turned on. Without permalinks the author page receives an author ID to identify which posts to show. With permalinks the author page receives the author nicename to identify which posts to get. Unfortunately, the WordPress function the codex suggests using to get the author info is get_userdatabylogin(), which wants (duh) the author&#8217;s login. The login has things like &#8216;@&#8217; and &#8216;.&#8217; but the nicename does not. So, for my users crazy enough to use their email addresses for login names the author page was showing nothing.</p>
<p><strong>The solution:</strong> Rewrite the author page to use this query instead of get_userdatabylogin():</p>
<p><code>$wpdb-&gt;get_row("SELECT * FROM $wpdb-&gt;users WHERE user_nicename = '$queried_name'");</code></p>
<p>This should probably be in a cascade of if&#8230;else statements so that turning off permalinks doesn&#8217;t break the author page.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/12/16/fixing-author-pages-in-wp/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photopress is moving</title>
		<link>http://isaac.wedin.org/2005/10/31/photopress-is-moving/</link>
		<comments>http://isaac.wedin.org/2005/10/31/photopress-is-moving/#comments</comments>
		<pubDate>Tue, 01 Nov 2005 00:07:55 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/10/31/photopress-is-moving/</guid>
		<description><![CDATA[See familypress.net for a new version of Photopress. I figured it could use a home of its own. Might be nice to have something like a forum there too.]]></description>
			<content:encoded><![CDATA[<p>See <a href="http://familypress.net/">familypress.net</a> for a new version of Photopress. I figured it could use a home of its own. Might be nice to have something like a forum there too.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/10/31/photopress-is-moving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Photopress 0.6</title>
		<link>http://isaac.wedin.org/2005/06/09/photopress-06/</link>
		<comments>http://isaac.wedin.org/2005/06/09/photopress-06/#comments</comments>
		<pubDate>Thu, 09 Jun 2005 22:39:34 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/06/09/photopress-06/</guid>
		<description><![CDATA[It seems to be working well enough to package another release. I appreciate all of the bug reports I&#8217;ve gotten. If your favorite annoyance isn&#8217;t fixed or listed below as &#8216;known,&#8217; please let me know. The biggest improvement is in &#8230; <a href="http://isaac.wedin.org/2005/06/09/photopress-06/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It seems to be working well enough to package another release. I appreciate all of the bug reports I&#8217;ve gotten. If your favorite annoyance isn&#8217;t fixed or listed below as &#8216;known,&#8217; please let me know.</p>
<p>The biggest improvement is in the album manager. Thumbnails can now be turned off, which should help with large image collections. It&#8217;s also now paged by category, which should help too. The delete function should work properly now.</p>
<p><strong>Download <a href="http://isaac.wedin.org/wp-content/files/photopress.zip">photopress.zip</a> or <a href="http://isaac.wedin.org/wp-content/files/photopress.tar.gz">photopress.tar.gz</a>.</strong></p>
<p>You can always find the most recent version (and older versions too if you know where to look) at <a href="http://dev.wp-plugins.org/browser/photopress/">wp-plugins.org</a>.</p>
<p><strong>Known issues:</strong></p>
<ul>
<li><strong>no dropdowns in the album manager:</strong> haven&#8217;t figured out how to do this yet</li>
<li><strong>descriptions aren&#8217;t stored:</strong> the description you enter in the uploader is only used to make the image tag to insert in a post &#8211; it&#8217;s not stored in the database</li>
<li><strong>missing options:</strong> see <a href="http://isaac.wedin.org/2005/04/04/fixing-the-missing-options-thing/">this post</a> for details (upgrade to the latest WP to fix this)</li>
<li><strong>broken buttons:</strong> try enabling the failsafe buttons on the options page</li>
<li><strong>broken album layout:</strong> edit album.php, in the photopress folder</li>
<li><strong>bad paths:</strong> the plugin tries to guess the right paths, but it sometimes fails &#8211; you can set the paths manually at the end of photopress-inc.php</li>
<li><strong>resizing fails:</strong> your GD install needs to be working properly, sometimes re-installing seems to trick it into working</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/06/09/photopress-06/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
		</item>
		<item>
		<title>Photopress 0.5.1 for testing</title>
		<link>http://isaac.wedin.org/2005/05/27/photopress-051-for-testing/</link>
		<comments>http://isaac.wedin.org/2005/05/27/photopress-051-for-testing/#comments</comments>
		<pubDate>Fri, 27 May 2005 14:34:06 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/05/27/photopress-051-for-testing/</guid>
		<description><![CDATA[I finally added a delete function, but I haven&#8217;t had a lot of time to test it out yet. As far as I can tell it doesn&#8217;t do anything really harmful, but you never know. I also figured out how &#8230; <a href="http://isaac.wedin.org/2005/05/27/photopress-051-for-testing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I finally added a delete function, but I haven&#8217;t had a lot of time to test it out yet. As far as I can tell it doesn&#8217;t do anything really harmful, but you never know.</p>
<p>I also figured out how to list posts containing an image. It&#8217;s turned off by default because it doesn&#8217;t work perfectly &#8211; the default sidebar thinks individual images in the album are searches when it&#8217;s turned on. This can be fixed by editing sidebar.php, but that&#8217;s lame.</p>
<p>Finally, Photopress now looks in your theme folder for a template called pp_album.php and uses that for the album template if it exists. Seems like it makes more sense for custom album templates to go in with the theme files, and now when upgrading there&#8217;ll be no need to worry about overwriting your custom template. If it doesn&#8217;t find a custom template it still just uses the default.</p>
<p>So, if you want to try it out, download <a href="http://isaac.wedin.org/wp-content/files/photopress-0.5.1.zip">photopress-0.5.1.zip</a> or <a href="http://isaac.wedin.org/wp-content/files/photopress-0.5.1.tar.gz">photopress-0.5.1.tar.gz</a>. Let me know if you find anything broken, or if you have ideas about how to make it work better.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/05/27/photopress-051-for-testing/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WP 1.5.1 &amp; Photopress</title>
		<link>http://isaac.wedin.org/2005/05/12/wp-151-photopress/</link>
		<comments>http://isaac.wedin.org/2005/05/12/wp-151-photopress/#comments</comments>
		<pubDate>Thu, 12 May 2005 21:30:27 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/05/12/wp-151-photopress/</guid>
		<description><![CDATA[I guess I need to re-subscribe to the WP release notification list because it&#8217;s been 3 whole days since WP 1.5.1 was released. I upgraded my testbed and the latest Photopress seems to work well so far. As I&#8217;d hoped, &#8230; <a href="http://isaac.wedin.org/2005/05/12/wp-151-photopress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I guess I need to re-subscribe to the WP release notification list because it&#8217;s been 3 whole days since <a href="http://wordpress.org/development/2005/05/one-five-one/">WP 1.5.1 was released</a>. I upgraded my testbed and the latest Photopress seems to work well so far. As I&#8217;d hoped, <a href="http://isaac.wedin.org/2005/04/04/fixing-the-missing-options-thing/">the missing options page problem</a> is now fixed, at least in a quick test of Photopress and <a href="http://ryanduff.net/projects/wp-contactform/">WP Contact Form</a>. I&#8217;d love to hear whether 1.5.1 fixes the path issues that Windows users have been having.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/05/12/wp-151-photopress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photopress 0.5</title>
		<link>http://isaac.wedin.org/2005/05/09/photopress-05/</link>
		<comments>http://isaac.wedin.org/2005/05/09/photopress-05/#comments</comments>
		<pubDate>Mon, 09 May 2005 20:38:58 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/05/09/photopress-05/</guid>
		<description><![CDATA[The biggest change is that the album category editor now groups images by category, so it sucks a little less. This release also includes a few bug fixes related to deleting an image or its thumbnail. This week I&#8217;m working &#8230; <a href="http://isaac.wedin.org/2005/05/09/photopress-05/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The biggest change is that the album category editor now groups images by category, so it sucks a little less. This release also includes a few bug fixes related to deleting an image or its thumbnail. This week I&#8217;m working on a way to delete images, separate user levels for Upload and Browse, </p>
<p><strong>Download <a href="http://isaac.wedin.org/wp-content/files/photopress.zip">photopress.zip</a> or <a href="http://isaac.wedin.org/wp-content/files/photopress.tar.gz">photopress.tar.gz</a>.</strong></p>
<p>You can always find the most recent version (and older versions too if you know where to look) at <a href="http://dev.wp-plugins.org/browser/photopress/">wp-plugins.org</a>.</p>
<p><strong>Known issues:</strong></p>
<ul>
<li><strong>missing options:</strong> see <a href="http://isaac.wedin.org/2005/04/04/fixing-the-missing-options-thing/">this post</a> for details</li>
<li><strong>broken buttons:</strong> try enabling the failsafe buttons on the options page</li>
<li><strong>broken album layout:</strong> edit album.php, in the photopress folder</li>
<li><strong>bad paths:</strong> the plugin tries to guess the right paths, but it sometimes fails &#8211; you can set the paths manually at the end of photopress-inc.php</li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/05/09/photopress-05/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Photopress 0.4.2</title>
		<link>http://isaac.wedin.org/2005/04/16/photopress-042/</link>
		<comments>http://isaac.wedin.org/2005/04/16/photopress-042/#comments</comments>
		<pubDate>Sat, 16 Apr 2005 08:01:58 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/04/16/photopress-042/</guid>
		<description><![CDATA[Really just a small change &#8211; the album style is now all in album.php (in the photopress folder, which should be in your plugins folder). This should make it much easier for those of you using non-default themes to integrate &#8230; <a href="http://isaac.wedin.org/2005/04/16/photopress-042/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Really just a small change &#8211; the album style is now all in album.php (in the photopress folder, which should be in your plugins folder). This should make it much easier for those of you using non-default themes to integrate the album.</p>
<p><strong>Download <a href="http://isaac.wedin.org/wp-content/files/photopress.zip">photopress.zip</a> or <a href="http://isaac.wedin.org/wp-content/files/photopress.tar.gz">photopress.tar.gz</a>.</strong></p>
<p>You can always find the most recent version (and older versions too if you know where to look) at <a href="http://dev.wp-plugins.org/browser/photopress/">wp-plugins.org</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/04/16/photopress-042/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Photopress 0.4.1</title>
		<link>http://isaac.wedin.org/2005/04/05/photopress-041/</link>
		<comments>http://isaac.wedin.org/2005/04/05/photopress-041/#comments</comments>
		<pubDate>Tue, 05 Apr 2005 08:34:25 +0000</pubDate>
		<dc:creator>isaac</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://isaac.wedin.org/2005/04/05/photopress-041/</guid>
		<description><![CDATA[Thanks to Jonathan the &#8220;upsizing&#8221; issue is now fixed &#8211; when you upload images smaller than your set maximum they won&#8217;t get resized. I&#8217;ve also switched the buttons to Alex King&#8217;s JS Quicktags, which seems to be compatible with ContactForm &#8230; <a href="http://isaac.wedin.org/2005/04/05/photopress-041/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Thanks to Jonathan the &#8220;upsizing&#8221; issue is now fixed &#8211; when you upload images smaller than your set maximum they won&#8217;t get resized. I&#8217;ve also switched the buttons to <a href="http://www.alexking.org/index.php?content=software/javascript/content.php">Alex King&#8217;s JS Quicktags</a>, which seems to be compatible with <a href="http://ryanduff.net/wp-plugins/wp-contactform/">ContactForm</a> (no surprise since that&#8217;s where I borrowed the function from).</p>
<p><strong>Download <a href="http://isaac.wedin.org/wp-content/files/photopress.zip">photopress.zip</a> or <a href="http://isaac.wedin.org/wp-content/files/photopress.tar.gz">photopress.tar.gz</a>.</strong></p>
<p>You can always find the most recent version (and older versions too if you know where to look) at <a href="http://dev.wp-plugins.org/browser/photopress/">wp-plugins.org</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://isaac.wedin.org/2005/04/05/photopress-041/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic
Content Delivery Network via Amazon Web Services: CloudFront: cloud.isaac.wedin.org

Served from: isaac.wedin.org @ 2012-02-09 09:27:09 -->
