<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: exhibit-to-wp-gallery</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: exhibit-to-wp-gallery</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 00:51:46 +0000</pubDate>

<item>
<title>mir123 on "[Plugin: Exhibit to WP Gallery] Exhibit description to WP Gallery Title field"</title>
<link>http://wordpress.org/support/topic/227521#post-1051583</link>
<pubDate>Tue, 21 Apr 2009 00:35:36 +0000</pubDate>
<dc:creator>mir123</dc:creator>
<guid isPermaLink="false">1051583@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Fantastic, Michiel!  Thanks a lot!
&#60;/p&#62;</description>
</item>
<item>
<title>mir123 on "[Plugin: Exhibit to WP Gallery] Wordpress 2.7 compatibility"</title>
<link>http://wordpress.org/support/topic/224810#post-1051132</link>
<pubDate>Mon, 20 Apr 2009 17:18:53 +0000</pubDate>
<dc:creator>mir123</dc:creator>
<guid isPermaLink="false">1051132@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hello Michiel,&#60;/p&#62;
&#60;p&#62;I've read you managed to get Exhibit working up to 2.5, I have it running in 2.2 but would like to migrate using the new migration plugin.  &#60;/p&#62;
&#60;p&#62;Did you have to make any changes to the plugin to get it working under 2.5?  What about 2.7, have you tried the migration?
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] set timestamp of imported Exhibit attachments"</title>
<link>http://wordpress.org/support/topic/228038#post-935965</link>
<pubDate>Wed, 24 Dec 2008 16:56:45 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">935965@http://wordpress.org/support/</guid>
<description>&#60;p&#62;To make it perfect change / add the following around 220:&#60;br /&#62;
This will help to ensure &#34;date added&#34; in the media library reflects the date of the parent post.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Construct the attachment array
	$attachment = array_merge( array(
		&#38;#39;post_mime_type&#38;#39; =&#38;gt; $type,
		&#38;#39;guid&#38;#39; =&#38;gt; $url,
		&#38;#39;post_parent&#38;#39; =&#38;gt; $post_id,
		&#38;#39;post_title&#38;#39; =&#38;gt; $title,
		&#38;#39;post_content&#38;#39; =&#38;gt; $content,
		&#38;#39;post_date&#38;#39; =&#38;gt; $parentdate,
		&#38;#39;post_date_gmt&#38;#39; =&#38;gt; $parentdate,
		&#38;#39;post_modified&#38;#39; =&#38;gt; $parentdate,
		&#38;#39;post_modified_gmt&#38;#39; =&#38;gt; $parentdate,
	), $post_data );&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] set timestamp of imported Exhibit attachments"</title>
<link>http://wordpress.org/support/topic/228038#post-935616</link>
<pubDate>Wed, 24 Dec 2008 02:42:32 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">935616@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Well hey, with some searching in the codex I seem to improve my coding skills:-). Add around line 136 the following line:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$parentdate = $wpdb-&#38;gt;get_var(&#38;quot;SELECT post_date FROM $wpdb-&#38;gt;posts WHERE ID=&#38;#39;$p-&#38;gt;post_ID&#38;#39;&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Ulf Benjaminsson: maybe consider the above for a 0.003 release? It makes it so much nice to navigate the images in the media library when they are stored with the correct dates.
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] set timestamp of imported Exhibit attachments"</title>
<link>http://wordpress.org/support/topic/228038#post-935231</link>
<pubDate>Tue, 23 Dec 2008 19:51:31 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">935231@http://wordpress.org/support/</guid>
<description>&#60;p&#62;mmm... when I use:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;$parentdate = mysql_query(&#38;quot;SELECT post_date FROM $wpdb-&#38;gt;posts WHERE ID=&#38;#39;$p-&#38;gt;post_ID&#38;#39;&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;I get back in the image post in the media library:&#60;br /&#62;
0000-00-00 00:00:00&#60;/p&#62;
&#60;p&#62;What is the correct method to get the post_date from the parent post?
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] set timestamp of imported Exhibit attachments"</title>
<link>http://wordpress.org/support/topic/228038#post-935087</link>
<pubDate>Tue, 23 Dec 2008 17:40:38 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">935087@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Think I almost got it, but stuck at one area.&#60;/p&#62;
&#60;p&#62;I did the following:&#60;/p&#62;
&#60;p&#62;Around line 136 I added the following code to determine the parent post post_date. Unfortunately this line does not yet do the trick and I am not able to get the post_date. When I use some test date it works perfect and the test date appears in the media libary post.&#60;br /&#62;
&#60;code&#62;$parentdate = mysql_query(&#38;quot;SELECT $wpdb-&#38;gt;post_date FROM $wpdb-&#38;gt;posts WHERE ID=&#38;#39;$p-&#38;gt;post_ID&#38;#39;&#38;quot;);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then (around) line 139 I made a change to distribute $parentdate to the media upload function:&#60;br /&#62;
&#60;code&#62;$id = ex2gal_media_handle_upload(&#38;#39;ex2gal&#38;#39;, $p-&#38;gt;post_ID, $parentdate, $postdata);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Line 199 included parentdate&#60;br /&#62;
&#60;code&#62;function ex2gal_media_handle_upload($file_id, $post_id, $parentdate, $post_data = array()) {&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Then I added the following in line 227 to get the parent post date in the media upload.&#60;br /&#62;
&#60;code&#62;&#38;#39;post_date&#38;#39; =&#38;gt; $parentdate,&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] set timestamp of imported Exhibit attachments"</title>
<link>http://wordpress.org/support/topic/228038#post-934492</link>
<pubDate>Tue, 23 Dec 2008 02:31:15 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">934492@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is it somehow possible to ensure that the imported attachments get the same time stamp as the corresponding posts? This way they show up nicely by year in the media library. Have been spitting through the code but as PHP beginner I have not been able to find what I should change in order to override the standard upload date/time... Thanks for your help!!
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] Exhibit description to WP Gallery Title field"</title>
<link>http://wordpress.org/support/topic/227521#post-933040</link>
<pubDate>Sun, 21 Dec 2008 20:31:25 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">933040@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Found it! &#60;/p&#62;
&#60;p&#62;Line 132&#60;/p&#62;
&#60;p&#62;From:&#60;br /&#62;
&#60;code&#62;$postdata = array(&#38;#39;post_excerpt&#38;#39; =&#38;gt; $p-&#38;gt;caption, &#38;#39;menu_order&#38;#39; =&#38;gt; $p-&#38;gt;picorder);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;To:&#60;br /&#62;
&#60;code&#62;$postdata = array(&#38;#39;post_title&#38;#39; =&#38;gt; $p-&#38;gt;caption, &#38;#39;menu_order&#38;#39; =&#38;gt; $p-&#38;gt;picorder);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Slowly getting to know PHP;) Now trying to figure out how to get the image post_title displayed under an image on single pages.
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] Exhibit description to WP Gallery Title field"</title>
<link>http://wordpress.org/support/topic/227521#post-932490</link>
<pubDate>Sun, 21 Dec 2008 04:34:08 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">932490@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is it on line 224, changing&#60;br /&#62;
&#60;code&#62;&#38;#39;post_title&#38;#39; =&#38;gt; $title,&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;to:&#60;br /&#62;
&#60;code&#62;&#38;#39;post_title&#38;#39; =&#38;gt; $content,&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;?&#60;/p&#62;
&#60;p&#62;And if I want the WP Gallery content field to be empty could I remove line 225?&#60;br /&#62;
&#60;code&#62;&#38;#39;post_content&#38;#39; =&#38;gt; $content,&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Just want to be sure before trying it out:-)
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] Exhibit description to WP Gallery Title field"</title>
<link>http://wordpress.org/support/topic/227521#post-932444</link>
<pubDate>Sun, 21 Dec 2008 03:20:25 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">932444@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi, is it possible to move the Exhibit description field to the WP Gallery title field? This way the old Exhibit descriptions get nicely shown in e.g. lightbox. I have been checking your code but not quite sure what I need to swap to make this happen:-)
&#60;/p&#62;</description>
</item>
<item>
<title>ulfben on "[Plugin: Exhibit to WP Gallery] Wordpress 2.7 compatibility"</title>
<link>http://wordpress.org/support/topic/224810#post-924877</link>
<pubDate>Sun, 14 Dec 2008 17:14:19 +0000</pubDate>
<dc:creator>ulfben</dc:creator>
<guid isPermaLink="false">924877@http://wordpress.org/support/</guid>
<description>&#60;p&#62;If you can run exhibit in 2.7, the conversion should work as well. There's no real risk to try it: just test a single row first and make sure that image is attached to it's post properly.
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "[Plugin: Exhibit to WP Gallery] Wordpress 2.7 compatibility"</title>
<link>http://wordpress.org/support/topic/224810#post-922736</link>
<pubDate>Fri, 12 Dec 2008 18:16:28 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">922736@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Has somebody tried the plugin with 2.7? I did not manage to do the full conversion yet but would like to ugrade to 2.7. Thanks!!!
&#60;/p&#62;</description>
</item>
<item>
<title>ulfben on "Plugin: Exhibit to WP Gallery: wrong internal link?"</title>
<link>http://wordpress.org/support/topic/220422#post-908335</link>
<pubDate>Wed, 26 Nov 2008 12:13:23 +0000</pubDate>
<dc:creator>ulfben</dc:creator>
<guid isPermaLink="false">908335@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Sorry! You're right of course. That's what I get for posting before coffee. :) &#60;/p&#62;
&#60;p&#62;New release should be up now. &#60;/p&#62;
&#60;p&#62;(you can always get there by the &#34;Settings&#34;-link on the plugin listing)
&#60;/p&#62;</description>
</item>
<item>
<title>ulfben on "Plugin: Exhibit to WP Gallery: wrong internal link?"</title>
<link>http://wordpress.org/support/topic/220422#post-908312</link>
<pubDate>Wed, 26 Nov 2008 11:22:28 +0000</pubDate>
<dc:creator>ulfben</dc:creator>
<guid isPermaLink="false">908312@http://wordpress.org/support/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;Extract exhibit-to-wp-gallery.php and transfer it to the /wp-content/plugins/ directory&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;Ie: do not upload the directory. You only need the file.
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "Plugin: Exhibit to WP Gallery: wrong internal link?"</title>
<link>http://wordpress.org/support/topic/220422#post-908158</link>
<pubDate>Wed, 26 Nov 2008 04:16:52 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">908158@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi Ulf, I am one of those ancient Exhibit users and was about to try out your plugin to convert everything to WP Galleries.&#60;br /&#62;
Installed the plugin but when I visit &#34;Exhibit to WP Gallery&#34; in &#34;Settings&#34; the page gets forwarded to &#60;a href=&#34;http://wordpress.org/extend/plugins/exhibit-to-wp-gallery/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/exhibit-to-wp-gallery/&#60;/a&#62;. How can I fix that? Looking forward using the plugin!!
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "Plugin: Exhibit, issues with WP 2.5"</title>
<link>http://wordpress.org/support/topic/166045#post-908131</link>
<pubDate>Wed, 26 Nov 2008 02:55:16 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">908131@http://wordpress.org/support/</guid>
<description>&#60;p&#62;WOW!!!! THIS IS REALLY GREAT!!!! I have been using Exhibit since 1.2, added lightbox but found myself going to MySQL to add tags.... This plugin is a HUGE SAVER!!! THANKS AGAIN!!!
&#60;/p&#62;</description>
</item>
<item>
<title>ulfben on "Plugin: Exhibit, issues with WP 2.5"</title>
<link>http://wordpress.org/support/topic/166045#post-906799</link>
<pubDate>Mon, 24 Nov 2008 13:03:05 +0000</pubDate>
<dc:creator>ulfben</dc:creator>
<guid isPermaLink="false">906799@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I just released &#60;a href=&#34;http://wordpress.org/extend/plugins/exhibit-to-wp-gallery/&#34;&#62;Exhibit to WP Gallery&#60;/a&#62; - a plugin to migrate your old Exhibit-entries to ordinary WordPress attachments. &#60;/p&#62;
&#60;p&#62;In effect, converting all those Exhibit galleries to modern built-in WordPress galleries (using the &#60;code&#62;[gallery]&#60;/code&#62;-shortcode)
&#60;/p&#62;</description>
</item>
<item>
<title>Michiel on "Plugin: Exhibit, issues with WP 2.5"</title>
<link>http://wordpress.org/support/topic/166045#post-723200</link>
<pubDate>Thu, 03 Apr 2008 19:02:12 +0000</pubDate>
<dc:creator>Michiel</dc:creator>
<guid isPermaLink="false">723200@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi all,&#60;br /&#62;
I am still using the Exhibit plugin, once developed by Owen (RedAlt, &#60;a href=&#34;http://redalt.com/downloads/)&#34; rel=&#34;nofollow&#34;&#62;http://redalt.com/downloads/)&#60;/a&#62; starting WP1.2 or so. Exhibit is a really easy way to add a set of images (uploads, creates thumbnails, and adds tags) to posts.&#60;/p&#62;
&#60;p&#62;With great help from this support forum I have been able to keep on getting it working up till WP 2.3.x release and integrate Lightbox.&#60;/p&#62;
&#60;p&#62;Now with WP2.5 I run in two problems:&#60;br /&#62;
1) The tags are not being saved&#60;br /&#62;
2) The plugin appears in the &#34;write post&#34; under the page (wordpress) footer: not correctly positioned on the page.&#60;/p&#62;
&#60;p&#62;Is there still somebody out there using this plugin and has a resolution/fix for WP2.5?&#60;/p&#62;
&#60;p&#62;Many thanks! Michiel
&#60;/p&#62;</description>
</item>

</channel>
</rss>
