<?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%3ALucia</link>
        <description></description>
        <pubDate>Sat, 25 Apr 2026 00:56:10 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3ALucia&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>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>Error: Cannot access offset of type string on string</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248358#post2248358</link>
          <description><![CDATA[<p>Hi Gary,</p>
<p>I've looked into your request, and found the issue in a custom plugin, image_cropper.php, due to a PHP 8+ incompatibility. I've made a small fix to suppress the error, which is now letting the effected sections load.</p>
<p>If you need to apply the same fix to other sites, you can either copy over the image_cropper.php plugin file, or update line 15 from this:</p>
<pre class="language-php"><code>if (@$schema[$fn]['type'] == 'upload'){</code></pre>
<p>To this:</p>
<pre class="language-php"><code>if (is_array(@$schema[$fn]) &amp;&amp; @$schema[$fn]['type'] == 'upload'){</code></pre>
<p>Let me know if you have any questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Tue, 24 Feb 2026 17:27:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248358#post2248358</guid>
        </item>
                <item>
          <title>New Website Design</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247207#post2247207</link>
          <description><![CDATA[<p>Thanks Jeff! I've fixed the link.</p>]]></description>
          <pubDate>Fri, 17 May 2024 05:25:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247207#post2247207</guid>
        </item>
                <item>
          <title>New Website Design</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247197#post2247197</link>
          <description><![CDATA[<p>Hi everyone,</p>
<p>As you may be able to tell, we've just made live a new, more modern design for our website. Let us know what you think! We'd love to know if there's anything you love, hate, or if you find anything that's broken.</p>
<p>Thanks!</p>]]></description>
          <pubDate>Thu, 16 May 2024 09:13:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247197#post2247197</guid>
        </item>
                <item>
          <title>I get the following error after uploading to 3.57 - imagecolorsforindex(): Argument #2 ($color) is out of range in lib/image_functions.php on line 152.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246445#post2246445</link>
          <description><![CDATA[<p>Hi Gary,</p>
<p>I've found a fix for this bug, which should be included in the next CMSB release version. If you'd like to patch it in the meantime, you can replace this line in cmsb/lib/image_functions.php (at/around line 152)</p>
<pre class="language-php"><code>    $transparentColor = @imagecolorsforindex($sourceImage, $transparentIndex);</code></pre>
<p>With this:</p>
<pre class="language-php"><code>    $transparentColor = false;
    if ($transparentIndex &gt;= 0) {
      $transparentColor = @imagecolorsforindex($sourceImage, $transparentIndex);
    }</code></pre>
<p>Let me know if you have any further questions!</p>
<p>Thanks,</p>]]></description>
          <pubDate>Mon, 20 Feb 2023 16:29:51 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246445#post2246445</guid>
        </item>
              </channel>
    </rss>
  