<?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%3Arez</link>
        <description></description>
        <pubDate>Sun, 12 Apr 2026 06:54:14 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Arez&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Unknown Error uploading images</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248276#post2248276</link>
          <description><![CDATA[<p>Images sent and thank you!</p>]]></description>
          <pubDate>Tue, 06 Jan 2026 17:07:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248276#post2248276</guid>
        </item>
                <item>
          <title>Unknown Error uploading images</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248273#post2248273</link>
          <description><![CDATA[<p>Hello.&nbsp;</p>
<p>I have had 2 different sites show "Unknown Error" when trying to upload images from my graphic artist into CMSB.</p>
<p>I simply resaved the images from Photoshop file&gt; Export as to new JPGs and they uploaded fine.</p>
<p>The only difference I see is a large amount of meta data in the file from my graphic artist. I'm not sure yet if he used a different process (haven't seen this issue from him before and just emailed to ask) or if he used different software or something. I'm also not sure if he had sRGB toggled or if that may be an issue in CMSB.</p>
<p>Attached are the settings I used that work. However, I am not sure if this was the issue.&nbsp;</p>
<p>Please advise or let me know if you would like the example files to investigate (prefer to email).</p>
<p>Thank you!</p>]]></description>
          <pubDate>Mon, 05 Jan 2026 19:43:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248273#post2248273</guid>
        </item>
                <item>
          <title>CMSB v3.79 Beta Released (Developer Tools)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248102#post2248102</link>
          <description><![CDATA[<p>Thanks Dave!</p>

<p>I still like the idea of paging through a record list without having to return to the list. Shopify style.</p>
<p>Updating all prices on a restaurant menu, for instance:</p>
<p>I update a Chef Salad price, press next. I'm now in the next record and update a Garden Salad price, for instance. Press next.</p>
<p>Pressing next would either prompt me to save or there is a Save &amp; Next button? As soon as you change a Shopify item, they add a "save" button at the top (which also indicates you made changes). If you were to try and exit the record / go to the next record, I believe it flashes and won't let you leave (something like that).</p>

<p>And also this (probably can't happen but maybe something has changed to make it easier now) 😁:<br /><a href="https://interactivetools.com/forum/forum-posts.php?postNum=2231476#post2231476" rel="nofollow">https://interactivetools.com/forum/forum-posts.php?postNum=2231476#post2231476</a></p>



]]></description>
          <pubDate>Tue, 19 Aug 2025 13:11:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248102#post2248102</guid>
        </item>
                <item>
          <title>csv import plugin error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247991#post2247991</link>
          <description><![CDATA[<p>Finally getting back to this and your 1.18 release worked great. Thanks!</p>]]></description>
          <pubDate>Wed, 04 Jun 2025 10:55:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247991#post2247991</guid>
        </item>
                <item>
          <title>csv import plugin error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247971#post2247971</link>
          <description><![CDATA[<p>Hi Dave. I keep seeing this error lately on a simple CSV file of states and abbreviations I have imported for years.</p>
<p>I was looking around and noticed the thread. I can give more info but thought you might know what's going on with this?</p>

<p>Thank you! </p>]]></description>
          <pubDate>Thu, 29 May 2025 22:21:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247971#post2247971</guid>
        </item>
                <item>
          <title>CMSB v3.75 Released (Dec 10) - DB Performance &amp; Debug Footers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247860#post2247860</link>
          <description><![CDATA[<p>I'm, for example, fetching recipes that contain the product on a details web page. So in a recipe record, I have checkboxes / a list of all the products (list from another database table) I manually checkbox when pasting in a recipe (meh, works ok for a small site, kind of manual though). Then, on the product page, the related recipes are displayed, example below. Over the years, all the exploding and such to get this type of thing done has always put me in a fog and I'd use snippets to get it done again next time.</p>
<p>This is what load is for? As in, the header when making a list (loading records) gets this all done? Where do I learn more? Is this in the code generator now or... </p>
<p>Thanks for any direction.</p>
<pre class="language-markup"><code>    &lt;?php if($retail_itemsRecord):?&gt;     
           &lt;!-- Display recipes if they match the current product --&gt;
        &lt;?php
          $matchedRecipes = [];
          foreach ($recipesRecords as $recipe) {
              if (in_array($retail_itemsRecord['num'], $recipe['products:values'])) {
                  $matchedRecipes[] = $recipe;
              }
          }
        ?&gt;

        &lt;?php if (!empty($matchedRecipes)): ?&gt;
          &lt;section class="theme-1 padding-vertical-1"&gt;
            &lt;div class="grid-container"&gt;
              &lt;div class="grid-x grid-padding-x"&gt;              
                  &lt;div class="cell"&gt;
                      &lt;hr&gt;
                      &lt;h2&gt;Related Recipes:&lt;/h2&gt;
                  &lt;/div&gt;
              &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;
    &lt;?php endif ?&gt;

    &lt;?php if($retail_itemsRecord):?&gt;
          &lt;section class="theme-1 padding-vertical-1"&gt;
            &lt;div class="grid-container"&gt;
              &lt;div class="grid-x grid-padding-x medium-up-3 large-up-4" data-equalizer data-equalize-on="medium" data-equalize-by-row="true"&gt;
                
                  &lt;?php foreach ($matchedRecipes as $recipe): ?&gt;
                    &lt;a href="&lt;?php echo htmlencode($recipe['_link']); ?&gt;"&gt;
                    &lt;div class="cell padding-1"&gt;
                    &lt;div class="card" data-equalizer-watch&gt;
                      &lt;?php if (!empty($recipe['image'])): ?&gt;  
                          &lt;?php foreach ($recipe['image'] as $index =&gt; $upload): ?&gt;
                            &lt;img src="&lt;?php echo htmlencode($upload['thumbUrlPath3']) ?&gt;" alt="&lt;?php echo ($recipe['title']) ?&gt;"&gt;
                          &lt;?php endforeach ?&gt;
                      &lt;?php else: ?&gt;
                        &lt;?php foreach ($placeholder_imageRecord['image'] as $index =&gt; $upload): ?&gt;    
                          &lt;img src="&lt;?php echo htmlencode($upload['thumbUrlPath3']) ?&gt;" alt="&lt;?php echo ($recipe['title']) ?&gt;"&gt;
                        &lt;?php endforeach; ?&gt;
                      &lt;?php endif; ?&gt;
                      &lt;div class="card-section"&gt;
                        &lt;?php echo htmlencode($recipe['title']); ?&gt;
                      &lt;/div&gt;      
                    &lt;/div&gt;
                    &lt;/div&gt;&lt;/a&gt;
                  &lt;?php endforeach; ?&gt;
              &lt;/div&gt;
            &lt;/div&gt;
          &lt;/section&gt;
        &lt;?php endif; ?&gt;
    &lt;?php endif ?&gt;</code></pre>]]></description>
          <pubDate>Tue, 28 Jan 2025 12:38:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247860#post2247860</guid>
        </item>
                <item>
          <title>CMSB v3.71 Released (Jun 18) -Help Tooltips &amp; Upload Features</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247378#post2247378</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>In my cases, it's a different value for each record.</p>
<p><strong>Example 1:</strong><br />A restaurant with 100 items updates their pricing with increases. Usually, at the same time, they will throw in some description changes of ingredients and such, or I'll be swapping some photos as well. So it's not just always 1 field—price, description, and photo.</p>
<p><strong>Example 2:</strong><br />A taphouse decides they want to list ABV percentages for all of their beers, and there are 100 in the database. Different values for each record but all the same ABV field.</p>
<p><strong>Example 3:</strong><br />I'm not going to lie—sometimes it may only be 7 weekly specials, but it's still efficient if possible! ;)</p>
<p>Thank you for considering this and thanks to the other interested users.</p>]]></description>
          <pubDate>Fri, 19 Jul 2024 12:16:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247378#post2247378</guid>
        </item>
                <item>
          <title>CMSB v3.71 Released (Jun 18) -Help Tooltips &amp; Upload Features</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247347#post2247347</link>
          <description><![CDATA[<p>As in "auto-save" when pressing next? Good question. In Shopify, in a product's details, when you page "next" like this (or leave back to product list), it prompts you that you have unsaved changes and you have to press a save button before continuing with the next button again. I haven't made any mistakes nor have I been annoyed.</p>
<p>If pressing "next" saved and also went to the next record with that one click, it sounds convenient (I believe exiting without saving already causes a JS pop-up).</p>
<p>Can anyone think of any cons to this "save and next" button? I would think if you were pressing next, you are wanting to save every time. Otherwise, you cancel to revert?</p>
<p>Is that what you meant Dave? Sorry if I misunderstood. I'm fine with either way but more convenience is welcomed. I'm only experienced with Shopify which does work fine.</p>
<p>Thoughts anyone?</p>]]></description>
          <pubDate>Fri, 12 Jul 2024 20:29:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247347#post2247347</guid>
        </item>
                <item>
          <title>CMSB v3.71 Released (Jun 18) -Help Tooltips &amp; Upload Features</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247334#post2247334</link>
          <description><![CDATA[<p>Hi Dave. Feature requests ok here? I think it would be nice if, while modifying a record, there were "next" and "previous" buttons to page through the list of records without having to back out to the full list view and come back in.</p>
<p>If this is possible, I believe it would be used a lot to update lists of records fast and efficiently.</p>
]]></description>
          <pubDate>Thu, 11 Jul 2024 23:46:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247334#post2247334</guid>
        </item>
                <item>
          <title>Permalinks mostly working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247327#post2247327</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>I get a 403 after removing the /catering permalink and trying to access it in the browser.</p>]]></description>
          <pubDate>Sun, 07 Jul 2024 03:17:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247327#post2247327</guid>
        </item>
                <item>
          <title>Permalinks mostly working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247318#post2247318</link>
          <description><![CDATA[<p>I have many permalinks working.</p>
<p>/rewards</p>
<p>/contact</p>
<p>etc.</p>
<p>I made them manually but also have a section with a permalinks text field and a locations details viewer all working. </p>
<p>So the plugin is installed and htaccess works.</p>
<p>However, /catering does not work. I get a 403</p>
<p>The plugin entries all look consistent.</p>
<p>Going to /catering.php works fine.</p>
<p>I renamed rewards.php that works with /rewards to catering.php and that won't work with /catering either so any page for /catering doesnt work.</p>
<p>I looked into the actual database in cpanel and it appears consistent with one /catering entry. </p>
<p>I updated to cmsb <span> v3.71and permalinks 1.12, no luck.</span></p>
<p><span>I deleted the /catering entry in the plugin and re-added. Doesn't work.</span></p>
<p><span>Any ideas?</span></p>]]></description>
          <pubDate>Tue, 02 Jul 2024 16:47:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247318#post2247318</guid>
        </item>
                <item>
          <title>Permalinks error with 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247155#post2247155</link>
          <description><![CDATA[<p>Actually, I have a question.</p>
<p>Can you list any CMSB debugging functions or straight forward techniques for CMSB you often use?</p>
<p>For instance, I remember you had a showme function and I will search that again; its been a while. Are there any new or additional CMSB specific debugging suggestions, like the showme function, when running into errors or problems?  </p>]]></description>
          <pubDate>Thu, 25 Apr 2024 16:11:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247155#post2247155</guid>
        </item>
                <item>
          <title>Permalinks error with 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247154#post2247154</link>
          <description><![CDATA[<p>Oh, hi Dave. I was updating my comment same time.</p>
<p>It was my fault. I was using the wrong operator  on my page below. I was using "|" as OR instead of "II". Oddly, it was working until my updates.</p>
<p>Fixed:</p>
<pre class="language-markup"><code>&lt;?php if($locationsRecord['pdf_menu'] || $locationsRecord['menu_image']):?&gt;</code></pre>
<p> The error line 31 and mentioned plugin, threw me off. I guess that's the line when processing or something like that.</p>
<p>Thanks for the fast response.</p>]]></description>
          <pubDate>Thu, 25 Apr 2024 15:45:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247154#post2247154</guid>
        </item>
                <item>
          <title>Permalinks error with 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247152#post2247152</link>
          <description><![CDATA[<p>Oh, jeez. Got it. It says it right there but it was hard to tell where that line was so I figured 31 was in the mentioned permalinks plug. </p>
<p> "I" had been working as an operator when it always should have been || . Maybe... error levels on the server changed or some combo of updating, I don't know.</p>
<p>My fault as usual. :D</p>]]></description>
          <pubDate>Thu, 25 Apr 2024 15:27:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247152#post2247152</guid>
        </item>
                <item>
          <title>Permalinks error with 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247151#post2247151</link>
          <description><![CDATA[<p>Hi,</p>
<p>I was running into depreciated code yesterday so I have been updating several sites.</p>
<p>I updated a site to CMSB 3.68 with permalinks 1.12, PHP 8.3 and get the following error on my page and in the log:</p>
<p><span>Unsupported operand types: array | array in /home2/website/public_html/cmsAdmin/plugins/permalinks/permalinks_dispatcher.php on line 31</span></p>
<p><span>Thanks.</span></p>]]></description>
          <pubDate>Thu, 25 Apr 2024 14:17:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247151#post2247151</guid>
        </item>
                <item>
          <title>CVS Import error with CMSB 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247149#post2247149</link>
          <description><![CDATA[<p>Thank you, Dave.</p>
<p>I have successfully installed the plugin and imported a "states" CSV file to a database. </p>

<p>Edit: and just in case anyone is about to make the same mistake I did on second site, don't forget to make sure your CMSB is up to date for the required version!</p>
<p><strong>"Requires: </strong>CMS Builderv3.65" . In 3.63, your upload button will not appear. </p>]]></description>
          <pubDate>Tue, 23 Apr 2024 11:17:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247149#post2247149</guid>
        </item>
                <item>
          <title>CVS Import error with CMSB 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247145#post2247145</link>
          <description><![CDATA[<p>Hi there. Just a heads up, I am in communication with IT and they are working on a solution for a new plugin release ASAP. </p>
<p>I hope you were at least able to get the mentioned files removed and at least have access if it's the exact same issue.</p>
]]></description>
          <pubDate>Tue, 23 Apr 2024 08:14:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247145#post2247145</guid>
        </item>
                <item>
          <title>CVS Import error with CMSB 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247142#post2247142</link>
          <description><![CDATA[<p>I was still getting this error on the database editor page as well, until I removed:</p>
<p>&lt;?&gt; _csv_import_data. ini. php<br />&lt;?&gt; _csv_impor t Jobs. ini. php</p>

<p>Which the plugin probably ads on install?</p>
<p>I just realized I had similar issues on a previous site just like this and you were not able to reproduce so I will finally submit the login to the support link you left in my other post and I will point to both posts for an explanation.</p>
]]></description>
          <pubDate>Fri, 19 Apr 2024 17:40:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247142#post2247142</guid>
        </item>
                <item>
          <title>CVS Import error with CMSB 3.68</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247141#post2247141</link>
          <description><![CDATA[<p>I get the following error which prevents CMSB from loading until I delete the CVS Import plugin folder from the server.</p>
<pre class="language-php"><code>Error: Field 'num' not found in schema</code></pre>

<p>CMSB 3.68</p>
<p>CVS Import 1.16</p>

<p>Please advise. Thank you.</p>

]]></description>
          <pubDate>Fri, 19 Apr 2024 17:22:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247141#post2247141</guid>
        </item>
                <item>
          <title>3.63 Plugin Compatibility Issues</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246830#post2246830</link>
          <description><![CDATA[<p><strong>Low Disk Space Alert,</strong> when navigating to sections:</p>
<p><span>loadINI: Undefined array key "_pluginAction"</span></p>
<p><strong>Outgoing SMS 1.07:</strong></p>
<p><span>loadINI: Undefined array key "_pluginName"</span></p>
<p><span>After deleting this folder, I am getting:</span></p>
<p><span>loadINI: Undefined array key "menuPrefixIcon" - I deleted the auto created section to restore CMSB</span></p>
<p><span>This one tested my troubleshooting processes. ;)</span></p>
<p><strong>Simple Forum 1.06:</strong></p>
<p><span>saveSchema: no menuName specified! in /path/lib/common.php on line 327</span></p>]]></description>
          <pubDate>Sun, 12 Nov 2023 14:03:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246830#post2246830</guid>
        </item>
                <item>
          <title>3.63 Plugin Compatibility Issues</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246829#post2246829</link>
          <description><![CDATA[<p>When I upload <strong>CVS Import 1.14</strong>, I get:</p>
<p>"<span>loadINI: Undefined array key "fileFormat" </span></p>
<p><span>and CMSB will not load. When I remove the plugin, I regain access to CMSB.</span></p>
<ul>
<li><span>PHP 8.2.12</span></li>
<li><span>CMS Builder v3.63 (Build 2443)</span></li>
<li><span>CVS Import 1.14 October 5th, 2022</span></li>
</ul>
<p><span>Thank you!</span></p>]]></description>
          <pubDate>Sun, 12 Nov 2023 13:34:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246829#post2246829</guid>
        </item>
                <item>
          <title>Convert all old site uploads to WebP</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246463#post2246463</link>
          <description><![CDATA[<p><span>I'm curious if CMSB has the ability to convert all the images uploaded to old websites to WebP format. CMSB can already auto convert individual jpg images to WebP and recreate thumbnails in a click, so I was wondering if it could do this for the entire site at once. Some old sites have a large number of uploaded jpgs, and it would be extremely helpful to convert them all to WebP without having to re-upload them. Although I doubt if CMSB currently has this capability, it seems like all the necessary features are already present. If it were possible, it would be fantastic for any old website. Is this possible?</span></p>]]></description>
          <pubDate>Mon, 13 Mar 2023 08:24:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246463#post2246463</guid>
        </item>
                <item>
          <title>Empty Record Errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246446#post2246446</link>
          <description><![CDATA[<p>Actually, the code generator doesn't use if statements. My memory is bad, but I thought so!</p>
<p>OK, why am I getting this error everywhere for empty records then?</p>
<pre class="language-markup"><code>Notice: Trying to access array offset on value of type null in /home2/website/public_html/index.php on line 149

  list($about_usRecords, $about_usMetaData) = getRecords(array(
    'tableName'   =&gt; 'about_us',
    'where'       =&gt; '', // load first record
    'loadUploads' =&gt; true,
    'allowSearch' =&gt; false,
    'limit'       =&gt; '1',
  ));
  $about_usRecord = @$about_usRecords[0]; // get first record



    &lt;section class="theme-b"&gt;
      &lt;div class="grid-container"&gt;		
        &lt;div class="grid-x grid-padding-x text-center align-center-middle"&gt;
          &lt;div class="cell medium-8 padding-vertical-2"&gt;
              &lt;h2&gt;&lt;?php echo $about_usRecord['title']; ?&gt;&lt;/h2&gt;
              &lt;?php echo $about_usRecord['content']; ?&gt;
          &lt;/div&gt;
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/section&gt;</code></pre>
<p>?</p>]]></description>
          <pubDate>Mon, 20 Feb 2023 19:48:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246446#post2246446</guid>
        </item>
                <item>
          <title>Empty Record Errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246443#post2246443</link>
          <description><![CDATA[<p><span>For a single record section, I just included an if statement in the body and removed the default "record not found" error in the list code. This allows pages to skip empty record sections without error. It works fine, however, in the past, there was no need for an if statement and no errors appeared. Was there a different default list code? I thought I used to simply add </span><span>&lt;?php echo $about_usRecord['content']; ?&gt;</span><span> wherever I needed it on a single record page.</span></p>
<p><span>Am I wrong? I guess I must be. It's odd that an error should be thrown from a CMS on a website because a record is empty (no content).</span></p>
<pre class="language-markup"><code>  list($about_usRecords, $about_usMetaData) = getRecords(array(
    'tableName'   =&gt; 'about_us',
    'where'       =&gt; '', // load first record
    'loadUploads' =&gt; true,
    'allowSearch' =&gt; false,
    'limit'       =&gt; '1',
  ));
  $about_usRecord = @$about_usRecords[0]; // get first record


    &lt;?php if($about_usRecord):?&gt; // I don't recall this if check being required      
              &lt;?php echo $about_usRecord['content']; ?&gt;
    &lt;?php endif?&gt;</code></pre>]]></description>
          <pubDate>Mon, 20 Feb 2023 15:02:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246443#post2246443</guid>
        </item>
                <item>
          <title>Clients easily optimizing photos?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246412#post2246412</link>
          <description><![CDATA[<p>Oops. I deleted the wrong post.</p>
<p>Thanks Jerry. I will try unlimited and the different global quality settings and see how those results are. Maybe I can get a nice result and had something set wrong in the past. I usually maintain the sites myself and don't have an issue optimizing with Photoshop. I just tried setting on unlimited and got a 1.6 megabyte to 300kb at 800x600 pixels. I guess I can't expect Photoshop results, I just know I can get that same photo size and quality smaller.</p>
<p>Over all though, 300kb isn't so bad, that just seems large for such a small photo. I'll try some different sizes and CMSB qualities.</p>
<p>I recently just tried someone's Wix site and the photo features were fantastic so came to see what others were doing here.  </p>]]></description>
          <pubDate>Thu, 02 Feb 2023 10:21:59 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246412#post2246412</guid>
        </item>
              </channel>
    </rss>
  