<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Most Popular ?</title>
	<atom:link href="http://alexrabe.de/2007/08/08/most-popular/feed/" rel="self" type="application/rss+xml" />
	<link>http://alexrabe.de/2007/08/08/most-popular/</link>
	<description>ALEX RABE &#124; learning by doing...</description>
	<lastBuildDate>Wed, 08 Feb 2012 16:33:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: James</title>
		<link>http://alexrabe.de/2007/08/08/most-popular/#comment-3384</link>
		<dc:creator>James</dc:creator>
		<pubDate>Mon, 08 Oct 2007 15:46:37 +0000</pubDate>
		<guid isPermaLink="false">http://alexrabe.de/2007/08/08/most-popular/#comment-3384</guid>
		<description>Hey Alex,

Just a thank you for producing this. I&#039;m not exagerating when I say I&#039;ve been looking for something like this for years. I&#039;ve tried so many different gallery versions but this is by far the best. Keep up the good work.

Cheers,

James</description>
		<content:encoded><![CDATA[<p>Hey Alex,</p>
<p>Just a thank you for producing this. I&#8217;m not exagerating when I say I&#8217;ve been looking for something like this for years. I&#8217;ve tried so many different gallery versions but this is by far the best. Keep up the good work.</p>
<p>Cheers,</p>
<p>James</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chriss Vighagen</title>
		<link>http://alexrabe.de/2007/08/08/most-popular/#comment-2641</link>
		<dc:creator>Chriss Vighagen</dc:creator>
		<pubDate>Sat, 25 Aug 2007 05:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://alexrabe.de/2007/08/08/most-popular/#comment-2641</guid>
		<description>Hi!

I just migrated from a stinky e107 with a bad gallery2 bridge to a nice wordpress instalation. I thought that I was hoplessly doomed with that bloat-ware of Gallery 2 when I found your plugin. 

It&#039;s abit quirky when you run it with php_SafeMode:ON and have to upload all the photos via ftp, but it is still the fastest, leanest and easiest to use gallery system. Thanks to it my photo portfolio was up and running within an hour =)

Keep up the good work!

Chris</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>I just migrated from a stinky e107 with a bad gallery2 bridge to a nice wordpress instalation. I thought that I was hoplessly doomed with that bloat-ware of Gallery 2 when I found your plugin. </p>
<p>It&#8217;s abit quirky when you run it with php_SafeMode:ON and have to upload all the photos via ftp, but it is still the fastest, leanest and easiest to use gallery system. Thanks to it my photo portfolio was up and running within an hour =)</p>
<p>Keep up the good work!</p>
<p>Chris</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nadavkav</title>
		<link>http://alexrabe.de/2007/08/08/most-popular/#comment-2506</link>
		<dc:creator>nadavkav</dc:creator>
		<pubDate>Thu, 16 Aug 2007 23:00:09 +0000</pubDate>
		<guid isPermaLink="false">http://alexrabe.de/2007/08/08/most-popular/#comment-2506</guid>
		<description>wow what an excellent plug in  !!!

i was missing and EXIF integration so i add one up.
please use it more wisely then what i have done for my own use ;-)

get PHP Metadata toolkit from here : http://www.ozhiker.com/electronics/pjmt/index.html

install the toolkit folder under wp-content/plugins/nextgen-gallery
( i called it jpeg-exif-tlkit )
now, edit the file admin/manage.php
add some includes upfront

$GLOBALS[&#039;HIDE_UNKNOWN_TAGS&#039;] = TRUE;
define(&#039;ABSPATH&#039;, dirname(__FILE__).&#039;/&#039;);
$Toolkit_Dir = ABSPATH.&quot;wp-content/plugins/nextgen-gallery/jpeg-exif-tlkit/&quot;;     // Ensure dir name includes trailing slash
include $Toolkit_Dir . &#039;Toolkit_Version.php&#039;;          // Change: added as of version 1.11
include $Toolkit_Dir . &#039;JPEG.php&#039;;                     // Change: Allow this example file to be easily relocatable - as of version 1.11
include $Toolkit_Dir . &#039;PictureInfo.php&#039;;
include $Toolkit_Dir . &#039;EXIF.php&#039;;

and around the &quot;rescan folder&quot; lines 163~
change the lines that add new pictures to the database as follows...

foreach($imageslist as $picture) {
//echo WINABSPATH.$gallerypath.&quot;/&quot;.$picture . &quot;:\n&quot;;
// Retrieve the header information
$jpeg_header_data = get_jpeg_header_data( WINABSPATH.$gallerypath.&quot;/&quot;.$picture );
//Output the JPEG Comment
//$picture_description = Interpret_Comment_to_HTML( $jpeg_header_data );
$picture_description = get_jpeg_Comment( $jpeg_header_data );

$result = $wpdb-&gt;query(&quot;INSERT INTO $wpdb-&gt;nggpictures (galleryid, filename, alttext, description, exclude) VALUES (&#039;$act_gid&#039;, &#039;$picture&#039;, &#039;$picture&#039;, &#039;$picture_description&#039;, 0) &quot;);


that&#039;s it :-)

now exif comment are read when new jpeg files are inserted into the database.

thanks again for this beautiful plug in :-)</description>
		<content:encoded><![CDATA[<p>wow what an excellent plug in  !!!</p>
<p>i was missing and EXIF integration so i add one up.<br />
please use it more wisely then what i have done for my own use <img src='http://alexrabe.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>get PHP Metadata toolkit from here : <a href="http://www.ozhiker.com/electronics/pjmt/index.html" rel="nofollow">http://www.ozhiker.com/electronics/pjmt/index.html</a></p>
<p>install the toolkit folder under wp-content/plugins/nextgen-gallery<br />
( i called it jpeg-exif-tlkit )<br />
now, edit the file admin/manage.php<br />
add some includes upfront</p>
<p>$GLOBALS['HIDE_UNKNOWN_TAGS'] = TRUE;<br />
define(&#8216;ABSPATH&#8217;, dirname(__FILE__).&#8217;/');<br />
$Toolkit_Dir = ABSPATH.&#8221;wp-content/plugins/nextgen-gallery/jpeg-exif-tlkit/&#8221;;     // Ensure dir name includes trailing slash<br />
include $Toolkit_Dir . &#8216;Toolkit_Version.php&#8217;;          // Change: added as of version 1.11<br />
include $Toolkit_Dir . &#8216;JPEG.php&#8217;;                     // Change: Allow this example file to be easily relocatable &#8211; as of version 1.11<br />
include $Toolkit_Dir . &#8216;PictureInfo.php&#8217;;<br />
include $Toolkit_Dir . &#8216;EXIF.php&#8217;;</p>
<p>and around the &#8220;rescan folder&#8221; lines 163~<br />
change the lines that add new pictures to the database as follows&#8230;</p>
<p>foreach($imageslist as $picture) {<br />
//echo WINABSPATH.$gallerypath.&#8221;/&#8221;.$picture . &#8220;:\n&#8221;;<br />
// Retrieve the header information<br />
$jpeg_header_data = get_jpeg_header_data( WINABSPATH.$gallerypath.&#8221;/&#8221;.$picture );<br />
//Output the JPEG Comment<br />
//$picture_description = Interpret_Comment_to_HTML( $jpeg_header_data );<br />
$picture_description = get_jpeg_Comment( $jpeg_header_data );</p>
<p>$result = $wpdb-&gt;query(&#8220;INSERT INTO $wpdb-&gt;nggpictures (galleryid, filename, alttext, description, exclude) VALUES (&#8216;$act_gid&#8217;, &#8216;$picture&#8217;, &#8216;$picture&#8217;, &#8216;$picture_description&#8217;, 0) &#8220;);</p>
<p>that&#8217;s it <img src='http://alexrabe.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>now exif comment are read when new jpeg files are inserted into the database.</p>
<p>thanks again for this beautiful plug in <img src='http://alexrabe.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

