<?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 for SoliTech GmbH</title>
	<atom:link href="http://www.solitechgmbh.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.solitechgmbh.com</link>
	<description>Connecting businesses to people through effective online marketing strategy</description>
	<lastBuildDate>Sat, 06 Feb 2010 11:05:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by William</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-3734</link>
		<dc:creator>William</dc:creator>
		<pubDate>Sat, 06 Feb 2010 11:05:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-3734</guid>
		<description>sorry I forgot the &#039;$&#039; after the &#039;/&#039;.
But it does not work for the pages controller.</description>
		<content:encoded><![CDATA[<p>sorry I forgot the &#8216;$&#8217; after the &#8216;/&#8217;.<br />
But it does not work for the pages controller.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by William</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-3732</link>
		<dc:creator>William</dc:creator>
		<pubDate>Sat, 06 Feb 2010 09:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-3732</guid>
		<description>home link &#039;/&#039; is always highlighted. Is there a way to solve this problem ?</description>
		<content:encoded><![CDATA[<p>home link &#8216;/&#8217; is always highlighted. Is there a way to solve this problem ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New Bit.ly Class to use with CakePHP or by it self by Simon</title>
		<link>http://www.solitechgmbh.com/2009/08/06/new-bit-ly-class-to-use-with-cakephp-or-by-it-self/comment-page-1/#comment-3727</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Mon, 19 Oct 2009 09:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.solitechgmbh.com/?p=515#comment-3727</guid>
		<description>use 

$response = curl_exec($curl);

instead of 

$response = curl_ex_ec($curl);

Regards Simon</description>
		<content:encoded><![CDATA[<p>use </p>
<p>$response = curl_exec($curl);</p>
<p>instead of </p>
<p>$response = curl_ex_ec($curl);</p>
<p>Regards Simon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use MagpieRSS with CakePHP by Korbi Brav</title>
		<link>http://www.solitechgmbh.com/2009/07/23/how-to-use-magpierss-with-cakephp/comment-page-1/#comment-3726</link>
		<dc:creator>Korbi Brav</dc:creator>
		<pubDate>Sat, 25 Jul 2009 15:07:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.solitechgmbh.com/?p=507#comment-3726</guid>
		<description>Thanks, works great.</description>
		<content:encoded><![CDATA[<p>Thanks, works great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by Paolo</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-3725</link>
		<dc:creator>Paolo</dc:creator>
		<pubDate>Tue, 21 Jul 2009 14:23:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-3725</guid>
		<description>hi,

I modify the function to accept an array as $path. The result:

	function highlight($path, $normal = &#039;navLink&#039;, $selected = &#039;navLinkSelected&#039;) {
		$class = &#039; &#039;.$normal;
		$currentPath = substr($this-&gt;Html-&gt;here, strlen($this-&gt;Html-&gt;base));
		// if there is a star in the path we need to do different checking
		$regs = array();		
		if (!is_array($path) &amp;&amp; ereg($path,$currentPath,$regs)){
			$class .= &#039; &#039;.$selected;
		}else if (is_array($path)){
		  foreach($path as $value){
        if (ereg($value,$currentPath,$regs)){
          $class .= &#039; &#039;.$selected;
          break;
        }
      }
		}
		return $class;
    }</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I modify the function to accept an array as $path. The result:</p>
<p>	function highlight($path, $normal = &#8216;navLink&#8217;, $selected = &#8216;navLinkSelected&#8217;) {<br />
		$class = &#8216; &#8216;.$normal;<br />
		$currentPath = substr($this-&gt;Html-&gt;here, strlen($this-&gt;Html-&gt;base));<br />
		// if there is a star in the path we need to do different checking<br />
		$regs = array();<br />
		if (!is_array($path) &amp;&amp; ereg($path,$currentPath,$regs)){<br />
			$class .= &#8216; &#8216;.$selected;<br />
		}else if (is_array($path)){<br />
		  foreach($path as $value){<br />
        if (ereg($value,$currentPath,$regs)){<br />
          $class .= &#8216; &#8216;.$selected;<br />
          break;<br />
        }<br />
      }<br />
		}<br />
		return $class;<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Am Rich &#8211; Faceook and MySpace Application by admin</title>
		<link>http://www.solitechgmbh.com/2009/03/31/i-am-rich-faceook-and-myspace-application/comment-page-1/#comment-3724</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 21 Jul 2009 04:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.solitechgmbh.com/?p=470#comment-3724</guid>
		<description>That is one of the features that are planed for the next version.</description>
		<content:encoded><![CDATA[<p>That is one of the features that are planed for the next version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on I Am Rich &#8211; Faceook and MySpace Application by j</title>
		<link>http://www.solitechgmbh.com/2009/03/31/i-am-rich-faceook-and-myspace-application/comment-page-1/#comment-3723</link>
		<dc:creator>j</dc:creator>
		<pubDate>Mon, 29 Jun 2009 22:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.solitechgmbh.com/?p=470#comment-3723</guid>
		<description>although the game has made strides by allowing you to buy items in bulk instead of click at a time, the same should be done with the sell area. you try selling 10k items!!!!one click, one page load at a time!!!</description>
		<content:encoded><![CDATA[<p>although the game has made strides by allowing you to buy items in bulk instead of click at a time, the same should be done with the sell area. you try selling 10k items!!!!one click, one page load at a time!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by Richard@Home</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-3722</link>
		<dc:creator>Richard@Home</dc:creator>
		<pubDate>Fri, 19 Jun 2009 12:53:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-3722</guid>
		<description>My Link Helper does a similar job:

http://richardathome.com/blog/cakephp-smarter-links</description>
		<content:encoded><![CDATA[<p>My Link Helper does a similar job:</p>
<p><a href="http://richardathome.com/blog/cakephp-smarter-links" rel="nofollow">http://richardathome.com/blog/cakephp-smarter-links</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by Olu</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-3720</link>
		<dc:creator>Olu</dc:creator>
		<pubDate>Wed, 10 Jun 2009 17:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-3720</guid>
		<description>Where do you save this file, app/views/helpers or app/helpers?</description>
		<content:encoded><![CDATA[<p>Where do you save this file, app/views/helpers or app/helpers?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Menu highlighting with CakePHP 1.2 by Dom</title>
		<link>http://www.solitechgmbh.com/2008/06/06/menu-highlighting-with-cakephp-12/comment-page-1/#comment-221</link>
		<dc:creator>Dom</dc:creator>
		<pubDate>Mon, 01 Dec 2008 20:42:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.gyuropia.com/?p=41#comment-221</guid>
		<description>Hey, this works like a charm. Many thanks! :)</description>
		<content:encoded><![CDATA[<p>Hey, this works like a charm. Many thanks! <img src='http://www.solitechgmbh.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
