<?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?%3Bpage=3&amp;amp%3Bk=user%3Afelixr</link>
        <description></description>
        <pubDate>Thu, 02 Jul 2026 01:00:44 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?%3Bpage=3&amp;amp%3Bk=user%3Afelixr&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Error: Data isn&apos;t compatible with new type</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248446#post2248446</link>
          <description><![CDATA[<p>Hi Kenny,</p>
<p>The issue is that a checkbox column doesn't support the same data types as a text box. A text box stores NULL by default (or an empty string once you've saved content), but a checkbox only supports 1 or 0, never NULL. It's the same even if the text box had real content in it, since MySQL can't map arbitrary text to a number.</p>
<p>If the field is empty, the easiest fix is to just erase it and create the checkbox fresh. Or you can convert the existing values to 0 first:</p>
<pre class="language-php"><code>UPDATE `your_table` SET `my_field` = 0 WHERE `my_field` IS NULL OR `my_field` = '';</code></pre>
<p>Once the data in the column matches what a checkbox supports (in MySQL: tinyint unsigned NOT NULL), it should let you switch the type with no problem.</p>
<p>Hope that helps!&nbsp; Let me know any questions.</p>]]></description>
          <pubDate>Mon, 29 Jun 2026 13:21:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248446#post2248446</guid>
        </item>
                <item>
          <title>Error: Data isn&apos;t compatible with new type</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248445#post2248445</link>
          <description><![CDATA[<p>Hit this on the latest version. Created a field as a <strong>Text Box</strong> by mistake, then went to switch its type to <strong>Checkbox</strong> in the field editor. The save fails with a MySQL type-compatibility error.</p>
<p><strong>Steps to reproduce</strong></p>
<ol>
<li>In a section editor, add a new field and set the type to <strong>Text Box</strong>.</li>
<li>Save. (The column gets created across every existing record in the table.)</li>
<li>Edit that same field and change the type to <strong>Checkbox</strong>.</li>
<li>Save → error.</li>
</ol>
<p><strong>Error returned</strong></p>
<pre><code>Error: Data in `my_field` isn't compatible with new type:
tinyint unsigned NOT NULL DEFAULT 0

Please modify your data or column type and try again.

Query: ALTER TABLE `cms_example` CHANGE COLUMN `my_field` `my_field`
       tinyint unsigned NOT NULL DEFAULT 0
in [path]/cmsb/lib/Fields/BaseField.php:510  [Admin View]
</code></pre>
<p><strong>Backtrace (CMS paths only)</strong></p>
<pre><code>#0 Script started        cmsb/admin.php:0
#1 require()             cmsb/admin.php:82
#2 include()             cmsb/lib/menus/default/actionHandler.php:65
#3 require()             cmsb/lib/menus/database/actionHandler.php:72
#4 require()             cmsb/lib/menus/database/editField.php:8
#5 submitFormViaAjax()   cmsb/lib/menus/database/editField_functions.php:179
...
</code></pre>
]]></description>
          <pubDate>Mon, 29 Jun 2026 11:58:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248445#post2248445</guid>
        </item>
                <item>
          <title>Opcache Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248444#post2248444</link>
          <description><![CDATA[<p>Hi mark99,&nbsp;</p>
<p>Okay, great.&nbsp; Glad it's working and thanks for the update!</p>]]></description>
          <pubDate>Mon, 29 Jun 2026 09:51:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248444#post2248444</guid>
        </item>
                <item>
          <title>Opcache Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248443#post2248443</link>
          <description><![CDATA[<p>Ok I figured it out. It's because Opcache is now enabled by default from PHP 8.5 onwards, so if you have a php.ini with this line:</p>
<p>zend_extension=opcache.so;</p>
<p>Then it causes a bit of a conflict and needs to be commented out or removed:</p>
<p>;zend_extension=opcache.so;</p>]]></description>
          <pubDate>Mon, 29 Jun 2026 07:29:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248443#post2248443</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248442#post2248442</link>
          <description><![CDATA[<p>Hi Rob,&nbsp;</p>
<p>I found a quick fix for this.</p>
<p>In cmsb/api/mcp.php search for "// Dispatch" and replace it with the following:</p>
<pre class="language-php"><code>// Block all methods (no tool list, no dispatch) while the MCP server is disabled
mcpProtocolErrorIf(!isStillEnabled(), MCP_ERR_SERVER_DISABLED, 'MCP server is disabled. Enable it at Admin → Advanced → MCP Server');

// Dispatch</code></pre>
<p>That will prevent the MCP server from showing anything if it's not enabled.</p>
<p>Can you give that a try and let me know if that works for you?</p>
<p>Thanks!</p>]]></description>
          <pubDate>Sun, 28 Jun 2026 23:10:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248442#post2248442</guid>
        </item>
                <item>
          <title>Opcache Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248441#post2248441</link>
          <description><![CDATA[<p>Hi Mark,</p>
<p>That is curious. I've attached a test script that shows whether OPcache is running and the key settings it's using (which php.ini is loaded, where PHP looks for the extension, and so on).</p>
<p>Can you run it from a location where OPcache is already working, and again from your cmsb folder, and let me know how the two differ?</p>
<p>It's also worth dropping it into a parallel directory (e.g.,/opcache_test/) to see if something in the CMSB .htaccess or config files is affecting it.</p>
<p>Let me know what you find. Thanks!</p>]]></description>
          <pubDate>Sun, 28 Jun 2026 21:48:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248441#post2248441</guid>
        </item>
                <item>
          <title>Database schema sync called on frontend</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248440#post2248440</link>
          <description><![CDATA[<p>Hiht1080z,</p>
<p>That notice just means the plugin is checking if it needs to create your accounts table on every page load. Newer CMSB versions save schema files as .schema.php, but your plugin is still looking for the old .ini.php files. It never finds them, so it assumes the table still needs creating and runs the full schema sync (and logs that notice) on every page view.</p>
<p>It's harmless, though, your table is fine, and logins work. It's just extra work each load, and your pages will load faster if you fix it. So a few options:</p>
<ul>
<li>Leave it. If the log noise doesn't bother you, ignore it. Nothing's broken.</li>
<li>Quick fix. Your accounts table already exists, so you can just comment out the createMissingSchemaTablesAndFields(); call on line 360 of your custom plugin.&nbsp;</li>
<li>Proper fix. Download the latest Website Membership, diff it against your custom file, and merge in the schema-file check, making sure it looks for .schema.php. The sync then skips on its own once the table's set up.</li>
</ul>
<p>Hope that helps, let me know any questions.</p>]]></description>
          <pubDate>Sun, 28 Jun 2026 21:25:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248440#post2248440</guid>
        </item>
                <item>
          <title>Opcache Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248439#post2248439</link>
          <description><![CDATA[<p>When I try to add my usual file system based opcache to the main CMSB (3.84) php.ini file, which looks like this (file path changed for security below):</p>
<p>zend_extension=opcache.so;<br />opcache.enable=1;<br />opcache.memory_consumption=32;<br />opcache.interned_strings_buffer=8;<br />opcache.max_accelerated_files=3000;<br />opcache.revalidate_freq=180;<br />opcache.fast_shutdown=0;<br />opcache.enable_cli=0;<br />opcache.revalidate_path=0;<br />opcache.validate_timestamps=1;<br />opcache.max_file_size=0;<br />opcache.file_cache=/blah/wwwroot/.opmeow;<br />opcache.file_cache_only=1;</p>
<p>When I then load admin &gt; General Settings I get a pop-up that says:</p>
<p>"updatePhpMysqlDateTime: [object Object]"</p>
<p>The only option is to click 'Ok'</p>
<p>I then see various errors like these within the same admin page:</p>
<p>Warning: Failed loading Zend extension 'opcache.so' (tried: /usr/lib/php8.5/extensions/opcache.so (/usr/lib/php8.5/extensions/opcache.so: cannot open shared object file: No such file or directory), /usr/lib/php8.5/extensions/opcache.so.so (/usr/lib/php8.5/extensions/opcache.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0</p>
<p>/MYFOLDER/system/uploads/<br />Warning: Failed loading Zend extension 'opcache.so' (tried: /usr/lib/php8.5/extensions/opcache.so (/usr/lib/php8.5/extensions/opcache.so: cannot open shared object file: No such file or directory), /usr/lib/php8.5/extensions/opcache.so.so (/usr/lib/php8.5/extensions/opcache.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0</p>
<p>The php.ini code works in every other PHP based system on the server, so what is going wrong here? I can turn these two 'Off' and the problem goes away, but obviously this isn't a fix:</p>
<p>display_startup_errors = On<br />display_errors = On</p>]]></description>
          <pubDate>Fri, 26 Jun 2026 08:57:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248439#post2248439</guid>
        </item>
                <item>
          <title>Database schema sync called on frontend</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248438#post2248438</link>
          <description><![CDATA[<p>Hi,</p>
<p>I getting a lot of messages in the error log:</p>
<p><span style="color:#000000;text-align:left;">#134387 - Notice: Database schema sync called on frontend. This performance-heavy operation should only occur during plugin installation/upgrades. Update plugins if happening frequently.</span><br style="color:#000000;text-align:left;" /><span style="color:#000000;text-align:left;">/docker_data/services-staging/www/cmsAdmin/plugins/websiteMembershipCUSTOM/websiteMembership_CUSTOM.php on line 360<br />&gt; in line 360 is the createMissingSchemaTablesAndFields();</span></p>
<p><span style="color:#000000;text-align:left;">using the <span style="color:#000000;">v3.78 (Build 2904) with a customized Website Membership that we created for a project.</span></span></p>
<p><span style="color:#000000;text-align:left;"><span style="color:#000000;">is there anything that i can do in order to stop this generating?</span></span></p>]]></description>
          <pubDate>Thu, 25 Jun 2026 22:30:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248438#post2248438</guid>
        </item>
                <item>
          <title>Changing manually created permalink to old does not redirect</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248437#post2248437</link>
          <description><![CDATA[<p>Hi Hiroko,<br /><br /></p>
<blockquote>
<p>I checked on the checkbox "Old" to redirect in case someone accesses to /services-headspa/, but it seems to redirect to a different page, which is /shibuya/ ( original url is /salonsDetail.php?salon=16)</p>
</blockquote>
<p><br />The permalinks plugin uses the internal "Tablename" and "Record Num" fields to group permalinks together so it can figure out the correct permalink to replace any that get marked "Old".</p>
<p>Those two fields are usually empty when permalinks are manually created, only being given values for automatically generated permalinks instead.</p>
<p>Since those two fields are empty across across each of your permalinks, the plugin treats your permalinks as if they're all in one big group, ignoring any in the group marked "Old", and using whichever happens to be the first one it sees. In your case, the first non-old permalink in the group is /shibuya/.<br /><br /></p>
<blockquote>
<p>How can I make my redirect change work for /services-headspa/ to /head-spa-shibuya/ which both are originally /mainPages.php?9 ?</p>
</blockquote>
<p><br />The plugin needs to know that the old permalink (/services-headspa/) and the new permalink (/head-spa-shibuya/) are in a group together, paired-up, with one replacing the other, and unrelated to any outside the group (such as /shibuya/).</p>
<p>You can group the pair together by going to <em>Plugins &gt; Permalinks &gt; Permalinks DB</em>, and editing both the <em>/services-headspa/</em> and <em>/head-spa-shibuya/</em> permalinks to have the exact same identical value in the "Tablename" field for each (any short label is fine, e.g. "<em>headspa</em>").</p>
<p>You can leave the "Record Num" field set to <em>0</em> for both. The "Tablename" field is enough to group them together. That tells the plugin that any permalinks in that group marked "Old" (<em>/services-headspa/</em>) should redirect to the new replacement permalink instead (<em>/head-spa-shibuya/</em>).<br /><br /></p>
<p>If you ever want to add another redirect to replace /head-spa-shibuya/ in the future, you can group together as many permalinks as you like using that same "Tablename" field, as long as all but one of the permalinks in that group are marked "Old", so the plugin knows which one is the correct replacement to redirect to.</p>
<p>Hope that all helps, let me know if you have any other questions!<br /><br /></p>]]></description>
          <pubDate>Wed, 24 Jun 2026 12:10:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248437#post2248437</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248436#post2248436</link>
          <description><![CDATA[<p>Hey Dave,</p>
<p>Yeah, I think something as simple as:</p>
<blockquote>
<p>Maybe the first time you open the MCP menu, we could have an option where you click to enable it, and until then, it returns nothing in the tools list.</p>
</blockquote>
<p>would do the trick.</p>
<p>Cheers</p>
<p>Rob</p>
]]></description>
          <pubDate>Tue, 23 Jun 2026 20:30:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248436#post2248436</guid>
        </item>
                <item>
          <title>.ini files vs. ,schema</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248435#post2248435</link>
          <description><![CDATA[<p>Hi pgplast,&nbsp;</p>
<p>Yes, the CMS will automatically upgrade any .ini.php files it discovers.&nbsp; Even when adding plugins or ini files after the fact.&nbsp;&nbsp;</p>
<p>But if any of your plugins aren't working correctly, just download the latest version from the website.</p>
<p>Hope that helps!</p>]]></description>
          <pubDate>Tue, 23 Jun 2026 19:56:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248435#post2248435</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248434#post2248434</link>
          <description><![CDATA[<p>Hi Rob,</p>
<p>So, with fingerprinting, any static response or file (CSS, JS, images, etc.) can be used. You just need to checksum a known response from some files from a given version of any software. There are actually some neat sites that do that (search "What CMS is this site running").</p>
<p>So the best solution for that is just to rename your /cmsb/ folder to something less guessable so no one can find it.</p>
<p>And/or, if you don't need the /api/ folder or /api/mcp.php, you should be able to safely just delete them.</p>
<p>But we want the UX to feel good end-to-end, so if seeing a big list of powerful tools, disabled or not, gives anyone pause, we could look into adding a one-time setting to enable it.&nbsp; We have a few questions about it already.</p>
<p>Maybe the first time you open the MCP menu, we could have an option where you click to enable it, and until then, it returns nothing in the tools list.</p>
<p>Let me know if that would work for you. Thanks!</p>]]></description>
          <pubDate>Tue, 23 Jun 2026 19:54:05 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248434#post2248434</guid>
        </item>
                <item>
          <title>Changing manually created permalink to old does not redirect</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248433#post2248433</link>
          <description><![CDATA[<p>Hi,</p>
<p>My client wants to change the permalink from</p>
<p>/services-headspa/ (original url is /mainPages.php?9)</p>
<p>to</p>
<p>/<span>head-spa-shibuya/ (same url)</span></p>
<p><span>I checked on the checkbox "Old" to redirect in case someone accesses to </span><span>/services-headspa/,&nbsp;</span><span>but it seems to redirect to a different page, which is /shibuya/ ( original url is /salonsDetail.php?salon=16)</span></p>
<p><span>These permalinks are all created manually.</span></p>
<p><span>How can I make my redirect change work for /services-headspa/&nbsp; to /head-spa-shibuya/&nbsp; which both are originally&nbsp; /mainPages.php?9&nbsp; ?</span></p>
<p><span>Thank you for your help.</span></p>
<p><span>Hiroko</span></p>]]></description>
          <pubDate>Mon, 22 Jun 2026 09:26:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248433#post2248433</guid>
        </item>
                <item>
          <title>.ini files vs. ,schema</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248432#post2248432</link>
          <description><![CDATA[<p>I noticed that the new schema files in the latest version of CMSB are of type XXX.schema.php.</p>
<p>In updating a site with many XXX.ini.php files, will these .ini.php files still correctly provide the structure for site tables?</p>]]></description>
          <pubDate>Sun, 21 Jun 2026 08:41:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248432#post2248432</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248431#post2248431</link>
          <description><![CDATA[<p>Thanks Dave, that makes sense.</p>
<p>One lingering thought is less that the list is secret, and more that at an individual site level it fingerprints the install / CMS / MCP surface. I understand public Swagger on a vendor API, but this feels slightly different because it's exposing the capabilities of a specific install rather than the product documentation itself.</p>
<p>So while it's not leaking secrets, it is revealing what technology is sitting behind that particular endpoint and what capabilities exist if authenticated. It doesn't give someone access, but it does tell them what system to go and research.</p>
<p>The Claude restart explanation makes sense, and I can see why you'd want the tool list available for active development. For sites that never need Claude connected (or production environments), would there be any merit in an option to return a generic disabled/auth response to tools/list until a valid key is provided?</p>
<p>We can block it at the edge easily enough by having a CMS-level option would be handy for those of us who'll inevitably roll out an upgrade and forget!</p>
<p>Cheers</p>]]></description>
          <pubDate>Fri, 19 Jun 2026 09:33:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248431#post2248431</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248430#post2248430</link>
          <description><![CDATA[<p>Hi runriot,</p>
<p>Thanks for the report, and good eye. This one's intentional, not a leak.</p>
<p>The tool list is static. It's the same hardcoded list on every install, and it already ships in the source you can download, so tools/list isn't handing out anything you couldn't read straight from our freely downloadable code. The only things we hold back until you authenticate are install-specific hints, like the server's working directory, OS, and shell, since those would fingerprint the actual box. Nothing in the public list is install-specific or secret.</p>
<p>The real security boundary is on running tools, not listing them. That's exactly what you ran into: the list comes back, but the second you try to call a tool, you get "MCP is disabled." Disabled means disabled, nothing executes, and that holds whether MCP is switched off or the auth is missing or wrong.</p>
<p>The other reason we always return the list is so you don't have to restart Claude every time you toggle MCP. Claude grabs the tool list once when it connects and caches it. If we only sent the list while MCP was enabled, every on/off would mean restarting Claude to pick the tools back up. Keeping the static list always on means you can flip MCP on and off, and it just works, since the tools are already known and only execution changes.</p>
<p>So the short version: the listing is public by design; execution is locked down.<br /><br />This is also a common pattern for APIs built to be called by an external client. Plenty of public APIs serve their full OpenAPI/Swagger spec, every endpoint and parameter, to anyone, and gate only the actual calls behind a key.&nbsp;</p>
<p>Hope that helps, let me know if you have any other questions or concerns!</p>]]></description>
          <pubDate>Fri, 19 Jun 2026 08:37:58 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248430#post2248430</guid>
        </item>
                <item>
          <title>MCP tools/list available when MCP is disabled?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248429#post2248429</link>
          <description><![CDATA[<p>Hey</p>
<p>I've been playing the new MCP feature and admittedly I know very little about MCP, so this may be completely normal...</p>
<p>I noticed that even with MCP disabled, the endpoint still responds to a `tools/list` request and returns the full list of available tools. Same when using no/incorrect auth.</p>
<p>For example, with MCP disabled (or no auth) I can still see things like:</p>
<ul>
<li>serverShell</li>
<li>serverPhp</li>
<li>queryWriteserverRead</li>
<li>upload tools</li>
</ul>
<p>Attempting to actually run a tool correctly returns an error saying MCP is disabled, so it doesn't look like anything can be executed.</p>
<p>My question is simply whether exposing the tool list when MCP is disabled is intentional?</p>
<p>I'm guessing there's probably a good reason for it, and you guys know the MCP spec far better than I do, but it feels a little odd that a disabled feature still advertises everything it can do.</p>
<p>Just curious whether that's expected behaviour or something worth tightening up.</p>
<p>Cheers</p>
<p>Rob</p>]]></description>
          <pubDate>Thu, 18 Jun 2026 20:23:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248429#post2248429</guid>
        </item>
                <item>
          <title>Exclude specific records from a list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248428#post2248428</link>
          <description><![CDATA[<p>Yep that worked, thanks Dave :)</p>]]></description>
          <pubDate>Tue, 26 May 2026 09:10:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248428#post2248428</guid>
        </item>
                <item>
          <title>Exclude specific records from a list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248427#post2248427</link>
          <description><![CDATA[<p>Hi Mark,&nbsp;</p>
<p>Try this:</p>
<pre class="language-php"><code>    'where'       =&gt; " category LIKE '%Telecoms%' AND num NOT IN (421,83,122)",</code></pre>
<p>Just replace the numbers with the ones you want to exclude.</p>
<p>Let me know if that works for you.</p>]]></description>
          <pubDate>Tue, 26 May 2026 08:54:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248427#post2248427</guid>
        </item>
                <item>
          <title>Exclude specific records from a list</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248426#post2248426</link>
          <description><![CDATA[<p>So I'm currently putting some products via a list call like this:</p>
<pre class="language-markup"><code>  // load records from 'isp_list'
  list($isp_listRecords, $isp_listMetaData) = getRecords(array(
    'tableName'   =&gt; 'isp_list',
    'limit'       =&gt; '5',
    'loadCreatedBy' =&gt; false,
    'where'       =&gt; " category LIKE '%Telecoms%' ",
    'allowSearch' =&gt; false,
    'orderBy'       =&gt; $orderByxxxxx,
  ));</code></pre>
<p>But I'd like to specifically exclude a couple of products - using their Record Numbers (field 'num') - from being included in the list output. I'm just wondering how I do that?</p>]]></description>
          <pubDate>Tue, 26 May 2026 08:48:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248426#post2248426</guid>
        </item>
                <item>
          <title>CMSB v3.84 Released (Show/Hide Fields &amp; MCP Server)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248425#post2248425</link>
          <description><![CDATA[<p>UPDATE: If you got an error while upgrading, we've released v3.84 with a fix:<br /><a href="https://www.interactivetools.com/download/" rel="nofollow">https://www.interactivetools.com/download/</a></p>
<p>Here's the full changelog:&nbsp;</p>
<blockquote>
<pre>*** May 8, 2026 - Version 3.84 (Maintenance Release)<br /><br />SERVER REQUIREMENTS (Since Jun 2025): PHP 8.1+ and MySQL 5.7+ (or MariaDB 10.2+)<br /><br />BUG FIXES<br />    - Upgrade: Fixed an "Unknown column" error that could stop the upgrade partway through on older installs<br />        - Was caused by audit/error logging trying to write to columns the upgrade hadn't added yet<br />        - When the audit or error log can't write to its table, the failure and original message now go to data/_php_error.log instead<br />    - Developer Log: Displayed HTTP method now reads correctly from older error log entries logged in older format (was falling back to "CLI" before)</pre>
</blockquote>
<p>This is only needed if you got an error while upgrading or are upgrading from a much older version. If you already upgraded without issue, no action is required.</p>
<p>Let me know any questions. Thanks!</p>]]></description>
          <pubDate>Fri, 08 May 2026 20:15:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248425#post2248425</guid>
        </item>
                <item>
          <title>CMSB v3.83 Beta (Show/Hide Fields &amp; MCP Server)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248424#post2248424</link>
          <description><![CDATA[<p>Hi All,&nbsp;</p>
<p>Thanks everyone for your feedback, posts, and emails.&nbsp; We've released v3.83 here:&nbsp;</p>
<p><a href="https://interactivetools.com/forum/forum-posts.php?CMSB-v3.83-Released-Show-Hide-Fields-MCP-Server-83137" rel="nofollow">https://interactivetools.com/forum/forum-posts.php?CMSB-v3.83-Released-Show-Hide-Fields-MCP-Server-83137</a></p>
<p>Thank you!</p>]]></description>
          <pubDate>Fri, 08 May 2026 13:51:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248424#post2248424</guid>
        </item>
                <item>
          <title>CMSB v3.84 Released (Show/Hide Fields &amp; MCP Server)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248423#post2248423</link>
          <description><![CDATA[<p class="whitespace-pre-wrap break-words">Hi everyone,</p>
<p class="whitespace-pre-wrap break-words">We've just released v3.83 (our biggest single release to date!), and we're already running it on our site.</p>
<p class="whitespace-pre-wrap break-words">Here are some highlights from this release:&nbsp;</p>
<ul>
<li class="whitespace-pre-wrap break-words">Field Editor
<ul>
<li class="whitespace-pre-wrap break-words">Show If: New option allows you to dynamically show/hide fields based on the values of other fields</li>
<li class="whitespace-pre-wrap break-words">Show for: Replaces old "Admin only" setting with options for everyone, editor, admin only, or new: Nobody (completely hidden)</li>
<li class="whitespace-pre-wrap break-words">Placeholder: New option for text and textbox fields to set hint text inside the field when empty</li>
<li class="whitespace-pre-wrap break-words">Field List UI: Lock and eye icons now mark restricted and conditional fields in your field list</li>
<li class="whitespace-pre-wrap break-words">Reorganized and simplified the field editor UI</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">Admin → Advanced → MCP Server
<ul>
<li>AI coding assistants like Claude Code can now read and update your CMS directly</li>
<li>Read and write records, upload files, run queries, and view your database schema</li>
<li>Built-in /fix-cms command: AI reviews your recent PHP errors and offers fixes</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">Admin → Backup &amp; Restore → Website → Restore from Zip
<ul>
<li>Added restore button to restore from previous website backup zips (for uploading a local or dev site)</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">Fields → List →&nbsp;<span>pillbox (multi value)</span>
<ul>
<li>Selected values can now be drag sorted to change the order</li>
<li>Dropdown options show checkboxes to select multiple values (easier for end-users)</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">Admin → Advanced
<ul>
<li>Admin Favicon: Pick a colored favicon (green/yellow/red) to tell CMS installs apart in your browser tabs (e.g. dev, staging, live)</li>
<li>Server Links: Add dev, staging, and live server URLs for quick-switching between environments</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">Developer Console
<ul>
<li>Automatically decrypts and displays contents from encrypted fields</li>
</ul>
</li>
<li class="whitespace-pre-wrap break-words">General code modernization and cleanup</li>
</ul>
<p>Note: We still have a queue of pending user feature requests.&nbsp; We're releasing what we have now so you can start using it.&nbsp; Feel free to remind us what you'd like to see next.&nbsp;</p>
<p>The full changelog for this release is as follows:</p>
<blockquote>
<pre>*** May 8, 2026 - Version 3.83 (Show/Hide Fields &amp; MCP Server)<br /><br />SERVER REQUIREMENTS (Since Jun 2025): PHP 8.1+ and MySQL 5.7+ (or MariaDB 10.2+)<br /><br />FIELD EDITOR<br />    - Show/Hide Fields: Fields now show/hide automatically based on what users select<br />        - Example: Show "Speaker Name" only when Event Type is "Webinar"<br />        - Example: Show "Shipping Address" only when Delivery Method is "Mail"<br />        - Works with all field types: text, checkboxes, tabs, upload fields, related records<br />        - Custom expressions allow for multi-field AND rules (e.g. type=article AND status!=draft|hidden)<br />        - Configure in: Database &gt; Edit Field &gt; Visibility &gt; Show If<br />    - Field Access: "Admin Only" replaced with clearer "Show for" dropdown<br />        - Options: Everyone, Editor and above, Admin only, or new: Nobody (completely hidden)<br />        - ***Behavior change***: List view now hides restricted fields as well (previously didn't)<br />    - Placeholder: New option for text and textbox fields to set hint text inside the field when empty<br />    - Lock and eye icons now mark restricted and conditional fields in your field list<br />    - Simplified field editor interface with cleaner organization<br />    - Textbox Fields: "Auto Format" renamed to "Line Breaks" (nl2br) and deprecated.<br />         - Off by default for new fields; existing fields can be turned off, but not re-enabled<br /><br />MCP SERVER<br />    - AI coding assistants like Claude Code can now read and update your CMS directly<br />    - Read and write records, upload files, run queries, and view your database schema<br />    - Configure in: Admin &gt; Advanced &gt; MCP Server (IP allowlist, API keys, permissions)<br />    - Built-in /fix-cms command: AI reviews your recent PHP errors and offers fixes<br />    - Security: IP allowlist required, Bearer token auth, read-only enforced at MySQL session level<br />    - Write operations logged to the audit log<br /><br />ADMIN &gt; BACKUP &amp; RESTORE<br />    - Website: Added restore button to restore from previous website backup zips<br />    - Website: Previous Backups dropdown now shows relative dates (e.g., "5 min ago", "yesterday")<br />    - Website: Removed "Only include code files" option (use .cms-no-backup marker files to exclude folders instead)<br />    - Database: Backup dropdown now offers option to include log tables in backup ("include skipped")<br /><br />PILLBOX &amp; FOREIGN KEY FIELDS<br />    - Replaced form dropdown component Select2 with Tom Select<br />    - Pillbox: drag pills to reorder selected values<br />    - Pillbox: dropdown options show checkboxes so you can see all options and their selection state at a glance<br />    - Type-ahead search to filter options instantly<br /><br />ADMIN &gt; ADVANCED (New Page)<br />    - Reorganized admin settings into "Admin Interface" and "Advanced Settings" sections<br />    - Admin Favicon: Pick a colored favicon (green/yellow/red) to tell CMS installs apart in your browser tabs<br />    - Server Links: Add dev, staging, and live server URLs for quick-switching between environments<br />    - Admin Shortcuts, Debug Footer, and WYSIWYG/Menu/Cookie settings moved here from General Settings<br /><br />MINOR CHANGES<br />    - Email Settings: Developer Email now accepts multiple comma-separated addresses<br />    - File Uploads: Files are saved with dashes instead of underscores for better SEO, and .jpeg is normalized to .jpg<br />    - Audit Log: Expanded logging coverage for fields, tables, uploads, backups, and database operations<br />    - Security: Added additional .htaccess hardening for data directories (Apache 2.4+ compatibility)<br />    - PHP 8.5: Silenced deprecation warning by disabling unneeded register_argc_argv directive in shipped php.ini, .htaccess, and .user.ini<br />    - Improved text contrast for input fields, selects, and placeholders<br />    - Admin menus updated and reorganized for better usability<br />    - Upgraded Dependencies: PHPMailer v6 to v7, Firebase/JWT v6 to v7, and other library updates<br /><br />BUG FIXES<br />    - SmartArray: Fixed TypeError when calling load() on SmartArrayHtml (changed type hint to SmartArrayBase)<br />    - Language: Fixed "No such file or directory" error when developer mode was enabled without a language selected<br />    - Upload Fields: Fixed "Create Thumbnail" checkbox re-enabling itself after saving when unchecked<br />    - Edit Page: Fixed false "unsaved changes" warning appearing after clicking in fields without editing them<br />    - Misc code and other minor improvements<br /><br />**FOR PROGRAMMERS**<br />    - Modern PHP features enabled:<br />        - Native types: Database queries now return native PHP types (int/float) instead of strings<br />        - mysqli::execute_query() for one-line parameterized queries (available natively in PHP 8.2+, backported for PHP 8.1):<br />            $rows = DB::$mysqli-&gt;execute_query("SELECT * FROM users WHERE id = ?", [$id])-&gt;fetch_all(MYSQLI_ASSOC);<br />            DB::$mysqli-&gt;execute_query("UPDATE users SET name = ? WHERE id = ?", [$name, $id]);<br />    - Database Encryption: Key now cached as MySQL session variable @ek<br />        - Faster: Computed once per-connection, not per-query<br />        - Simpler: AES_ENCRYPT(val, @ek) instead of AES_ENCRYPT(val, UNHEX(SHA2('key',512)))<br />        - Cleaner: Key hidden from SHOW PROCESSLIST and error messages<br />        - On-demand: Only initialized when encrypted fields are used<br />    - MySQL Console: Record edit page database icon now opens console with that record in column mode<br />    - MySQL Console: New {{column}} shortcut auto-expands to AES_DECRYPT(`column`, @ek) for encrypted columns<br />    - Moved /api.php to /api/ to better organize future API endpoints<br /><br />**FOR PROGRAMMERS (BREAKING CHANGES)**<br />    - Note: These changes only impact developers who have written custom PHP code<br />    - Database queries now return native PHP types (int/float) instead of strings<br />        - If your code expects strings, cast them: (string)$row['id']<br />    - MySQL queries now throw exceptions instead of returning false (following PHP 8.1+ standard behavior).<br />        - Before: $result = mysqli()-&gt;query($sql) or die("MySQL Error: " . mysqli()-&gt;error);<br />        - After:  try { $result = mysqli()-&gt;query($sql); } catch (mysqli_sql_exception $e) { die("MySQL Error: " . $e-&gt;getMessage()); }<br />    - Library Updates: ZenDB has been moved to composer with several renamed and deprecated methods<br />        - DB::get() renamed to DB::selectOne() (DB::get() still works but is deprecated)<br />        - See ZenDB docs for full list of changes: <a href="https://github.com/interactivetools-com/ZenDB/" rel="nofollow">https://github.com/interactivetools-com/ZenDB/</a></pre>
</blockquote>
<p>You can download the latest version here: <a href="https://www.interactivetools.com/download/" rel="nofollow">https://www.interactivetools.com/download/</a></p>
<p>Please feel free to ask any questions or post any feedback or comments.</p>
<p>Thank you!</p>]]></description>
          <pubDate>Fri, 08 May 2026 13:50:31 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248423#post2248423</guid>
        </item>
                <item>
          <title>CMSB v3.83 Beta (Show/Hide Fields &amp; MCP Server)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248422#post2248422</link>
          <description><![CDATA[<p>Hi everyone,</p>
<p>We've just posted Beta 2 (build 3126). Thanks to everyone who's been posting and sending in feedback and bug reports on Beta 1.</p>
<p>Here's what's new:</p>
<p><strong>MCP Server</strong></p>
<ul>
<li><strong>New auto-disable timer </strong>-The MCP Server can now be enabled with an auto-disable timer (15 min / 1 hour / 8 hours). The server turns itself off automatically when the timer expires, so you can safely turn it on for a coding session and not have to remember to switch it off afterward. Configure in: Admin → Advanced → MCP Server.</li>
<li><span><strong>Execute Access </strong>- This allows AI to read the server filesystem, run shell commands, and execute PHP.&nbsp; This is incredibly powerful for quickly diagnosing server issues, but be sure to backup first, manually approve everything but read-only commands, and actively monitor AI agents using it.</span></li>
</ul>
<p><strong>Show/Hide Fields Polish</strong></p>
<ul>
<li><strong>Custom Expressions:</strong> OR rules now supported, e.g.: type=article|review AND published=1 OR alwaysShow=1 (mouse over the custom expression field for a pop-up with instructions)</li>
</ul>
<p><strong>Plus lots of bug fixes and minor improvements.</strong></p>
<p>You can download the latest beta <a>here:https://www.interactivetools.com/download/</a></p>
<p>Send over any other issues you find. We're aiming to release this in the next few days if no further issues are reported.</p>
<p>Thanks!</p>]]></description>
          <pubDate>Tue, 05 May 2026 22:59:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248422#post2248422</guid>
        </item>
              </channel>
    </rss>
  