<?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?%3Bamp%3Bpage=2&amp;%3Bk=user%3AseGAP</link>
        <description></description>
        <pubDate>Mon, 06 Apr 2026 18:35:37 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?%3Bamp%3Bpage=2&amp;%3Bk=user%3AseGAP&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>llms.txt file (for AI)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248388#post2248388</link>
          <description><![CDATA[<p>Hi Codee,</p>
<p>The above is just a snippet that helps set up a PHP file that will load when "llms.txt" is accessed. On its own it does not generate any of the content, but it's a good first step in being able to do so.</p>]]></description>
          <pubDate>Wed, 25 Mar 2026 11:11:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248388#post2248388</guid>
        </item>
                <item>
          <title>llms.txt file (for AI)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248387#post2248387</link>
          <description><![CDATA[<p>Are you saying this little bit of code will generate all the llms.txt content for a site run by cmsb?&nbsp; I am hoping there is a method for doing so. I figured a plugin might be needed.</p>]]></description>
          <pubDate>Sat, 21 Mar 2026 19:30:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248387#post2248387</guid>
        </item>
                <item>
          <title>Small BUG for 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248386#post2248386</link>
          <description><![CDATA[<p>Hi Kenny,</p>
<p>Thanks for reporting this bug!</p>
<p>I've created a fix that will be included in the next version of CMSB.</p>
<p>For you or anyone else who is currently having this issue, here's a patch that should fix it.</p>
<p>In the file: <strong>cmsb/lib/schema_functions.php</strong> around line 288</p>
<p>Find this code:</p>
<pre class="language-php"><code>if (empty($schema[$name]["createThumbnails$suffix"])) {
      unset($schema[$name]["createThumbnails$suffix"]);
      unset($schema[$name]["maxThumbnailHeight$suffix"]);
      unset($schema[$name]["maxThumbnailWidth$suffix"]);
      unset($schema[$name]["cropThumbnails$suffix"]);
  }</code></pre>
<p>And replace it with this:</p>
<pre class="language-php"><code> $thumbnailDisabled =
  empty($schema[$name]["createThumbnails$suffix"]);
  if ($thumbnailDisabled) {
      unset($schema[$name]["maxThumbnailHeight$suffix"]);
      unset($schema[$name]["maxThumbnailWidth$suffix"]);
      unset($schema[$name]["cropThumbnails$suffix"]);
      if ($suffix !== '') {
          unset($schema[$name]["createThumbnails$suffix"]);
      }
  }</code></pre>
<p>Let me know if you have any futher issues.</p>
<p>Thanks!</p>]]></description>
          <pubDate>Wed, 18 Mar 2026 14:27:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248386#post2248386</guid>
        </item>
                <item>
          <title>Is there a way to the same detail page template for different sections?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248385#post2248385</link>
          <description><![CDATA[<p>Ok, i think i have a working solution so I am sharing in case it's helpful to someone else:</p>
<pre class="language-php"><code>&lt;?php
  header('Content-type: text/html; charset=utf-8');
  include_once("../cmsb/lib/viewer_functions.php");

  // get the URI and trim leading and trailing slashes
  $uri = trim($_SERVER['REQUEST_URI'], '/');

  // lookup the URI in the permalinks table to find the corresponding section
  $section = mysql_get('cmsb__permalinks', null, [
    'permalink' =&gt; $uri,
    'old'       =&gt; '0'
  ]);

  // get the tablename for the section
  if ($section) {
    $tableName = $section['tableName'];
	
    // and then load the page
    list($page, $pageMetaData) = getRecords(array(
      'tableName'   =&gt; $tableName,
      'where'       =&gt; whereRecordNumberInUrl(0),
      'loadUploads' =&gt; true,
      'allowSearch' =&gt; false,
      'limit'       =&gt; '1',
    ));
    $page = @$page[0]; // get first record
    if (!$page) { 
      header("HTTP/1.1 301 Moved Permanently");
      header("Location: /"); 
      exit;
    }
  }

?&gt;</code></pre>]]></description>
          <pubDate>Tue, 17 Mar 2026 11:30:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248385#post2248385</guid>
        </item>
                <item>
          <title>Is there a way to the same detail page template for different sections?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248384#post2248384</link>
          <description><![CDATA[<p>Currently, I have a set up like this:</p>
<ul>
<li>About pages &gt; /pgs/<strong>about-pages.php</strong></li>
<li>Contact pages &gt; /pgs/<strong>contact-pages.php</strong></li>
<li>Service pages &gt; /pgs/<strong>service-pages.php</strong></li>
</ul>
<p>Note, I am using the Permalinks plugin.</p>
<p>But I was wondering if there is a way for me to use the same page template for all of the sections?</p>
<ul>
<li>About pages &gt; /pgs/<strong>pages.php</strong></li>
<li>Contact pages &gt; /pgs/<strong>pages.php</strong></li>
<li>Service pages &gt; /pgs/<strong>pages.php</strong></li>
</ul>]]></description>
          <pubDate>Tue, 17 Mar 2026 10:38:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248384#post2248384</guid>
        </item>
                <item>
          <title>Small BUG for 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248383#post2248383</link>
          <description><![CDATA[<p>In Database Editor &gt;&gt; *schema* &gt;&gt; <span>Input Validation &gt;&gt; Upload Settings</span>, when unchecking a "<span>Create thumbnail" and it's related "Crop" checkbox, they revert back to being checked on save.&nbsp;</span></p>]]></description>
          <pubDate>Sat, 14 Mar 2026 11:33:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248383#post2248383</guid>
        </item>
                <item>
          <title>Upload Field - Custom List Option</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248382#post2248382</link>
          <description><![CDATA[<p>Hi Ryan,&nbsp;</p>
<p>Unfortunately, there's no built-in functionality for that, or quick fixes.</p>
<p>Can you let me know what you want to use it for and how you'd want it to work?&nbsp;</p>
<p>For example, what problem are you trying to solve?</p>
<p>Thanks!</p>]]></description>
          <pubDate>Wed, 11 Mar 2026 21:05:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248382#post2248382</guid>
        </item>
                <item>
          <title>editor feature request</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248381#post2248381</link>
          <description><![CDATA[<p>Hi Jeff,&nbsp;</p>
<p>We're currently working on a big update for the next release, but I can keep this in the queue for a future release.</p>
<p>We actually wanted to redo the date component already for better multi-lingual support.</p>
<p>The browser date fields are generally considered not to have the best user experience compared to some of the custom ones.&nbsp; &nbsp;</p>
<p>The benefit of the multi-field is that it's quick to select, but it depends on your use case, though.&nbsp; You'll see most of the big sites (airbnb, google flights, etc) use custom date controls.&nbsp; We were looking into some of the more popular date field components a while back.</p>
<p>We've already got some requests for Date field modifications already. &nbsp;Can you let me know how you'd like it to work differently so we can consider that as well?</p>
<p>Thanks!</p>
]]></description>
          <pubDate>Wed, 11 Mar 2026 21:04:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248381#post2248381</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248380#post2248380</link>
          <description><![CDATA[<p>This fix works for me, too. Thanks Dave.</p>]]></description>
          <pubDate>Tue, 10 Mar 2026 13:02:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248380#post2248380</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248379#post2248379</link>
          <description><![CDATA[<p>This worked for me. Thank you.</p>]]></description>
          <pubDate>Mon, 09 Mar 2026 03:57:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248379#post2248379</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248378#post2248378</link>
          <description><![CDATA[<p>Hi all,&nbsp;</p>
<p>This took us a bit to track down.&nbsp; Can you try this fix:&nbsp;</p>
<p>In /cmsb/lib/menus/default\wysiwygMedia.php</p>
<p>Replace this:&nbsp;</p>
<pre class="language-javascript"><code>uploadIframe.contentDocument.location.reload();</code></pre>
<p>With this:&nbsp;</p>
<pre class="language-javascript"><code>uploadIframe?.contentDocument?.location.reload();</code></pre>
<p>Let me know if that works for you.&nbsp; If not, feel free to submit a 2nd level support request, and we'd be happy to help you track it down and resolve it.</p>
<p>Thanks!</p>]]></description>
          <pubDate>Sat, 07 Mar 2026 21:36:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248378#post2248378</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248377#post2248377</link>
          <description><![CDATA[<p>Ok, I am an idiot. It seems at some point I inadvertently deleted the mediaView.php file from that directory. Now that it has been restored, it's working though still with the error message. Yay!</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 16:51:00 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248377#post2248377</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248376#post2248376</link>
          <description><![CDATA[<p>The error does not prevent the image from being added, it is annoying but not fatal. I have been adding images, just close the error message and continue.</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 15:39:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248376#post2248376</guid>
        </item>
                <item>
          <title>BUG: tinymce field can&apos;t use media library image CMSB 3.82</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248375#post2248375</link>
          <description><![CDATA[<p>Still nothing on this? this renders the media library feature somewhat useless.&nbsp;</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 15:03:16 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248375#post2248375</guid>
        </item>
                <item>
          <title>Re: Help - Simplest approach to displaying video within CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248374#post2248374</link>
          <description><![CDATA[<p>As mentioned in the previous post you referred to, an extremely cost-effective and controlled method is to utilize services such as youtube. Most of my customers build a channel (for free) and I've pre-set the html fields with the highest security and features google provides so the customer simply enters the youtube video id (into cmsb) and clicks save. Done.&nbsp; Video appears and plays on-page and bandwidth is provided by youtube.</p>
<p>However, some customers prefer a different solution than youtube so then it's a matter of sourcing 3rd party solutions (with varying levels of functionality and security, and cost).&nbsp; Your recommendation of utilizing a video-layer seems to be the next cost-effective and easier approach (for the customer). I've never utilized VPlayed but I have worked with companies that provide a video solution (like with sports coaching and refereeing) and have found it fairly stable and useful.&nbsp; It's typically a better branded look as well.</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 14:59:32 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248374#post2248374</guid>
        </item>
                <item>
          <title>Re: Help - Simplest approach to displaying video within CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248373#post2248373</link>
          <description><![CDATA[<p>In response to: <a href="https://interactivetools.com/forum/forum-posts.php?postNum=2208413#post2208413" rel="nofollow">https://interactivetools.com/forum/forum-posts.php?postNum=2208413#post2208413</a><br /><br /></p>
<p>If you’re letting clients upload videos directly through a CMS upload field, the main challenge isn’t just playback — it’s compatibility. Different browsers and devices support different formats, so relying on raw uploads can quickly create issues with playback and performance.</p>
<p>That’s why most setups introduce a Video CMS layer that automatically handles things like format conversion, encoding, and browser-friendly streaming formats (usually HLS or MP4). This way the client can upload almost any video format, and the system prepares it for smooth playback across devices.</p>
<p>In some projects I’ve worked on, teams used platforms like VPlayed as the video management layer. It processes uploaded videos, optimizes them for streaming, and then lets the CMS simply embed the player. That approach keeps the upload workflow simple for clients while avoiding browser compatibility problems.</p>]]></description>
          <pubDate>Thu, 05 Mar 2026 05:42:21 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248373#post2248373</guid>
        </item>
                <item>
          <title>Upload Field - Custom List Option</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248372#post2248372</link>
          <description><![CDATA[<p>Hi everyone,</p>
<p>Does anyone know if it’s possible to configure one of the info fields on an upload field as a list (dropdown) type?</p>
<p>Currently, the only available field types are <strong>Text Field</strong> and <strong>Text Box</strong>, but I’d like to set <strong>info2</strong> as a <strong>Category</strong> field with predefined list values (e.g., Option 1, Option 2, Option 3, etc.). See screenshot.</p>
<p>Is this supported, or is there a workaround to achieve this?<br /><br />Thanks,<br />Ryan</p>]]></description>
          <pubDate>Tue, 03 Mar 2026 12:07:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248372#post2248372</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248371#post2248371</link>
          <description><![CDATA[<p>No argument here, Dave and his crew have been great. Almost 20 years for me too. I also have lost clients to wordpress and had them come back a year later.</p>]]></description>
          <pubDate>Tue, 03 Mar 2026 11:16:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248371#post2248371</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248370#post2248370</link>
          <description><![CDATA[<p>I'll second that CMSB has helped pay my mortgage over the years, the cmsb team are second to none, and this software is absolutely superb. I lost a big client who moved from me to a company specialising on a wrodpress (your logo here) generic solution. They were not happy with the site or the wordpress complicated hassle of a content management system. They came back, and were once again happy with the cms and my front end bespoke design. It's such a delight to use cmsb and you can build practically anything with it, its fast and robust. Thanks Dave and the guys, it's been 20 years since I discovered you I think. Long may it continue!</p>]]></description>
          <pubDate>Tue, 03 Mar 2026 11:10:26 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248370#post2248370</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248369#post2248369</link>
          <description><![CDATA[<p>Agreed! Already done that....years ago.&nbsp; I stopped using/recommending the WYSIWYG but just recently got a new client that insists on the option so I'm providing it and adjusting it to the best of my ability. Thanks for your input and support. I appreciate it and the actions of this forum. I also appreciate CMSB and the I.T. staff for an incredible product/service over the years.</p>]]></description>
          <pubDate>Tue, 03 Mar 2026 10:44:26 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248369#post2248369</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248368#post2248368</link>
          <description><![CDATA[<p>Look in to css grid. I rarely upload images into the WYSIWYG field. Use a separate upload field. You have more control with aligning in your code. No hacks.</p>]]></description>
          <pubDate>Mon, 02 Mar 2026 23:25:46 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248368#post2248368</guid>
        </item>
                <item>
          <title>editor feature request</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248367#post2248367</link>
          <description><![CDATA[<p>A couple of years ago i suggested extending the input types for textfield, by adding email, url etc. The big win would be html date which replaces the 3 field date picker with builtin browser handler.</p>]]></description>
          <pubDate>Mon, 02 Mar 2026 20:11:10 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248367#post2248367</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248366#post2248366</link>
          <description><![CDATA[<p>Thanks, zaba!&nbsp; That partially corrected it, until the content in the WYSIWYG field was modified again and, frankly, the client will have no clue about modifying the source code in the cmsb wysiwyg panel. I just modified the php page and added a second wrapper div (with the clearfix hack) inside my altpage div. This ensures the image and the surrounding divs don't run into each other.&nbsp;&nbsp;</p>
<p>So, not a bug...just needed to adjust my html/php/css code.&nbsp; I appreciate it.</p>]]></description>
          <pubDate>Mon, 02 Mar 2026 16:47:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248366#post2248366</guid>
        </item>
                <item>
          <title>How do you guys handle sizing charts for e-commerce clients?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248365#post2248365</link>
          <description><![CDATA[<p><span>Hi everyone, I build a lot of custom e-commerce sites and I found that creating responsive sizing charts for clients is always a pain. I built a small standalone tool (sizechart-maker.com) to solve this. It generates embeddable HTML/images. Has anyone used a similar approach when integrating with CMS Builder? Would love your feedback!</span></p>]]></description>
          <pubDate>Mon, 02 Mar 2026 06:31:40 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248365#post2248365</guid>
        </item>
                <item>
          <title>CMSB v3.82 Released (Improved UI, Menu Count Badges, &amp; .env support)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248364#post2248364</link>
          <description><![CDATA[<p>Remove the surrounding &lt;p&gt; tag around the image. You have to be careful when using the WYSIWYG editor, always check the source to see if it has been applied correctly.<br /><br /></p>
<pre class="language-markup"><code>&lt;p style="text-align: center, &gt;&lt;span style="font-size: 36pt; &gt;Big Title Stuff Here&lt;/span&gt;&lt;/p&gt;
&lt;img src="/cecmsuAdmin4891/uploads/kohler_001.jpg" width="600" height="400" alt=''style=float: right;/&gt; 
&lt;p›&lt;span style="font-size: 24pt:"&gt;Text and stuff goes here for this item. &lt;/span&gt;&lt;/p&gt; &lt;p›&lt;span style="font-size: 24pt;"&gt;Text and stuff goes here for this item. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 24pt,"&gt; Text and stuff goes here for this item. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-size: 24pt;"&gt; Text and stuff goes here. &lt;/span&gt;&lt;/p&gt;</code></pre>]]></description>
          <pubDate>Mon, 02 Mar 2026 00:40:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248364#post2248364</guid>
        </item>
              </channel>
    </rss>
  