<?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 Trustap Test Store	</title>
	<atom:link href="http://blog.pepa.info/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.pepa.info</link>
	<description>Petr 'PePa' Pavel</description>
	<lastBuildDate>Wed, 30 Jan 2019 00:10:11 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on Composer not autoloading your package? by SW		</title>
		<link>http://blog.pepa.info/php-html-css/composer/composer-not-autoloading-your-package/#comment-455420</link>

		<dc:creator><![CDATA[SW]]></dc:creator>
		<pubDate>Wed, 30 Jan 2019 00:10:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=529#comment-455420</guid>

					<description><![CDATA[Thank you for this. I was searching for a while to figure out why my package wasn&#039;t registering in the autoloader. Setting the autoload in the respository did it. Strange that it doesn&#039;t just read the package&#039;s composer.json.]]></description>
			<content:encoded><![CDATA[<p>Thank you for this. I was searching for a while to figure out why my package wasn&#8217;t registering in the autoloader. Setting the autoload in the respository did it. Strange that it doesn&#8217;t just read the package&#8217;s composer.json.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on processing IMAP folder on a regular basis by Naresh Kumar		</title>
		<link>http://blog.pepa.info/php-html-css/imap/processing-imap-folder-on-a-regular-basis/#comment-416640</link>

		<dc:creator><![CDATA[Naresh Kumar]]></dc:creator>
		<pubDate>Mon, 28 Nov 2016 10:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/php-html-css/uncategorized/processing-imap-folder-on-a-regular-basis/#comment-416640</guid>

					<description><![CDATA[my case is some this different. 
Case is : i have 100 mail server and i want to read them using PHP IMAP search.
Issue here , there could be different time zones. and i am stuck here.. i want to discuss with you for my solution.]]></description>
			<content:encoded><![CDATA[<p>my case is some this different.<br />
Case is : i have 100 mail server and i want to read them using PHP IMAP search.<br />
Issue here , there could be different time zones. and i am stuck here.. i want to discuss with you for my solution.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on processing IMAP folder on a regular basis by Naresh Kumar		</title>
		<link>http://blog.pepa.info/php-html-css/imap/processing-imap-folder-on-a-regular-basis/#comment-416639</link>

		<dc:creator><![CDATA[Naresh Kumar]]></dc:creator>
		<pubDate>Mon, 28 Nov 2016 10:23:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/php-html-css/uncategorized/processing-imap-folder-on-a-regular-basis/#comment-416639</guid>

					<description><![CDATA[Hi, i want to discuss PHP IMAP search in deep with you. what is your email id ?]]></description>
			<content:encoded><![CDATA[<p>Hi, i want to discuss PHP IMAP search in deep with you. what is your email id ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Getting rid of JOINs in updateAll() query by Brian		</title>
		<link>http://blog.pepa.info/php-html-css/cakephp/getting-rid-of-joins-in-updateall-query/#comment-395785</link>

		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Mon, 28 Dec 2015 17:17:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=144#comment-395785</guid>

					<description><![CDATA[Thanks for this post. I know it is very old, but what about hasMany and hasAndBelongsToMany? Wouldn&#039;t they need to be unset as well?]]></description>
			<content:encoded><![CDATA[<p>Thanks for this post. I know it is very old, but what about hasMany and hasAndBelongsToMany? Wouldn&#8217;t they need to be unset as well?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Paginating in Constant Contact API by Matt L.		</title>
		<link>http://blog.pepa.info/php-html-css/constant-contact/paginating-in-constant-contact-api/#comment-314746</link>

		<dc:creator><![CDATA[Matt L.]]></dc:creator>
		<pubDate>Thu, 12 Feb 2015 14:24:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=459#comment-314746</guid>

					<description><![CDATA[Your w/CC object code is just a bit off.  With the APIv2 php wrapper, simply setting the $param = $result-&#062;next; is incorrect and results in an exception.  What&#039;s really expected there is either an integer or a bit of a URL query string, so you need to do this:

$param = &quot;?next=&quot; . $result-&#062;next;

so the param looks like that bit of a query string.  Just passing in the next variable from the response isn&#039;t quite enough.

Thanks.]]></description>
			<content:encoded><![CDATA[<p>Your w/CC object code is just a bit off.  With the APIv2 php wrapper, simply setting the $param = $result-&gt;next; is incorrect and results in an exception.  What&#8217;s really expected there is either an integer or a bit of a URL query string, so you need to do this:</p>
<p>$param = &#8220;?next=&#8221; . $result-&gt;next;</p>
<p>so the param looks like that bit of a query string.  Just passing in the next variable from the response isn&#8217;t quite enough.</p>
<p>Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Getting rid of JOINs in updateAll() query by Pankaj K		</title>
		<link>http://blog.pepa.info/php-html-css/cakephp/getting-rid-of-joins-in-updateall-query/#comment-288360</link>

		<dc:creator><![CDATA[Pankaj K]]></dc:creator>
		<pubDate>Tue, 23 Dec 2014 13:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=144#comment-288360</guid>

					<description><![CDATA[Thank very much for this.]]></description>
			<content:encoded><![CDATA[<p>Thank very much for this.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Paginating in Constant Contact API by Petr 'PePa' Pavel		</title>
		<link>http://blog.pepa.info/php-html-css/constant-contact/paginating-in-constant-contact-api/#comment-169611</link>

		<dc:creator><![CDATA[Petr 'PePa' Pavel]]></dc:creator>
		<pubDate>Fri, 12 Sep 2014 15:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=459#comment-169611</guid>

					<description><![CDATA[Oh absolutely. I&#039;m glad that you want to improve the documentation. Let me know if I can help.]]></description>
			<content:encoded><![CDATA[<p>Oh absolutely. I&#8217;m glad that you want to improve the documentation. Let me know if I can help.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Paginating in Constant Contact API by Rich Marcucella		</title>
		<link>http://blog.pepa.info/php-html-css/constant-contact/paginating-in-constant-contact-api/#comment-169581</link>

		<dc:creator><![CDATA[Rich Marcucella]]></dc:creator>
		<pubDate>Fri, 12 Sep 2014 13:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=459#comment-169581</guid>

					<description><![CDATA[Hi Petra,

I write the API docs for the CTCT v2 API. I&#039;m wondering if you would allow me to use your code samples in our documentation, with due credit provided?

Thanks,
Rich]]></description>
			<content:encoded><![CDATA[<p>Hi Petra,</p>
<p>I write the API docs for the CTCT v2 API. I&#8217;m wondering if you would allow me to use your code samples in our documentation, with due credit provided?</p>
<p>Thanks,<br />
Rich</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Access denied in mysqldump after ip address change by Novoj		</title>
		<link>http://blog.pepa.info/php-html-css/mysql/access-denied-mysqldump/#comment-148898</link>

		<dc:creator><![CDATA[Novoj]]></dc:creator>
		<pubDate>Fri, 18 Jul 2014 12:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=450#comment-148898</guid>

					<description><![CDATA[You have similar problems when migrating MySQL dump to another machine - form example dump from production server to your developer machine for debugging purposes.

I&#039;ve made a simple (Linux) based utility that will automatically recreate all views in certain database with redefining definer. More details here: http://blog.novoj.net/2014/05/16/recreate-mysql-views-without-definer-one-liner-solution-linux/

Maybe it&#039;ll be of some use to you.

Cheers]]></description>
			<content:encoded><![CDATA[<p>You have similar problems when migrating MySQL dump to another machine &#8211; form example dump from production server to your developer machine for debugging purposes.</p>
<p>I&#8217;ve made a simple (Linux) based utility that will automatically recreate all views in certain database with redefining definer. More details here: <a href="http://blog.novoj.net/2014/05/16/recreate-mysql-views-without-definer-one-liner-solution-linux/" rel="nofollow ugc">http://blog.novoj.net/2014/05/16/recreate-mysql-views-without-definer-one-liner-solution-linux/</a></p>
<p>Maybe it&#8217;ll be of some use to you.</p>
<p>Cheers</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Tired of template undefined field warnings in PhpStorm? by Tomáš Votruba		</title>
		<link>http://blog.pepa.info/php-html-css/tools/template-undefined-field-warnings-in-phpstorm/#comment-143865</link>

		<dc:creator><![CDATA[Tomáš Votruba]]></dc:creator>
		<pubDate>Fri, 27 Jun 2014 20:31:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.pepa.info/?p=445#comment-143865</guid>

					<description><![CDATA[For Nette 2.2 version

/**
 * @property-read \Nette\Bridges\ApplicationLatte\Template&#124;\stdClass $template
 */]]></description>
			<content:encoded><![CDATA[<p>For Nette 2.2 version</p>
<p>/**<br />
 * @property-read \Nette\Bridges\ApplicationLatte\Template|\stdClass $template<br />
 */</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
