<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title></title>
        <link>https://interactivetools.com/forum/forum-search.php?k=user%3Atheclicklab</link>
        <description></description>
        <pubDate>Sat, 07 Mar 2026 10:08:13 -0800</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?rss=1&amp;k=user%3Atheclicklab" rel="self" type="application/rss+xml" />

                <item>
          <title>Facebook ads - fbclid error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248044#post2248044</link>
          <description><![CDATA[<p>Thanks Rob for those tips, I solved this.<br /><br />foreach($_REQUEST as $key =&gt; $item){<br />if($key != 'page' &amp;&amp; $key != 'sort' &amp;&amp; $key != 'gclid' &amp;&amp; $key != 'fbclid' &amp;&amp; $key != 'msclkid' &amp;&amp; strpos($key, 'utm') === false){<br />$recordNum = preg_replace("/[^0-9,.]/", "",$item);<br />break;<br />}<br />}<br /><br /></p>]]></description>
          <pubDate>Tue, 01 Jul 2025 13:17:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248044#post2248044</guid>
        </item>
                <item>
          <title>Facebook ads - fbclid error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248042#post2248042</link>
          <description><![CDATA[<p>Hi, Getting errors with clicks from facebook ads. What do we need to do to ignore the fbclid query string? e.g. <br /><br /><a href="https://www.luxurychartergroup.com/fr/yacht-type.php/sailing-1/?fbclid=IwZXh0bgNhZW0CMTEAAR7fTQ-i0Wqhbb9AcxZH7diA0z0D8ZZP7LoAuS2-ye-86BO_GJ8hKRYcGLq97w_aem__zv4OF5lCj9Fz28JdJBg8Q" rel="nofollow">https://www.luxurychartergroup.com/fr/yacht-type.php/sailing-1/?fbclid=IwZXh0bgNhZW0CMTEAAR7fTQ-i0Wqhbb9AcxZH7diA0z0D8ZZP7LoAuS2-ye-86BO_GJ8hKRYcGLq97w_aem__zv4OF5lCj9Fz28JdJBg8Q</a><br /><br />Error:<br />Warning: Trying to access array offset on value of type null in /home/luxurychartergroup/luxurychartergroup.com/fr/yacht-type.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home/luxurychartergroup/luxurychartergroup.com/cms/lib/errorlog_functions.php:113) in /home/luxurychartergroup/luxurychartergroup.com/fr/yacht-type.php on line 32Warning: Cannot modify header information - headers already sent by (output started at /home/luxurychartergroup/luxurychartergroup.com/cms/lib/errorlog_functions.php:113) in /home/luxurychartergroup/luxurychartergroup.com/404.php on line 1Warning: Cannot modify header information - headers already sent by (output started at /home/luxurychartergroup/luxurychartergroup.com/cms/lib/errorlog_functions.php:113) in /home/luxurychartergroup/luxurychartergroup.com/404.php on line 2<br /><br />Many Thanks :)</p>]]></description>
          <pubDate>Tue, 01 Jul 2025 12:05:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248042#post2248042</guid>
        </item>
                <item>
          <title>Website membership errors after php 8 upgrade</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245841#post2245841</link>
          <description><![CDATA[<p>Thanks Daniel, was able to resolve everything with your examples. Much appreciated :)</p>]]></description>
          <pubDate>Wed, 16 Feb 2022 19:24:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245841#post2245841</guid>
        </item>
                <item>
          <title>Website membership errors after php 8 upgrade</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245836#post2245836</link>
          <description><![CDATA[<p>Website Membership1.13<br />CMS: 3.55</p>
<p>Hi there, Getting some warnings after upgrading to php 8:</p>
<p><strong>Issue #1 - related to membership plugin</strong></p>
<p><span>E_WARNING: Trying to access array offset on value of type bool (line 12)</span></p>
<p><span>The code:</span><br />if ($CURRENT_USER['member_approved'] == 1 &amp;&amp; $CURRENT_USER['private_yacht_access'] == 1 ) {</p>
<p><strong>Issue #2 - general php warning</strong><br /></p>
<p><span>#19595 - E_WARNING: Trying to access array offset on value of type null</span></p>
<p>In this block of code (see comments for where errors occuring)</p>
<pre class="language-markup"><code>&lt;?php foreach ($yachtsRecords as $record): ?&gt;

  &lt;?php if ($record['yachtfolio_link_new']) {

    $yachtfolio_num = $record['yachtfolio_link_new'];
    list($link_redirectsRecords, $link_redirectsMetaData) = getRecords(array(
      'tableName'   =&gt; 'link_redirects',
      'where'       =&gt; "`num` = '". mysql_escape($yachtfolio_num) ."'",
      'loadUploads' =&gt; false,
      'allowSearch' =&gt; false,
      'limit'       =&gt; '1',
    ));
    $link_redirectsRecord = @$link_redirectsRecords[0];

      if ($link_redirectsRecord['link_destination']) {
        $linky = $link_redirectsRecord['link_destination']; // ERROR ON THIS LINE
      } else {
        $linky = $link_redirectsRecord['yachtfolio_link_destination'] . $settingsRecord['yachtfolio_id']; // ERROR ON THIS LINE
      }

    $linky_target = "_blank";

  } elseif ($record['yachtfolio_link']) {
    $linky = $record['yachtfolio_link'] . $settingsRecord['yachtfolio_id'];
    $linky_target = "_blank";
  
  } else {

    if ($yacht_typeRecord['num']==8) {
      $link = $record['_link'];
      $linky = strtolower(str_replace("yacht.php", "for-sale.php", $link));
      $linky_target = "_self";
    } else {
      $linky = strtolower($record['_link']);
      $linky_target = "_self";
    }

  }  
?&gt;</code></pre>



]]></description>
          <pubDate>Mon, 14 Feb 2022 13:23:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245836#post2245836</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245681#post2245681</link>
          <description><![CDATA[<p>Awesome thanks! That did the trick :)</p>]]></description>
          <pubDate>Tue, 19 Oct 2021 13:11:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245681#post2245681</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245679#post2245679</link>
          <description><![CDATA[<p>Hi Michael,</p>
<p>Thanks for that, fixed the error from showing in the admin but still getting the following errors in the log (see attached also)</p>
<pre class="language-markup"><code>E_NOTICE: Undefined index: listType
/cms/lib/menus/default/edit_functions.php (line 767)
/cms/admin.php?menu=blog&amp;action=edit&amp;num=79

E_NOTICE: Undefined index: listType
/cms/lib/menus/default/edit_functions.php (line 762)
/cms/admin.php?menu=blog&amp;action=edit&amp;num=79</code></pre>
<p>BTW, forgot to mention this is <span>v3.54 (Build 2280)</span></p>
<pre class="language-php"><code>&lt;?

// list fields w/ advanced filters - add onchange event handler to local filter field
  if (@$fieldSchema['filterField']) {
    $targetListField = $fieldSchema['name'];
    $filterSchema    = $GLOBALS['schema'][$fieldSchema['filterField']];
    // $sourceField     = ($filterSchema['listType'] == 'checkboxes' || $filterSchema['listType'] == 'pulldownMulti')? $filterSchema['name']."[]" : $filterSchema['name'] ;
    $sourceField = (!empty($filterSchema['listType']) &amp;&amp; ($filterSchema['listType'] == 'checkboxes' || $filterSchema['listType'] == 'pulldownMulti'))? $filterSchema['name']."[]" : $filterSchema['name'] ;

    ?&gt;
    &lt;script type="text/javascript"&gt;&lt;!--
      $("[name='&lt;?php echo $sourceField; ?&gt;']").change(function () {
        &lt;?php if($filterSchema['listType'] == 'pulldownMulti'): ?&gt;
          newFilterValue = "\t";
          $.each($("[name='&lt;?php echo $sourceField ?&gt;']").select2('data'), function( key, selectedOption ) {
            newFilterValue = newFilterValue + selectedOption.id + "\t" ;
          });
        &lt;?php elseif($filterSchema['listType'] == 'checkboxes') : ?&gt;
          newFilterValue = "\t";
          $("[name='&lt;?php echo $sourceField ?&gt;']:checked").map(function(){
            newFilterValue = newFilterValue + $(this).val()+ "\t" ;
          });
        &lt;?php else: ?&gt;
          var newFilterValue  = this.value;
        &lt;?php endif; ?&gt;

        var targetListField = '&lt;?php echo $targetListField ?&gt;';
        updateListFieldOptions(targetListField, newFilterValue);
      });
    // --&gt;&lt;/script&gt;</code></pre>]]></description>
          <pubDate>Tue, 19 Oct 2021 12:02:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245679#post2245679</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245675#post2245675</link>
          <description><![CDATA[<p>Hi there,</p>
<p>Getting <span>Undefined index: listType</span> errors on a list field that's using the mySQL advanced option to join two fields together:</p>
<p>SELECT num, CONCAT(name, ' - ',size)<br />FROM `&lt;?php echo $TABLE_PREFIX ?&gt;products`</p>
<p>The list gets output fine in the cms, but has errors at the end:</p>
<p><span>E_NOTICE: Undefined index: listType</span><br /><span>/cms/lib/menus/default/edit_functions.php (line 766)</span><br /><span>/cms/admin.php?menu=blog&amp;action=edit&amp;num=79</span></p>
<p><span>E_NOTICE: Undefined index: listType<br />/cms/lib/menus/default/edit_functions.php (line 761)<br />/cms/admin.php?menu=blog&amp;action=edit&amp;num=79</span></p>
<p><span>E_NOTICE: Undefined index: listType</span><br /><span>/cms/lib/menus/default/edit_functions.php (line 757)</span><br /><span>/cms/admin.php?menu=blog&amp;action=edit&amp;num=79</span></p>
<p>Size can sometimes be blank in case that helps.</p>
<p>Any tips to fix this? Thanks :)</p>]]></description>
          <pubDate>Mon, 18 Oct 2021 18:00:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245675#post2245675</guid>
        </item>
                <item>
          <title>Query help </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245423#post2245423</link>
          <description><![CDATA[<p>Thanks <span>Djulia that worked :)</span></p>]]></description>
          <pubDate>Fri, 26 Feb 2021 12:06:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245423#post2245423</guid>
        </item>
                <item>
          <title>Query help </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245416#post2245416</link>
          <description><![CDATA[<p>Hi there, need some help with a record lookup query:</p>
<pre class="language-php"><code>$geoid = "AU";

// load record from 'banners'
list($bannersRecords, $bannersMetaData) = getRecords(array(
'tableName' =&gt; 'banners',
'where' =&gt; "`country_code` LIKE '". mysql_escape($geoid) ."'",
'loadUploads' =&gt; false,
'allowSearch' =&gt; false,
'limit' =&gt; '1',
));
$bannersRecord = @$bannersRecords[0]; // get first record</code></pre>
<p>country_code has a list of id's in it separated by comma's like this:</p>
<p>AU,NZ,US</p>
<p>What should I use for 'where' =&gt; </p>
<p>Many thanks :)</p>
]]></description>
          <pubDate>Wed, 24 Feb 2021 19:36:55 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245416#post2245416</guid>
        </item>
                <item>
          <title>MYSQL Select Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244367#post2244367</link>
          <description><![CDATA[<p>Thanks for this, so I am still having an issues, the mysql debug is showing up the correct values:</p>
<pre class="language-markup"><code>SELECT SQL_CALC_FOUND_ROWS `yachts`.*
FROM `cms_yachts` as `yachts`
 WHERE (type IN ('motor','sailing','catamaran','power-catamaran','gulet','motorsail','mega-yacht') AND active ='1' AND hide ='0' AND private ='1' ) </code></pre>
<p>but Im still not getting back any results. Is it because the type field in the yacht table is holding multiple text values separated by tabs? e.g.</p>
<pre class="language-markup"><code>"	gulet	"
"	sailing	gulet	motorsail	"
"	gulet	motorsail	"</code></pre>
<p>Here's my code:</p>
<pre class="language-markup"><code>if ($CURRENT_USER['preferred_yacht_types']) {
  $preferred_yacht_types = explode("\t", trim($CURRENT_USER['preferred_yacht_types']));
  $user_yacht_type = mysql_escapeCSV($preferred_yacht_types);
} else {
  $user_yacht_type = "";
}

list($yachtsRecords, $yachtsMetaData) = getRecords(array(
  'tableName'   =&gt; 'yachts',
  'where'     =&gt; "type IN (" . $user_yacht_type . ") AND active ='1' AND hide ='0' AND private ='1' ",
  'loadUploads' =&gt; true,
  'allowSearch' =&gt; true,
  'useSeoUrls'  =&gt; true,
  'limit'       =&gt; 3,
  'debugSql'    =&gt; true,
));</code></pre>]]></description>
          <pubDate>Wed, 01 Jan 2020 16:55:48 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244367#post2244367</guid>
        </item>
                <item>
          <title>MYSQL Select Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244345#post2244345</link>
          <description><![CDATA[<p>Hi there,</p>
<p>I have a user who has been tagged with multiple yacht types that they are interested in:</p>
<pre class="language-php"><code>$CURRENT_USER['preferred_yacht_types']</code></pre>
<p>So the value in here might be something like this:</p>
<pre class="language-php"><code> 2 3 4 </code></pre>
<p>How do I setup the select statement to bring back all yachts that match any one of these values? This is what I have so far:</p>
<pre class="language-php"><code>&lt;?php // load records from 'yachts'
if ($CURRENT_USER['preferred_yacht_types']) {
$user_yacht_type = $CURRENT_USER['preferred_yacht_types'];
} else {
$user_yacht_type = "";
}
list($yachtsRecords, $yachtsMetaData) = getRecords(array(
'tableName'   =&gt; 'yachts',
'where'     =&gt; "type LIKE '". mysql_escape($user_yacht_type) ."'" . ' AND active ="1"' . ' AND hide ="0"' . ' AND private ="1"', 
'loadUploads' =&gt; true,
'allowSearch' =&gt; false,
'useSeoUrls'    =&gt; true,
'limit' =&gt; 3,
'debugSql' =&gt; true,
)); ?&gt;</code></pre>
<p>Thanks in advance for your help</p>]]></description>
          <pubDate>Wed, 11 Dec 2019 17:24:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244345#post2244345</guid>
        </item>
                <item>
          <title>GCLID Issue - weird...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243349#post2243349</link>
          <description><![CDATA[<p>Hi <span>Daniel, thats pretty random, thanks for picking that up. Probably caused by cloudflare. </span></p>]]></description>
          <pubDate>Tue, 07 May 2019 19:30:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243349#post2243349</guid>
        </item>
                <item>
          <title>GCLID Issue - weird...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243346#post2243346</link>
          <description><![CDATA[<p>Just came across this where we are getting 418 errors with google adwords tracking e.g:</p>
<p><a href="https://www.sailconnections.com/destinations/south-pacific/new-caledonia/?gclid=EAIaIQobChMInfeJ6oKI4gIVExWPCh0RnQ0XEAAYASAAEgKpkfD_BwE" rel="nofollow">https://www.sailconnections.com/destinations/south-pacific/new-caledonia/?gclid=EAIaIQobChMInfeJ6oKI4gIVExWPCh0RnQ0XEAAYASAAEgKpkfD_BwE</a></p>
<p>but if I strip off some of the code it works:</p>
<p><a href="https://www.sailconnections.com/destinations/south-pacific/new-caledonia/?gclid=EAIaIQobChMInfeJ6oKI4gIVExWPCh0RnQ0XE" rel="nofollow">https://www.sailconnections.com/destinations/south-pacific/new-caledonia/?gclid=EAIaIQobChMInfeJ6oKI4gIVExWPCh0RnQ0XE</a></p>
<p>Any Idea why that might be the case?</p>]]></description>
          <pubDate>Mon, 06 May 2019 16:40:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243346#post2243346</guid>
        </item>
                <item>
          <title>Use multiple fields in admin list option label dropdown</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242955#post2242955</link>
          <description><![CDATA[<p>Ah, gotcha, that works, thanks so much, awesome!</p>]]></description>
          <pubDate>Wed, 23 Jan 2019 15:21:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242955#post2242955</guid>
        </item>
                <item>
          <title>Use multiple fields in admin list option label dropdown</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242953#post2242953</link>
          <description><![CDATA[<p>Im still getting this error</p>
<p><span>MySQL Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE name IS NOT NULL AND name != ''' at line 4</span></p>
<p><span>For the following:</span></p>
<pre class="language-php"><code>SELECT num, name
FROM `&lt;?php echo $TABLE_PREFIX ?&gt;itineraries`
ORDER BY name ASC
WHERE name IS NOT NULL AND name != ''</code></pre>
<p><span>None of these WHERE options work:</span></p>
<pre class="language-php"><code>WHERE name IS NOT NULL AND name != ''

WHERE name IS NOT NULL

WHERE name != ''</code></pre>
<p><span>Could it be related to still using an older version of php?</span></p>]]></description>
          <pubDate>Wed, 23 Jan 2019 14:09:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242953#post2242953</guid>
        </item>
                <item>
          <title>Use multiple fields in admin list option label dropdown</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242951#post2242951</link>
          <description><![CDATA[<p>Hi Dave, perfect thanks for that, have managed to do quite a bit of customisation with those tips. I just have one more issue where I'm getting a SQL syntax error when trying to exclude blank values from a list, I've tried the following two WHERE statements and neither work. Any suggestions?</p>
<pre class="language-php"><code>SELECT num, name
FROM `itineraries`
ORDER BY name ASC
WHERE name IS NOT NULL
WHERE name != ''</code></pre>
]]></description>
          <pubDate>Wed, 23 Jan 2019 13:14:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242951#post2242951</guid>
        </item>
                <item>
          <title>Admin Get Options MQSQL Query - Use multiple fields label dropdown</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242940#post2242940</link>
          <description><![CDATA[<p>In the admin, I have a list field using "get options from database" where I would like to set the <span>option LABELS to use TWO fields e.g. First Name and Last Name.</span></p>
<p><span>For this I assume I need to use the "get options from MYSQL query" ? Just </span><span>looking for some guidance on how to use this feature. </span></p>
<p><span>See attached admin screen </span></p>
<p><span>Many thanks!</span></p>]]></description>
          <pubDate>Mon, 21 Jan 2019 20:31:53 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242940#post2242940</guid>
        </item>
                <item>
          <title>Search Results Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242732#post2242732</link>
          <description><![CDATA[<p>Thanks Daniel, issue fixed :)</p>]]></description>
          <pubDate>Tue, 04 Dec 2018 13:32:25 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242732#post2242732</guid>
        </item>
                <item>
          <title>Search Results Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242724#post2242724</link>
          <description><![CDATA[<p>Hi there, Just wondering why I am not able to get a keyword search to return all the results available. Do you see anything obvious I am doing wrong here?</p>
<p>For example:</p>
<p>This query only returns 3 yachts:</p>
<p><a href="https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1&amp;yacht_name_query%2Cmeta_description_query%2Cintro_query%2Cdescription_query=Lagoon" rel="nofollow">https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1&amp;yacht_name_query%2Cmeta_description_query%2Cintro_query%2Cdescription_query=Lagoon</a></p>
<p>If I search in the admin I get 10 results (see attached)</p>
<p>If I remove the keyword and just search for yacht_type and charter_type I can see there are 10 yachts with the name Lagoon:</p>
<p><a href="https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1" rel="nofollow">https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1</a></p>
<p>If I remove the other fields from the keyword search it does work:</p>
<p><a href="https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1&amp;yacht_name_query=Lagoon" rel="nofollow">https://www.sailconnections.com/yachts.php?yacht_type=2&amp;charter_type=1&amp;yacht_name_query=Lagoon</a></p>
<p>e.g. yacht_name_query%2Cmeta_description_query%2Cintro_query%2Cdescription_query=Lagoon &gt;&gt; yacht_name_query=Lagoon</p>
<p>so maybe Im doing something wrong with that, can you only have one query field?</p>


<p>Any suggestions?</p>]]></description>
          <pubDate>Mon, 03 Dec 2018 13:21:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242724#post2242724</guid>
        </item>
                <item>
          <title>Geocoder API Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242523#post2242523</link>
          <description><![CDATA[<p>Hi Greg, OK great thanks, that fixed it... That was really hard to find where to enable the API!</p>]]></description>
          <pubDate>Fri, 28 Sep 2018 15:48:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242523#post2242523</guid>
        </item>
                <item>
          <title>Geocoder API Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242520#post2242520</link>
          <description><![CDATA[<p>Hi there,</p>
<p>A Geocoder plugin for a client stopped working so we have upgraded and added an API key. Now we are getting the following error message:</p>
<p>Bad response from Google geocoder API: REQUEST_DENIED<br />plugins/geocoder/geocoder.php (line 145)</p>
<p><span>Application restrictions: </span><span>None</span> <span> <br /><span>API restrictions: </span><span>None</span></span></p>
<p>Any suggestions? </p>]]></description>
          <pubDate>Thu, 27 Sep 2018 16:21:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242520#post2242520</guid>
        </item>
                <item>
          <title>Weird URL Bug?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242507#post2242507</link>
          <description><![CDATA[<p>Yep, so we are getting the following show up in the error log:</p>
<p>#3686 - E_USER_NOTICE: DEBUG - Record Number: num = '274'<br />/home/luxurychartergroup/luxurychartergroup.com/fr/post.php (line 17)<br /><a href="https://www.luxurychartergroup.com/fr/post.php/-rapide-274/" rel="nofollow">https://www.luxurychartergroup.com/fr/post.php/yacht-rapide-274/</a></p>
<p>I suspect its related to the php files with a similar name as well, but not sure what to do next, any suggestion?</p>]]></description>
          <pubDate>Thu, 20 Sep 2018 21:55:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242507#post2242507</guid>
        </item>
                <item>
          <title>Weird URL Bug?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2242495#post2242495</link>
          <description><![CDATA[<p>Hi there, I have a weird issue where some urls show a 404 error if they start with the word "destinations" or "yacht" in them e.g. </p>
<ul><li>404: luxurychartergroup.com/fr/post.php/<span style="color:#ff0000;"><strong>yacht</strong></span>-rapide-274/</li>
<li>200: luxurychartergroup.com/fr/post.php/rapide-274/</li>
</ul><p>OR</p>
<ul><li>404: luxurychartergroup.com/post.php/<span style="color:#ff0000;"><strong>destinations</strong></span>-eloigne-249/</li>
<li>200: luxurychartergroup.com/post.php/destination-eloigne-249/</li>
</ul><p>See attached page code. I also checked the htaccess file and no weird rules in there. </p>
<p>Any idea what might be causing this?</p>
<p>CMS Builder v3.14 + plugins (see attached)</p>


]]></description>
          <pubDate>Mon, 17 Sep 2018 16:32:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2242495#post2242495</guid>
        </item>
                <item>
          <title>Increase length of Upload Info Fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240601#post2240601</link>
          <description><![CDATA[<p>Hi Dave, I did that but the actual field in the upload popup also has a maxlength on it as well. I also tried changing the field type to text box but this still shows as a text field. </p>
]]></description>
          <pubDate>Thu, 25 May 2017 14:09:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240601#post2240601</guid>
        </item>
                <item>
          <title>Increase length of Upload Info Fields</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2240579#post2240579</link>
          <description><![CDATA[<p>Hi there, is there any way to increase the amount of text that can be added to the info fields for file upload fields?</p>
<p>Many thanks</p>]]></description>
          <pubDate>Tue, 23 May 2017 13:26:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2240579#post2240579</guid>
        </item>
              </channel>
    </rss>
  