<?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%3AMichael</link>
        <description></description>
        <pubDate>Tue, 12 May 2026 17:52:17 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AMichael&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245768#post2245768</link>
          <description><![CDATA[<p>Hi Kenny,</p>
<p>Would you be able to do a screen recording of the steps you're taking when the issue occurs?  Or outline step by step the sequence necessary to reproduce the issue and attach an example of an image file that issue occurs with?  So far I haven't been able to reproduce the issue.</p>
<p>Thanks,</p>
<p>Michael</p>]]></description>
          <pubDate>Thu, 16 Dec 2021 07:02:36 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245768#post2245768</guid>
        </item>
                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245766#post2245766</link>
          <description><![CDATA[<p>Hi Kenny,</p>
<p>In a properly configured environment you should be able to upload WebP image files.  Are you getting any error messages when uploading WebP files?  Or are they just not showing up properly?</p>
<p>Thanks,</p>
<p>Michael</p>]]></description>
          <pubDate>Wed, 15 Dec 2021 06:34:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245766#post2245766</guid>
        </item>
                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245757#post2245757</link>
          <description><![CDATA[<p>Ok. For the time being revert your file back to the original.  Did you try turning off convert to webp and uploading a JPG or PNG?  Did you get the same error?</p>]]></description>
          <pubDate>Tue, 07 Dec 2021 06:35:33 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245757#post2245757</guid>
        </item>
                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245754#post2245754</link>
          <description><![CDATA[<p>My initial guess would be that your installation of ImageMagick doesn't have WebP support enabled.  This has come up a couple of times.  Here is a thread detailing a fix.  If those steps don't resolve the issue let me know.</p>
<p><a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2245737#post2245737" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2245737#post2245737</a></p>]]></description>
          <pubDate>Tue, 07 Dec 2021 06:00:47 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245754#post2245754</guid>
        </item>
                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245752#post2245752</link>
          <description><![CDATA[<p>Does the error get logged in your CMSB Developer Log?  If so, can you post the "Error Details"?</p>]]></description>
          <pubDate>Tue, 07 Dec 2021 05:48:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245752#post2245752</guid>
        </item>
                <item>
          <title>CMSB v3.55 Released - November 10th, 2021</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245750#post2245750</link>
          <description><![CDATA[<p><span>Can you post the error message you're receiving when trying to upload JPG/PNG files?</span></p>]]></description>
          <pubDate>Tue, 07 Dec 2021 05:31:23 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245750#post2245750</guid>
        </item>
                <item>
          <title>webP errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245742#post2245742</link>
          <description><![CDATA[<p>Thanks for the update, Paul.</p>]]></description>
          <pubDate>Tue, 30 Nov 2021 13:24:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245742#post2245742</guid>
        </item>
                <item>
          <title>webP errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245737#post2245737</link>
          <description><![CDATA[<p>Hi Paul,</p>
<p>In your particular case it looks like ImageMagick is not configured with WebP support.</p>
<p>I would start by requesting that your hosting provider add WebP support to the ImageMagick configuration on your server.</p>
<p>We will be releasing a patch/update to check for this scenario but in the mean time if you're comfortable editing CMSB's files you can patch this issue yourself very easily following the steps below.</p>
<ol><li>Save a backup copy of the /lib/image_functions.php file.</li>
<li>Open the /lib/image_functions.php file in a text editor or your favorite IDE.</li>
<li>Search for this line (around line #394):<br /><pre class="language-php"><code>if(extension_loaded('imagick') and $extension != 'gd') {​</code></pre>
</li>
<li>Replace that line with this:<br /><pre class="language-php"><code>if(extension_loaded('imagick') and $extension != 'gd' and in_array('WEBP', \Imagick::queryformats())) {​</code></pre>
</li>
</ol><p>This will add an additional check for WebP support specifically and in your case should result in the script falling back to using the GD library to handle the conversion.</p>
<p>Thanks,</p>
<p>Michael</p>]]></description>
          <pubDate>Mon, 29 Nov 2021 11:32:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245737#post2245737</guid>
        </item>
                <item>
          <title>webP errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245735#post2245735</link>
          <description><![CDATA[<p>Hi Paul,</p>
<p>Can you check the Imagick section on the phpinfo() output to see if WebP is listed there?  I've attached a sample output of what we're looking for here.</p>
<p>Thanks,</p>
<p>Michael</p>]]></description>
          <pubDate>Mon, 29 Nov 2021 05:59:11 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245735#post2245735</guid>
        </item>
                <item>
          <title>webP errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245731#post2245731</link>
          <description><![CDATA[<p>Hi Paul,</p>
<p>I have 2 quick troubleshooting steps for you to try.</p>
<p>#1 Create a new PHP file with the following code, upload it, and run it on your site.</p>
<pre class="language-php"><code>&lt;?php

if(function_exists('imagecreatefromwebp')) {
  echo 'imagecreatefromwebp() is available';
} else {
  echo 'imagecreatefromwebp() is NOT available';
}

?&gt;</code></pre>
<p>#2 Create a new section editor with an upload field, but uncheck all of the resize/thumbnail options.  Make sure the Use WebP option is enabled in the General Settings.  Then try to upload a JPG file in that editor.  We just want the JPG file to be uploaded and converted.  I want to see if the problem is specific to the imagecreatefromwebp() function or if none of the webp-related functions are working.</p>
<p>Thanks</p>]]></description>
          <pubDate>Thu, 25 Nov 2021 07:16:14 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245731#post2245731</guid>
        </item>
                <item>
          <title>webP errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245717#post2245717</link>
          <description><![CDATA[<p>Hi rez,</p>
<p>The allowed file extensions are defined per upload field in the section editors/schema files so even though you turned off the "Use WebP" setting, the .webp file extension would still be listed as an allowed upload type and you'd still be able to select and upload .webp files (or any other allowed file extension).</p>
<p>Can you tell me a bit about your server environment?  OS, PHP version, etc.  It's possible your server doesn't have WebP support enabled.  You can verify this by checking the output of the phpinfo() function.  You should see WebP Support enabled screenshot attached.</p>
]]></description>
          <pubDate>Mon, 15 Nov 2021 06:25:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245717#post2245717</guid>
        </item>
                <item>
          <title>Logoff doesn&apos;t work on protected page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245697#post2245697</link>
          <description><![CDATA[<p>Great!  Glad to hear you were able to got it sorted out.</p>]]></description>
          <pubDate>Wed, 27 Oct 2021 09:52:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245697#post2245697</guid>
        </item>
                <item>
          <title>Re: Simple Forum 1.03 Released</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245694#post2245694</link>
          <description><![CDATA[<p>Hi Jeff,</p>
<p>You could add a condition to the "<span>auto-subscribe to thread" function call in the <strong>forums-topics-create.php</strong> file and the <strong>forum-posts-reply.php</strong> file and a checkbox field to the form itself.  That way a user could check the box to subscribe and leave it blank if they didn't want to.  Or default to checked and the user could uncheck if they didn't want to subscribe.  Example code below.</span></p>
<p>Replace this code</p>
<pre class="language-php"><code>// auto-subscribe to thread
sforum_db_setUserFollowingTopic($CURRENT_USER['num'], $topic['num'], 1);</code></pre>
<p>With this code</p>
<pre class="language-php"><code>// auto-subscribe to thread
if(!empty($_REQUEST['subscribe'])) {
  sforum_db_setUserFollowingTopic($CURRENT_USER['num'], $topic['num'], 1);
}</code></pre>
<p>And add this code to the form</p>
<pre class="language-markup"><code>&lt;div class="row vertical-spacer-10"&gt;
  &lt;div class="col-xs-12 text-right"&gt;
    &lt;input type="hidden" name="subscribe" value="0"&gt;
    &lt;input type="checkbox" name="subscribe" id="subscribe" value="1"&gt;
    &lt;label for="subscribe"&gt;Subscribe to thread updates&lt;/label&gt;
  &lt;/div&gt;
&lt;/div&gt;</code></pre>
<p>After this line in the <strong>forums-topics-create.php</strong> file</p>
<pre class="language-php"><code>&lt;?php echo sforum_html_post_editor(@$_REQUEST['subject'], @$_REQUEST['message'], null, @$_REQUEST['showPoll']); ?&gt;</code></pre>
<p>And after this line in the <strong>forum-posts-reply.php</strong> file</p>
<pre class="language-php"><code>&lt;?php echo sforum_html_post_editor(@$_REQUEST['subject'], @$_REQUEST['message']); ?&gt;</code></pre>]]></description>
          <pubDate>Tue, 26 Oct 2021 09:19:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245694#post2245694</guid>
        </item>
                <item>
          <title>Logoff doesn&apos;t work on protected page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245693#post2245693</link>
          <description><![CDATA[<p>Hi <span>Philip, were you able to resolve this issue?</span></p>]]></description>
          <pubDate>Tue, 26 Oct 2021 08:44:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245693#post2245693</guid>
        </item>
                <item>
          <title>PHP v8</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245688#post2245688</link>
          <description><![CDATA[<p>Try replacing those lines with the following:</p>
<pre class="language-php"><code>$keyEqualsValue             = function($k, $v) { return $k.'='.$v; };       // key=value
$keyEqualsDoubleQuotedValue = function($k, $v) { return $k.'="'.$v.'"'; };  // key="value"</code></pre>]]></description>
          <pubDate>Thu, 21 Oct 2021 06:03:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245688#post2245688</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245682#post2245682</link>
          <description><![CDATA[<p>Glad to hear that.  Thanks.</p>]]></description>
          <pubDate>Tue, 19 Oct 2021 13:16:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245682#post2245682</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245680#post2245680</link>
          <description><![CDATA[<p>It looks like 2 additional lines need to be updated.</p>
<p>Try changing the following line (around 762) from:</p>
<pre class="language-php"><code>&lt;?php if($filterSchema['listType'] == 'pulldownMulti'): ?&gt;</code></pre>
<p>to this:</p>
<pre class="language-php"><code>&lt;?php if(!empty($filterSchema['listType']) &amp;&amp; $filterSchema['listType'] == 'pulldownMulti'): ?&gt;</code></pre>
<p>And this line (around 767) from:</p>
<pre class="language-php"><code>&lt;?php elseif($filterSchema['listType'] == 'checkboxes') : ?&gt;</code></pre>
<p>to this:</p>
<pre class="language-php"><code>&lt;?php elseif(!empty($filterSchema['listType']) &amp;&amp; $filterSchema['listType'] == 'checkboxes') : ?&gt;</code></pre>]]></description>
          <pubDate>Tue, 19 Oct 2021 12:33:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245680#post2245680</guid>
        </item>
                <item>
          <title>Get Options from MySQL Advanced - Undefined index: listType Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245678#post2245678</link>
          <description><![CDATA[<p>Hi @theclicklab,</p>
<p>I've successfully reproduced the issue you've described.  This will be fixed in the next CMSB release.  In the mean time if you'd like to resolve the issue in your current installation, look for the following line (around 766) in the <strong>/lib/menus/default/edit_function.php</strong> file:</p>
<pre class="language-php"><code>$sourceField = ($filterSchema['listType'] == 'checkboxes' || $filterSchema['listType'] == 'pulldownMulti')? $filterSchema['name']."[]" : $filterSchema['name'] ;</code></pre>
<p>and change it to read:</p>
<pre class="language-php"><code>$sourceField = (!empty($filterSchema['listType']) &amp;&amp; ($filterSchema['listType'] == 'checkboxes' || $filterSchema['listType'] == 'pulldownMulti'))? $filterSchema['name']."[]" : $filterSchema['name'] ;</code></pre>
<p>That should take care of the PHP notice you're seeing.</p>]]></description>
          <pubDate>Tue, 19 Oct 2021 11:45:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245678#post2245678</guid>
        </item>
                <item>
          <title>Upgraded to 3.54. Uploads problem</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245667#post2245667</link>
          <description><![CDATA[<p>Hi, what version of CMSB did you upgrade from?</p>]]></description>
          <pubDate>Fri, 15 Oct 2021 09:07:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245667#post2245667</guid>
        </item>
              </channel>
    </rss>
  