<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<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">
	<channel>
		<title>whoismanu.com - Forum &#187; Tag: RSS - Recent Posts</title>
		<link>http://www.whoismanu.com/forum/tags/rss</link>
		<description>Just another bbPress community</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 11:22:07 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.whoismanu.com/forum/search.php</link>
		</textInput>
		<atom:link href="http://www.whoismanu.com/forum/rss/tags/rss" rel="self" type="application/rss+xml" />

		<item>
			<title>michaelserisier on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1296</link>
			<pubDate>Sun, 20 Feb 2011 17:18:51 +0000</pubDate>
			<dc:creator>michaelserisier</dc:creator>
			<guid isPermaLink="false">1296@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;@azie, whoismanu's suggestion to add this line in iq2/classes/IQ2Theme.php fixes the problem:&#60;br /&#62;
add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;I've added it right after the &#34;//add description to feeds&#34; comment.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>azie on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1289</link>
			<pubDate>Fri, 28 Jan 2011 18:40:52 +0000</pubDate>
			<dc:creator>azie</dc:creator>
			<guid isPermaLink="false">1289@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hello dawilson!&#60;/p&#62;
&#60;p&#62;Could you please clarify as to what fixed your problem?  I'm having the same issue as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1270</link>
			<pubDate>Wed, 29 Dec 2010 15:47:14 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1270@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Checking the feed this morning, I see that something I did on Sunday did, finally, correct the problem and I now have both the large image and the description in the &#38;lt;content:encoded&#38;gt; section of each RSS feed item. Thanks for your previous help and apologies for the false alarm this time round (though you may like to see if the change I made needs to be included in future IQ2 releases, I suppose).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-1269</link>
			<pubDate>Mon, 27 Dec 2010 02:13:31 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">1269@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;It's time for my annual &#34;Try to fix my RSS feed&#34; day again. I've just updated everything to the latest version (Wordpress 3.0.3, PhotoQ 1.9, IQ2 1.3) hoping that my previous problem would go away but, unfortunately, my post description is still not included in the &#38;lt;content:encoded&#38;gt; section of each post's RSS item. Delving through the PHP for WordPress itself, I have absolutely no idea why this should be. I've made some changes to the IQ2Theme.php file for debug as follows:&#60;/p&#62;
&#60;p&#62;	`//add description to feeds&#60;br /&#62;
	add_filter('the_content_feed', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
	add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeedExcerpt'));`&#60;/p&#62;
&#60;p&#62;  The first add_filter used &#34;the_content_rss&#34; initially but I gather this is now deprecated in favour of &#34;the_content_feed&#34;. Even after changing this, I see no difference (though, frankly, I'm not convinced that FeedBurner's refresh is working properly so I'll check again in an hour or so). I also doubled up the addDescToFeed function so that I can tell exactly which hook is being called:&#60;/p&#62;
&#60;p&#62;	`/**&#60;br /&#62;
	 * Filter hook to add the description to the RSS feeds&#60;br /&#62;
	 * @param $content&#60;br /&#62;
	 * @return unknown_type&#60;br /&#62;
	 */&#60;br /&#62;
	function addDescrToFeed($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		/* if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){ */&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeed --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		/* } */&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}&#60;br /&#62;
	function addDescrToFeedExcerpt($content){&#60;br /&#62;
		global $post;&#60;br /&#62;
		if($this-&#38;gt;_oc-&#38;gt;getValue('feedShowDescr')){&#60;br /&#62;
			$content .= &#34;&#38;lt;!-- addDescrToFeedExcerpt --&#38;gt;&#34;;&#60;br /&#62;
			$content .= get_post_meta($post-&#38;gt;ID, 'photoQDescr', true);&#60;br /&#62;
		}&#60;br /&#62;
    	return $content;&#60;br /&#62;
	}`&#60;/p&#62;
&#60;p&#62;Looking at the XML generated for my feed, I see that the addDescrToFeedExcerpt filter was called to fill in the &#38;lt;description&#38;gt; block but that the addDescToFeed filter was never called when &#38;lt;content:encoded&#38;gt; was set up. The code in WordPress's feed.php which I presume is called to generate this block (isn't &#34;grep&#34; a wonderful debugging tool?) calls:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;return apply_filters(&#38;#39;the_content_feed&#38;#39;, $content, $feed_type);&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;so I can't see why our filter isn't being used. Any ideas?&#60;/p&#62;
&#60;p&#62;Any help you can offer on this would be excellent since this is really driving me mad. How difficult can it be to get the description text to appear underneath the full resolution photo in the RSS feed?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-852</link>
			<pubDate>Wed, 05 May 2010 19:34:26 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">852@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;OPS:  There is a way to load absolute url of site dinamically without change this part ?  --&#38;gt;  There is a way to load absolute url of site dinamically CHANGING this line ?  ;))
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-851</link>
			<pubDate>Wed, 05 May 2010 19:33:03 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">851@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I'm not sure at 100%, but I remember to have used ORIGINAL version of PhotoQ for my proof.&#60;br /&#62;
But only in a WPMU (WP3 beta 1) enviroment. And yes, with my mod works everything except ftp.&#60;/p&#62;
&#60;p&#62;Anyway, saturday I have to reset my example site, so I could tell you exactly if ftp upload works in single user mode under WP3.&#60;br /&#62;
Obviously I'll use always ORIGINAL version (and not mine modified!).&#60;br /&#62;
As soon as I'll (re)try it.&#60;/p&#62;
&#60;p&#62;One answer: in my imageshack code I have to set &#34;$domainqphoto = 'http://www.example.com/'&#34; . There is a way to load absolute url of site dinamically without change this part ?&#60;/p&#62;
&#60;p&#62;And last: I have had this problem &#60;a href=&#34;http://www.whoismanu.com/forum/topic/invalid-argument-supplied-in-foreach-on-post-queue#post-682&#34; rel=&#34;nofollow&#34;&#62;http://www.whoismanu.com/forum/topic/invalid-argument-supplied-in-foreach-on-post-queue#post-682&#60;/a&#62; but with your correction now it works perfectly!&#60;/p&#62;
&#60;p&#62;See you (saturday!)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-850</link>
			<pubDate>Wed, 05 May 2010 16:37:41 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">850@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;thanks for sharing the imageshack stuff. &#60;/p&#62;
&#60;p&#62;concerning your problem 1e), does it only happen on your modified version? or also with the photoq version that you can download in the single user case?&#60;br /&#62;
with your modified version and wpmu, do uploads that are not done via ftp work?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-849</link>
			<pubDate>Sun, 02 May 2010 15:05:33 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">849@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Ok, again here after a little break  ;)&#60;br /&#62;
For Imageshack:&#60;br /&#62;
1) I have added a &#34;q_multikey&#34; field (text utf8_general_ci  default NULL) at the end of wp_photoq tables. It's a text field where I put several metakey (or postmeta) information (in my case -and for now- imageshack url and imageshack thumbnail url).&#60;br /&#62;
In this way -in the future- I could add other multiple metakey information (as data map or photonotes) without change database or other photoq php files (but only queue uploadphoto function).&#60;br /&#62;
In text box data are recorded in this way (in my example):&#60;br /&#62;
photoQKeyImageshack{}http://imageshackBigFileURL.jpg}{photoQKeyImageshackThumb{}http://imageshackThumbFileURL.jpg&#60;br /&#62;
As you can see I use '{}' to separate name of metakey field from his value and '}{' to separate several metakey information.&#60;/p&#62;
&#60;p&#62;2) Code to insert in classes/photoQ.php at lines 789 (in uploadPhoto function):&#60;br /&#62;
		$multikey = '';&#60;br /&#62;
		$imageshackoption = true;&#60;br /&#62;
		$domainqphoto = 'http://www.example.com/';&#60;br /&#62;
		$fileshackdir = $this-&#38;gt;_oc-&#38;gt;getQDir();&#60;br /&#62;
		$fileshackdir2 = $fileshackdir  . basename($file);&#60;br /&#62;
		$posfileshackdir = strpos ($fileshackdir, 'wp-content/blogs.dir');&#60;br /&#62;
		$fileshackdir= substr ( $fileshackdir , $posfileshackdir );&#60;br /&#62;
		$fileshackdir = $domainqphoto . $fileshackdir;&#60;br /&#62;
		$fileshack  = $fileshackdir  . basename($file);&#60;br /&#62;
		$fileshack2 = $fileshack;&#60;/p&#62;
&#60;p&#62;		if ($imageshackoption){&#60;br /&#62;
		$source = 'http://www.imageshack.us/upload_api.php?url=' . $fileshack. '&#38;amp;action=transload';&#60;br /&#62;
		$fileshackBig = '';&#60;br /&#62;
		$source_page = file_get_contents($source);&#60;br /&#62;
		if (strpos ($source_page, '&#38;lt;image_link&#38;gt;') != false) {&#60;br /&#62;
		$posfilestart = strpos ($source_page, '&#38;lt;image_link&#38;gt;') + 12;&#60;br /&#62;
		$posfileend = strpos ($source_page, '&#38;lt;/image_link&#38;gt;') - $posfilestart;&#60;br /&#62;
		$fileshackBig = substr ($source_page , $posfilestart , $posfileend);}&#60;br /&#62;
		else {$fileshackBig = 'error';}&#60;br /&#62;
		}&#60;/p&#62;
&#60;p&#62;		if($fileshackBig != 'error'){$multikey = 'photoQKeyImageshack{}'.$fileshackBig.'}{';}&#60;/p&#62;
&#60;p&#62;		if ($imageshackoption){&#60;br /&#62;
		if (!$fileshack) {&#60;br /&#62;
		$source = 'http://www.imageshack.us/upload_api.php?url=' . $fileshack. '&#38;amp;optimage=1&#38;amp;optsize=320x320&#38;amp;action=transload';}&#60;br /&#62;
		else {$source = 'http://www.imageshack.us/upload_api.php?url=' . $fileshack2. '&#38;amp;optimage=1&#38;amp;optsize=320x320&#38;amp;action=transload';}&#60;br /&#62;
		$fileshackBig = '';&#60;br /&#62;
		$source_page = file_get_contents($source);&#60;br /&#62;
		$fileshackThumb = '';&#60;br /&#62;
		$source_page = file_get_contents($source);&#60;br /&#62;
		if (strpos ($source_page, '&#38;lt;image_link&#38;gt;') != false) {&#60;br /&#62;
		$posfilestart = strpos ($source_page, '&#38;lt;image_link&#38;gt;') + 12;&#60;br /&#62;
		$posfileend = strpos ($source_page, '&#38;lt;/image_link&#38;gt;') - $posfilestart;&#60;br /&#62;
		$fileshackThumb = substr ($source_page , $posfilestart , $posfileend);}&#60;br /&#62;
		else {$fileshackThumb = 'error';}&#60;br /&#62;
		}&#60;/p&#62;
&#60;p&#62;		if($fileshackThumb != 'error'){$multikey = $multikey.'photoQKeyImageshackThumb{}'.$fileshackThumb;}&#60;/p&#62;
&#60;p&#62;3) always in photoQ.php, few lines below,  I modify 	&#60;/p&#62;
&#60;p&#62;	//add photo to queue&#60;br /&#62;
		if(!$result = $wpdb-&#38;gt;query(&#34;INSERT INTO $this-&#38;gt;QUEUE_TABLE (q_title, q_imgname, q_position, q_slug, q_descr, q_tags, q_exif, q_date, q_fk_author_id) VALUES ('$title', '$filename', '&#34;.($this-&#38;gt;_queue-&#38;gt;getLength()).&#34;', '$slug', '$descr', '$tags', '$exif', '$dateTime', '$post_author')&#34;))&#60;/p&#62;
&#60;p&#62;in:&#60;/p&#62;
&#60;p&#62;		//add photo to queue&#60;br /&#62;
		if(!$result = $wpdb-&#38;gt;query(&#34;INSERT INTO $this-&#38;gt;QUEUE_TABLE (q_title, q_imgname, q_position, q_slug, q_descr, q_tags, q_exif, q_date, q_fk_author_id, q_multikey) VALUES ('$title', '$filename', '&#34;.($this-&#38;gt;_queue-&#38;gt;getLength()).&#34;', '$slug', '$descr', '$tags', '$exif', '$dateTime', '$post_author', '$multikey')&#34;))&#60;/p&#62;
&#60;p&#62;4) now (if I understand how your plugin works) I have to modify classes/PhotoQPhoto.php (and in particular publish function) for:&#60;br /&#62;
a) load &#34;q_multikey&#34; text field&#60;br /&#62;
b) separate metakey field and value&#60;br /&#62;
c) with a foreach, insert &#34;add_post_meta()&#34; function as many times as number of metakey&#60;/p&#62;
&#60;p&#62;But I'm not php expert programmer so for to write my fourth point I need another day  ;))))&#60;br /&#62;
Anyway, until point 3, my code work: put image in queue with imageshack of big image and imageshack of thumb. &#60;/p&#62;
&#60;p&#62;NOTE: please don't laugh for excessive number of line code I use for my imageshack function  ;)))
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-848</link>
			<pubDate>Sun, 02 May 2010 13:18:54 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">848@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;For Imageshack: there are two or three different function API to load image to imageshack. But the only one that works for me is to load this page in PHP&#60;br /&#62;
PHP:&#60;br /&#62;
$source=http://www.imageshack.us/upload_api.php?url=' . $fileshack. '&#38;amp;action=transload'&#60;br /&#62;
$source_page = file_get_contents($source);&#60;/p&#62;
&#60;p&#62;where fileshack is obviously image file to load on imageshack.&#60;br /&#62;
Now I have to do a break, but after I will explain exactly what I have done for integrate imageshack with photoq.&#60;/p&#62;
&#60;p&#62;Please: sorry for my bad english (and my bad scholar php code)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-847</link>
			<pubDate>Sun, 02 May 2010 13:11:40 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">847@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Ok, after a day of work, now.. the Result!  ;)&#60;/p&#62;
&#60;p&#62;1)For WPMU: I have modified files exactly as you have said me and infact now I have:&#60;br /&#62;
a) two blogs with both ftp option enable under photoQ setup (PLUGIN IS NETWORK ACTIVATED obviously). This is PERFECT!&#60;br /&#62;
b)I have set different ftp directories for each blog (obviously). This is PERFECT! (and more, when I have put an inexistent ftp directory, plugin alert me with an error message and this is FANTASTIC!)&#60;br /&#62;
c) when I go in POST-&#38;gt;PhotoQ-&#38;gt;ADD PHOTO TO QUEUE, I see &#34;import from FTP directory&#34;. This is OK!&#60;br /&#62;
d) when I click &#34;import from FTP directory&#34; now it see the (different) list(s) of files in (each) ftp directory. This is PERFECT!&#60;br /&#62;
e) when I click Import/Enter Info.... NOT WORK! (and give me a blank page with &#34;Save Batch Info&#34; button: the same page that I have received several times when I try to adjust my imageshack function). This is a PROBLEM!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-845</link>
			<pubDate>Sat, 01 May 2010 10:07:49 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">845@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;true, you can try to directly add it to the db. i was a bit slow too :-)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-843</link>
			<pubDate>Sat, 01 May 2010 07:41:00 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">843@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thanks Whoismanu!!!&#60;/p&#62;
&#60;p&#62;I'm really stupid: I didn't pay attention to $_FILES variable.&#60;br /&#62;
And now I'm thinking that I'll could use directly  this &#34;if(!$result = $wpdb-&#38;gt;query(&#34;INSERT INTO $this-&#38;gt;QUEUE_TABLE (q_title, q_imgname, q_position, q_slug, q_descr, q_tags, q_exif, q_date, q_fk_author_id) VALUES ('$title', '$filename', '&#34;.($this-&#38;gt;_queue-&#38;gt;getLength()).&#34;', '$slug', '$descr', '$tags', '$exif', '$dateTime', '$post_author')&#34;))&#34;&#60;br /&#62;
if something will go wrong with uploadphoto function.&#60;/p&#62;
&#60;p&#62;Today I'll try everything and I'll refer you what happens.&#60;/p&#62;
&#60;p&#62;Thanks alot and... again, this the best plugin I have seen!!!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-840</link>
			<pubDate>Fri, 30 Apr 2010 16:07:41 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">840@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;hi francesco,&#60;/p&#62;
&#60;p&#62;first of all thanks a lot for the donation.&#60;/p&#62;
&#60;p&#62;1) your error is probably due to the fact that since you are not doing a real form upload, $_FILES['Filedata'] (needed in _handleUpload()) is not set (plus there are some $_POST fields that are also needed inside the uploadPhoto() function in addition to the function arguments). i am really not sure whether you can cheat photoq somehow into believing that it is getting a regular upload. this was simply not foreseen. i plan to make it more easily extensible in the future, so i will add an upload capability for 3rd party code as an item to be evaluated in this respect. right now however, i fear that there is no straightforward way for doing that.&#60;/p&#62;
&#60;p&#62;2) i guess yes. i didn't try it but i think if you replace &#60;code&#62;PhotoQHelper::isWPMU()&#60;/code&#62; with &#60;code&#62;false&#60;/code&#62; in the following locations it might work:&#60;/p&#62;
&#60;p&#62;- PhotoQ.php in the _isFtpUpload() function&#60;br /&#62;
- PhotoQOptionController everywhere except in the getImgDir() function&#60;br /&#62;
- panels/upload.php replace the single occurrence&#60;br /&#62;
- panels/options.php replace the one followed by the comment &#60;code&#62;//WPMU version has no imgdir and ftp setting&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;3) sure, always interested. thanks a lot.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kagliostro on "Integration with Wp-O-Matic"</title>
			<link>http://www.whoismanu.com/forum/topic/integration-with-wp-o-matic#post-835</link>
			<pubDate>Thu, 29 Apr 2010 09:40:06 +0000</pubDate>
			<dc:creator>kagliostro</dc:creator>
			<guid isPermaLink="false">835@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Hi Whoismanu&#60;/p&#62;
&#60;p&#62;I really believe your is one of best WP plugin I have seen!&#60;br /&#62;
I just made you a 5 euro donation (it's second time in my life ;)) cause your plugin high quality!!!&#60;/p&#62;
&#60;p&#62;But I have a request:&#60;br /&#62;
1) I want to use Wp-O-Matic RSS aggregator plugin to insert photo-post feed item in queue of PhotoQ.&#60;br /&#62;
SO I have tried to add and use  uploadPhoto function  (of classes/PhotoQ.php) in wp-o-matic code (deleting original &#34;$postid = $this-&#38;gt;insertPost($wpdb-&#38;gt;....&#34; function). But I receive always error!&#60;br /&#62;
I don't know  very well php, I made only little adjustment to my wordpress plugins.&#60;br /&#62;
So I want to know how to use photoQ upload photo routine in external plugin. There is a way?  &#60;/p&#62;
&#60;p&#62;2) I use a WPMU installation with 2 blog for simplify my blogger life. WPMU blogs are only mine: so... in this case is there a trick to use FTP option in WPMU (modding internal code)?&#60;/p&#62;
&#60;p&#62;3) I have added Imageshack upload possibility in uploadPhoto function. After several proofs now it works (and put imageshack url of original photo in a q_shack cell in queue row). If you are interested I can send you my (poor) code so you can develop concept. I believe it can be useful for people with hosting with limited file transfer.&#60;/p&#62;
&#60;p&#62;I'm using:&#60;br /&#62;
- Wordpress 3 beta 1 with buddypress (and last version of PhotoQ perfectly working)&#60;br /&#62;
- Bluehost hosting with PHP 5 and FASTCGI&#60;/p&#62;
&#60;p&#62;THANSK IN ADVANCE&#60;br /&#62;
Francesco
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-774</link>
			<pubDate>Sun, 07 Feb 2010 06:14:16 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">774@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;Thanks for the suggestion. I've made the change and turned off my FeedBurner routing plugin but am having some problems getting hold of the raw feed data. Both IE and Firefox insist on giving me the cached Feedburner version of the feed so I can't see the raw RSS data any more (FeedProxy barfs on the stream formatting that FeedBurner generates). I'll try again tomorrow and see if I can figure out how to completely disable FeedBurner again.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-765</link>
			<pubDate>Wed, 03 Feb 2010 21:40:41 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">765@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;think i found the culprit. does it work if you replace 'the_content_rss' with 'the_content_feed' ?&#60;/p&#62;
&#60;p&#62;i.e. &#60;code&#62;add_filter(&#38;#39;the_content_feed&#38;#39;, array(&#38;amp;$this, &#38;#39;addDescrToFeed&#38;#39;));&#60;/code&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-758</link>
			<pubDate>Sun, 31 Jan 2010 02:59:11 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">758@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I've finally had some time to go back and look into the RSS feed problem once again. To recap, I want to make sure that the description text I enter for each photo is included in the RSS feed such that the feed shown in Google Reader contains the full sized image and the description text. As things stand today, all I get is the image with no text.&#60;/p&#62;
&#60;p&#62;The problem seems to be that the description text needs to be included in the &#38;lt;content:encoded&#38;gt; section of the feed as well as in the &#38;lt;description&#38;gt; block. I've tracked down where the RSS feed is generated (wp-includes/feed-rss2.php) but this seems OK to me - the &#38;lt;content:encoded&#38;gt; section is built from the_content() if I have RSS excerpting turned off. Looking at the database, however, I see that post_content contains only the image URL (hence explaining why that's all I see in the &#38;lt;content:encoded&#38;gt; section of my RSS feed). The entry does contain class=&#34;photoQcontent photoQImg&#34; and I suspect this is somehow intended to be expanded somewhere. I can't see any reference to this class in the stylesheet, though, so I'm at a loss to figure out what it is doing. In the post_excerpt database field, I see class=&#34;photoQexcerpt photoQImg&#34; and, looking at the raw RSS feed, this appears to be expanded to include the description text somehow.&#60;/p&#62;
&#60;p&#62;Could you offer any advice on what's going on here so that I can make some more progress? Apologies if these are annoying questions - despite 30 years of professional C programming, I'm a newbie at PHP and know nothing at all about the guts of WordPress - but I assumed this would be an easy thing to do when I started looking at the problem!&#60;/p&#62;
&#60;p&#62;Thanks in advance!&#60;/p&#62;
&#60;p&#62;&#38;lt;Edit - looking through IQ2Theme.php, I see:&#60;/p&#62;
&#60;p&#62;		//add description to feeds&#60;br /&#62;
		add_filter('the_content_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;br /&#62;
		add_filter('the_excerpt_rss', array(&#38;amp;$this, 'addDescrToFeed'));&#60;/p&#62;
&#60;p&#62;which looks to me as if you are trying to add the description text to both the excerpt and content when generating the RSS feed. Why, I wonder, does the text end up in one but not the other?&#38;gt;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-499</link>
			<pubDate>Tue, 06 Oct 2009 02:46:56 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">499@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;It turns out that I was still using the old version of IQ2 - oops! Having switched to the new version, I can now tell the system to include the description in the RSS feed and, when I view the feed in Firefox, the text is there. Unfortunately, however, the feed seen via Google Reader still contains only the large image and no text. I think I'll give up on this one now and move to another problem (which I will post to a new thread). Thanks for all the help on this, though.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>whoismanu on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-476</link>
			<pubDate>Tue, 29 Sep 2009 23:02:09 +0000</pubDate>
			<dc:creator>whoismanu</dc:creator>
			<guid isPermaLink="false">476@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;to add the description text you will find a setting called &#34;Syndication Feeds: Show photo description in syndication feeds.&#34; under &#34;Appearance-&#38;gt;iQ2 Settings&#34;. just check the corresponding box and your feeds should show the description (iQ2 1.1 or newer).&#60;/p&#62;
&#60;p&#62;to show the main image instead of the one from the excerpt is i guess rather a wp problem. first, you need to make sure that your wp settings under &#34;reading-&#38;gt;For each article in a feed, show&#34; are set to show the full text.&#60;/p&#62;
&#60;p&#62;however, this whole thing can be more tricky than that because it looks like what you see might be browser specific (i.e. especially in ff these settings are not necessarily taken into account). the following link gives an explanation (i fear however that the hack proposed might be outdated and doesn't apply to the newer wp versions anymore): &#60;a href=&#34;http://www.devilsworkshop.org/force-firefox-to-display-your-full-feeds-wordpress-hack/&#34; rel=&#34;nofollow&#34;&#62;http://www.devilsworkshop.org/force-firefox-to-display-your-full-feeds-wordpress-hack/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;anyway, it might give you some ideas.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dawilson on "Modifying IQ2"</title>
			<link>http://www.whoismanu.com/forum/topic/modifying-iq2#post-467</link>
			<pubDate>Sun, 27 Sep 2009 02:08:21 +0000</pubDate>
			<dc:creator>dawilson</dc:creator>
			<guid isPermaLink="false">467@http://www.whoismanu.com/forum/</guid>
			<description>&#60;p&#62;I had some time on my hands today so updated PhotoQ and IQ2 to the latest levels in an attempt to fix my RSS problem. Unfortunately, it's not clear to me how I do this. I want to maintain the current look of my photoblog where the home page contains only the header, footer and main image but I want the RSS entries to contain the main image + the description text. Can anyone suggest how I achieve this? I've taken a look through the PHP code and played around a bit but I'm a complete newbie to WordPress and only minimally experienced in PHP.&#60;/p&#62;
&#60;p&#62;Thanks in advance for any suggestions!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

