<?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: Magento Get Customer Feedback, Reviews &#038; Ratings FREE Extension	</title>
	<atom:link href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/</link>
	<description>gaiterjones</description>
	<lastBuildDate>Wed, 31 May 2017 09:01:03 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.3</generator>
	<item>
		<title>
		By: Zuiko		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-273208</link>

		<dc:creator><![CDATA[Zuiko]]></dc:creator>
		<pubDate>Wed, 27 Jul 2016 17:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-273208</guid>

					<description><![CDATA[Hello everybody, some years after...

if someone have problems with special characters in customer name, or product name, be sure your server does not change its PHP version. The issue is around htmlentities  in /app/code/local/PAJ/GetCustomerFeedback/Model/Observer.php.
In fact if PHP is  5.4 htmlentities treats the string per default as utf-8 encoded.

in Observer.php you can read :
$cartProductName=utf8_decode($cartProduct-&#062;getName());
After that $cartProductName contains a string ISO-8859-1 encoded.

Some lines after you can read the preparation of the email content with product name :
$cartHTML=$cartHTML. &#039;&#039;. htmlentities($cartProductName). &#039;&#039;. $newline;

If you have special characters in $cartProductName , htmlentities($cartProductName) returns nothing because an utf-8 encoding is waited.
For me the best solution is to change the 1st line in :
$cartProductName=$cartProduct-&#062;getName();
and code the 2nd with:
htmlentities($cartProductName, ENT_QUOTES, &quot;UTF-8&quot;)
adding arguments to htmlentities to manage surely its behaviour for all languages.

You have to add also htmlentities around $customerName on this line:
$greeting = &#039;&#039;. $this-&#062;getTranslation(&#039;Hello&#039;,$storeID). &#039; &#039;. $customerName. &#039;,&#039;;
but do that like this to be sure:
htmlentities($customerName, ENT_QUOTES, &quot;UTF-8&quot;)

and modify these 2 lines in the same logic (utf8_decode not useful):
		$customerFirstName = strtolower(utf8_decode(Mage::getSingleton(&#039;customer/session&#039;)-&#062;getCustomer()-&#062;getFirstname()));
		$customerLastName = strtolower(utf8_decode(Mage::getSingleton(&#039;customer/session&#039;)-&#062;getCustomer()-&#062;getLastname()));

as this:
$customerFirstName = strtolower(Mage::getSingleton(&#039;customer/session&#039;)-&#062;getCustomer()-&#062;getFirstname());
$customerLastName = strtolower(Mage::getSingleton(&#039;customer/session&#039;)-&#062;getCustomer()-&#062;getLastname());

With these updates, this extension works perfectly now in french under a 5.5.37 PHP version server.]]></description>
			<content:encoded><![CDATA[<p>Hello everybody, some years after&#8230;</p>
<p>if someone have problems with special characters in customer name, or product name, be sure your server does not change its PHP version. The issue is around htmlentities  in /app/code/local/PAJ/GetCustomerFeedback/Model/Observer.php.<br />
In fact if PHP is  5.4 htmlentities treats the string per default as utf-8 encoded.</p>
<p>in Observer.php you can read :<br />
$cartProductName=utf8_decode($cartProduct-&gt;getName());<br />
After that $cartProductName contains a string ISO-8859-1 encoded.</p>
<p>Some lines after you can read the preparation of the email content with product name :<br />
$cartHTML=$cartHTML. &#8221;. htmlentities($cartProductName). &#8221;. $newline;</p>
<p>If you have special characters in $cartProductName , htmlentities($cartProductName) returns nothing because an utf-8 encoding is waited.<br />
For me the best solution is to change the 1st line in :<br />
$cartProductName=$cartProduct-&gt;getName();<br />
and code the 2nd with:<br />
htmlentities($cartProductName, ENT_QUOTES, &#8220;UTF-8&#8243;)<br />
adding arguments to htmlentities to manage surely its behaviour for all languages.</p>
<p>You have to add also htmlentities around $customerName on this line:<br />
$greeting = &#8221;. $this-&gt;getTranslation(&#8216;Hello&#8217;,$storeID). &#8216; &#8216;. $customerName. &#8216;,&#8217;;<br />
but do that like this to be sure:<br />
htmlentities($customerName, ENT_QUOTES, &#8220;UTF-8&#8221;)</p>
<p>and modify these 2 lines in the same logic (utf8_decode not useful):<br />
		$customerFirstName = strtolower(utf8_decode(Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;getCustomer()-&gt;getFirstname()));<br />
		$customerLastName = strtolower(utf8_decode(Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;getCustomer()-&gt;getLastname()));</p>
<p>as this:<br />
$customerFirstName = strtolower(Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;getCustomer()-&gt;getFirstname());<br />
$customerLastName = strtolower(Mage::getSingleton(&#8216;customer/session&#8217;)-&gt;getCustomer()-&gt;getLastname());</p>
<p>With these updates, this extension works perfectly now in french under a 5.5.37 PHP version server.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bhupendra		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-273191</link>

		<dc:creator><![CDATA[Bhupendra]]></dc:creator>
		<pubDate>Thu, 12 May 2016 13:26:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-273191</guid>

					<description><![CDATA[Hello PAJ,

Email not receive.

I installed the extension and made sure the cron job is running. 
I have verified the /cache at the app/code/local/PAJ/GetCustomerFeedback folder and I have put it with 777 and I see extension generates two files for each order in the /cache folder but does not send out emails. 

I have configured it to no verify the order state and to send the email immediately after the order..I have make some orders and put them in different states.. Anything else to review?

I also check spam folder but email not receive.]]></description>
			<content:encoded><![CDATA[<p>Hello PAJ,</p>
<p>Email not receive.</p>
<p>I installed the extension and made sure the cron job is running.<br />
I have verified the /cache at the app/code/local/PAJ/GetCustomerFeedback folder and I have put it with 777 and I see extension generates two files for each order in the /cache folder but does not send out emails. </p>
<p>I have configured it to no verify the order state and to send the email immediately after the order..I have make some orders and put them in different states.. Anything else to review?</p>
<p>I also check spam folder but email not receive.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51808</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Fri, 13 Sep 2013 09:39:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51808</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51800&quot;&gt;Ant&lt;/a&gt;.

When you turn on the email debug do you receive anything?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51800">Ant</a>.</p>
<p>When you turn on the email debug do you receive anything?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ant		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51800</link>

		<dc:creator><![CDATA[Ant]]></dc:creator>
		<pubDate>Thu, 12 Sep 2013 12:22:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51800</guid>

					<description><![CDATA[Hi,

I&#039;m having the same issue as others here. I&#039;ve tried every combination and yet I don&#039;t get any review emails - only the plugin storing files in the cache. I don&#039;t get any errors]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m having the same issue as others here. I&#8217;ve tried every combination and yet I don&#8217;t get any review emails &#8211; only the plugin storing files in the cache. I don&#8217;t get any errors</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: agnieszka		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51796</link>

		<dc:creator><![CDATA[agnieszka]]></dc:creator>
		<pubDate>Thu, 12 Sep 2013 07:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51796</guid>

					<description><![CDATA[I am interested in any feedback module for magento where there is  possibility to have a link in a menu to the specific form, because I&#039;m not interested in ,,Feedback&#039;&#039; bookmark on the right. I can buy module but I need this option.

Please contact with me - agnieszka.oselka90@gmai.com]]></description>
			<content:encoded><![CDATA[<p>I am interested in any feedback module for magento where there is  possibility to have a link in a menu to the specific form, because I&#8217;m not interested in ,,Feedback&#8221; bookmark on the right. I can buy module but I need this option.</p>
<p>Please contact with me &#8211; <a href="mailto:agnieszka.oselka90@gmai.com">agnieszka.oselka90@gmai.com</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: james		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51647</link>

		<dc:creator><![CDATA[james]]></dc:creator>
		<pubDate>Mon, 02 Sep 2013 13:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51647</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51074&quot;&gt;PAJ&lt;/a&gt;.

Hi PAJ,
I implemented this extension for my site.
everything is working fine but email is not send to general address or customer.
It has been saved to cache folder.
Could you give me some suggestion for it.
Thanks....]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51074">PAJ</a>.</p>
<p>Hi PAJ,<br />
I implemented this extension for my site.<br />
everything is working fine but email is not send to general address or customer.<br />
It has been saved to cache folder.<br />
Could you give me some suggestion for it.<br />
Thanks&#8230;.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51075</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Mon, 22 Jul 2013 10:56:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51075</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50964&quot;&gt;pakito&lt;/a&gt;.

Can you send me examples of the two cache files so I can check they are formatted correctly. Have you tried changing the mail option from Magento to PHP or vice versa?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50964">pakito</a>.</p>
<p>Can you send me examples of the two cache files so I can check they are formatted correctly. Have you tried changing the mail option from Magento to PHP or vice versa?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: PAJ		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-51074</link>

		<dc:creator><![CDATA[PAJ]]></dc:creator>
		<pubDate>Mon, 22 Jul 2013 10:55:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-51074</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50973&quot;&gt;Chris&lt;/a&gt;.

Try using htmlentities to try and html encode the special chars.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50973">Chris</a>.</p>
<p>Try using htmlentities to try and html encode the special chars.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Chris		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50973</link>

		<dc:creator><![CDATA[Chris]]></dc:creator>
		<pubDate>Mon, 15 Jul 2013 22:59:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-50973</guid>

					<description><![CDATA[I have problems with customer names with special characters which are not shown correctly
Do you know how to fix that?]]></description>
			<content:encoded><![CDATA[<p>I have problems with customer names with special characters which are not shown correctly<br />
Do you know how to fix that?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: pakito		</title>
		<link>https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50965</link>

		<dc:creator><![CDATA[pakito]]></dc:creator>
		<pubDate>Mon, 15 Jul 2013 04:12:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gaiterjones.com/?p=611#comment-50965</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50964&quot;&gt;pakito&lt;/a&gt;.

Not sure why but i just received the email finally! Weird that I did set the cron job to run per 5 minutes in my cpanel. Then in my Magento i set my cron to &quot;Generate Schedules Every 5&quot;. Then I even manually run the cron.php via shell.

Not sure why the delay??]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.gaiterjones.com/magento-get-customer-feedback-reviews-ratings-free-extension/#comment-50964">pakito</a>.</p>
<p>Not sure why but i just received the email finally! Weird that I did set the cron job to run per 5 minutes in my cpanel. Then in my Magento i set my cron to &#8220;Generate Schedules Every 5&#8221;. Then I even manually run the cron.php via shell.</p>
<p>Not sure why the delay??</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
