<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title><![CDATA[Esvon LTD]]></title>
<link><![CDATA[https://www.esvon.com/support/]]></link>
<description />
<generator><![CDATA[Kayako Fusion v4.58.0.3650]]></generator>
<item>
<title><![CDATA[UTF-8 issue after MySQL server update 5.x to 8.x]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/193]]></link>
<guid isPermaLink="false"><![CDATA[bd686fd640be98efaae0091fa301e613]]></guid>
<pubDate><![CDATA[Fri, 14 Jun 2024 11:12:35 +0300]]></pubDate>
<dc:creator />
<description><![CDATA[Sometimes after MySQL server update to 8.x some things are not displaying as they should.
For example, the bullets are &acirc;&euro;&cent; iv, &Acirc; characters appear on empty lines or in other whitespace,  and apostrophes are replaced by &acirc;&euro;...]]></description>
<content:encoded><![CDATA[<p>Sometimes after MySQL server update to 8.x some things are not displaying as they should.</p>
<p>For example, the bullets are &acirc;&euro;&cent; iv, &Acirc; characters appear on empty lines or in other whitespace,  and apostrophes are replaced by &acirc;&euro;&trade; ,  and many other things that look  weird and seem encoding-related.</p>
<p>Newly added data doesn't display this behaviour.<br /><br />This problem is encoding related and usually is result of your export/import strategy.</p>
<p>The&nbsp;weird chars come from UTF-8 data that was originally stored as Latin-1 and  then not converted correctly to UTF-8.</p>
<p>If you still have access to the old database, you can try exporting it using command like this:</p>
<pre class="notranslate"><code class="notranslate">mysqldump -uDBUSER -pDBPASS -r db.sql --default-character-set=latin1 --skip-set-charset --no-tablespaces DBNAME<br /><br /></code></pre>
<p>If the old database is not available or not up to date, the data is probably still recoverable; you'll  need a MySQL function like</p>
<p><strong>convert(cast(convert(v_descr using latin1) as binary) using utf8)</strong></p>
<p>Here is how you can test it on one record initially:</p>
<p>update ec5_ad set v_descr = convert(cast(convert(v_descr using latin1) as binary) using utf8) where link_id=1<br /><br /></p>]]></content:encoded>
</item>
<item>
<title><![CDATA[All email messages go to junk mail, is there a solution?]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/184]]></link>
<guid isPermaLink="false"><![CDATA[6cdd60ea0045eb7a6ec44c54d29ed402]]></guid>
<pubDate><![CDATA[Sat, 15 Oct 2016 16:43:39 +0300]]></pubDate>
<dc:creator />
<description><![CDATA[You can try to enable PHP mailer authenticating through SMTP at the bottom of this page:
Admin Area -&gt; Application Setup -&gt; Advanced Setup
Here are the steps required:
1/ Change &nbsp;"Method &nbsp;to &nbsp;send &nbsp;mail" &nbsp;to "SMTP Server"...]]></description>
<content:encoded><![CDATA[<p>You can try to enable PHP mailer authenticating through SMTP at the bottom of this page:</p>
<p>Admin Area -&gt; Application Setup -&gt; Advanced Setup</p>
<p>Here are the steps required:</p>
<p>1/ Change &nbsp;"Method &nbsp;to &nbsp;send &nbsp;mail" &nbsp;to "SMTP Server"<br />2/ Specify SMTP Host/Port<br />3/ Enable SMTP authentication<br />4/ Specify SMTP Username/Password<br />5/ Click "Update"</p>
<p>If your script version has "No-Reply Email" option in Application Setup (since 4.0.14), it may be necesary to match SMTP Username with "No-Reply Email"(make sure they are the same)</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[How can fields of textarea type be displayed with line breaks in the frontend / ...]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/190]]></link>
<guid isPermaLink="false"><![CDATA[cfecdb276f634854f3ef915e2e980c31]]></guid>
<pubDate><![CDATA[Tue, 05 May 2020 20:19:37 +0300]]></pubDate>
<dc:creator />
<description><![CDATA[You can use "|nl2br" modificator in the proper template (details.htm for ad&nbsp;details page).
For example:##f_descr|nl2br##]]></description>
<content:encoded><![CDATA[<p>You can use "|nl2br" modificator in the proper template (details.htm for ad&nbsp;details page).</p>
<p>For example:##f_descr|nl2br##</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[How can I force secure browsing through HTTPS in Admin Area for all pages?]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/188]]></link>
<guid isPermaLink="false"><![CDATA[9dcb88e0137649590b755372b040afad]]></guid>
<pubDate><![CDATA[Wed, 06 Dec 2017 21:33:26 +0200]]></pubDate>
<dc:creator />
<description><![CDATA[If you have Apache server you can place .htaccess file into /admin/ directory (or its renamed equivalent) with the following lines (use your directory name instead of /admin/ if you renamed it).
If .htaccess file already exists you can add these lines to...]]></description>
<content:encoded><![CDATA[<p>If you have Apache server you can place .htaccess file into /admin/ directory (or its renamed equivalent) with the following lines (use your directory name instead of /admin/ if you renamed it).</p>
<p>If .htaccess file already exists you can add these lines to it unless some of them are already there:</p>
<p>RewriteEngine On<br />RewriteBase /admin/</p>
<p>RewriteCond %{HTTPS} off<br />RewriteRule (.*) https://%{SERVER_NAME}/admin/$1 [R=301,L]</p>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why installed client software for Member Websites module does not display conten...]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/186]]></link>
<guid isPermaLink="false"><![CDATA[9872ed9fc22fc182d371c3e9ed316094]]></guid>
<pubDate><![CDATA[Tue, 24 Jan 2017 12:27:36 +0200]]></pubDate>
<dc:creator />
<description><![CDATA[In Admin Area -&gt; Member_Website -&gt; Allowed Fields you can select a fieldset and check which fields are marked as "disabled". After making changes do not forget to click "Update".]]></description>
<content:encoded><![CDATA[In Admin Area -&gt; Member_Website -&gt; Allowed Fields you can select a fieldset and check which fields are marked as "disabled". After making changes do not forget to click "Update".]]></content:encoded>
</item>
<item>
<title><![CDATA[Why my website is showing message &quot;Please access site through domain mydomain.co...]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/187]]></link>
<guid isPermaLink="false"><![CDATA[31fefc0e570cb3860f2a6d4b38c6490d]]></guid>
<pubDate><![CDATA[Thu, 30 Mar 2017 09:20:36 +0300]]></pubDate>
<dc:creator />
<description><![CDATA[In Admin Area -&gt; Application Setup you have Site URL defined as starting withhttp://mydomain.com/&nbsp;(by mydomain.com&nbsp;we mean your actual domain)You can change it to begin with&nbsp;http://www.mydomain.com/If you want both "www" and "non-www" UR...]]></description>
<content:encoded><![CDATA[<span>In Admin Area -&gt; Application Setup you have Site URL defined as starting with</span><br /><br /><a href="http://mylocalresources.com/mlrdiscoverDev/" target="_blank">http://mydomain.com/</a>&nbsp;(by <a href="http://mylocalresources.com/mlrdiscoverDev/" target="_blank">mydomain.com</a>&nbsp;we mean your actual domain)<br /><br /><span>You can change it to begin with&nbsp;</span><a href="http://www.mylocalresources.com/mlrdiscoverDev/" target="_blank"></a><a href="http://mylocalresources.com/mlrdiscoverDev/" target="_blank">http://www.mydomain.com/</a><br /><br /><span>If you want both "www" and "non-www" URLs to work as mirrors (not best idea for SEO, the website may suffer from duplicate content penalty), just comment out the related PHP code in inc/app_init.php (search for string "Please access site through domain")</span>]]></content:encoded>
</item>
<item>
<title><![CDATA[Why some of the expired listings become active again with a new expiration date ...]]></title>
<link><![CDATA[https://www.esvon.com/support/index.php?/Knowledgebase/Article/View/189]]></link>
<guid isPermaLink="false"><![CDATA[a2557a7b2e94197ff767970b67041697]]></guid>
<pubDate><![CDATA[Sat, 26 May 2018 10:17:06 +0300]]></pubDate>
<dc:creator />
<description><![CDATA[If a price plan is configured to expire into another price plan then a new plan is activated automatically when previous plan expires. So a new expiration date is set according to a new plan settings.
You can avoid this by making sure "Price plan to expi...]]></description>
<content:encoded><![CDATA[<p>If a price plan is configured to expire into another price plan then a new plan is activated automatically when previous plan expires. So a new expiration date is set according to a new plan settings.</p>
<p>You can avoid this by making sure "Price plan to expire this price plan into" is set to nothing. This option can be be seen when you click "modify" next to any price plan in Admin Area -&gt; Price Plans.</p>]]></content:encoded>
</item>
</channel>
</rss>