<?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%3Apacolvin</link>
        <description></description>
        <pubDate>Sat, 16 May 2026 08:04:32 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Apacolvin&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Upload Field Name Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248263#post2248263</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>That fixed it.&nbsp;</p>
<p>Thank you...</p>
<p>Phil</p>]]></description>
          <pubDate>Tue, 30 Dec 2025 07:27:17 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248263#post2248263</guid>
        </item>
                <item>
          <title>Upload Field Name Issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2248261#post2248261</link>
          <description><![CDATA[<p>Not long ago I updated to the latest version of CMS Builder.&nbsp; It wasn't until today that I needed to upload a file in an upload field.&nbsp; When click the Add or Upload Files Link I get a lot of errors.&nbsp; See the attached screenshot.&nbsp; It does allow me to upload a file and I can access it via the web page normally.&nbsp; If I try to delete an upload, I get the error in the second screenshot.</p>
<p>Seems to be an issue with the column name.&nbsp; These sections were made in a previous version and worked fine.&nbsp; Is this an issue with the latest version or DB that I need to change on my end?<br /><br />CMCB Version 3.81 Build 2999<br /><br />PHP 8.3.28</p>
<p>Thanks</p>
<p>Phil Colvin</p>]]></description>
          <pubDate>Mon, 29 Dec 2025 20:44:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2248261#post2248261</guid>
        </item>
                <item>
          <title>Session Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247859#post2247859</link>
          <description><![CDATA[<p>Dave,</p>
<p>I have tried loading SiteLok before and after the CMSB libraries.  The error I am getting is below.</p>
<p>Error: Session already started, only call session_start() after loading CMS libraries so correct session handler is used. in /var/www/vhosts/sctfpa.gov/httpdocs/sctf/contentDetail.php on line 9</p>
<p>I have several pages that are protected by SiteLok with the code snippet in the above example.  If I load it after CMSB, I can get in without the error until I try to load another page that is protected with SiteLok.  Then I get the error above.</p>
<p>It must be something with the server because I am running this exact same setup on other sites hosted at a different host with no problems.  I can check on the PHP settings.  What should the output buffering settings be?</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 27 Jan 2025 11:50:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247859#post2247859</guid>
        </item>
                <item>
          <title>Session Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247856#post2247856</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>I looked through the SiteLok code there are several places it has a session_start().  I could try to comment out all of them, but that may have an impact on how it functions.</p>
<p>What I find odd is this setup worked for quite a long time until moving to the new server.  We are in the process of rebuilding the entire site and I won't be using some of the unique code that I use now in CMSB which may help. </p>
<p>What I do in CMSB is with one .php file named contentDetail.php I set the table and other items in the CMSB code so I would not need to have a lot of different actual pages.  See the code below.  Things are set by the menu items selected on the page.  I have found that if I move SiteLok code below the CMSB code on other pages, it works ok, but on this page, if the code is below the CMSB code, I still get session errors.</p>
<p>I will see what the SiteLok developer come back with.  Obviously there is something different in how this server handles sessions that how the old server did.</p>
<pre class="language-markup"><code>&lt;?php
  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';
  $dirsToCheck = ['','../','../../','../../../','../../../../','/var/www/vhosts/sctfpa.gov/httpdocs/']; // add if needed: '/var/www/vhosts/sctfpa.gov/httpdocs/'
  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}
  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }
  
  // load records for the page called. 
  list($myRecords, $myMetaData) = getRecords(array(  
    'tableName'   	  =&gt; $_GET['section'],
    // 'tableName'   	  =&gt; $_REQUEST['section'],  
    'where'           =&gt; "num = '".intval(@$_GET['num'])."'", 
    'loadUploads'     =&gt; false, 
    'allowSearch'     =&gt; false, 
    'limit'           =&gt; '1',  
  ));  
  $myRecord = @$myRecords[0]; // get first record 
   
  //get uploads for the selected record meeting minutes
  list($upload_minutesRecords, $upload_minutesMetaData)=getRecords(array( 
    'tableName'       =&gt;      'uploads', 
    'allowSearch'     =&gt;      false, 
    'where'			  =&gt;	  "tableName='".mysql_escape(@$_GET['section'])."' AND fieldName='meeting_minutes' AND recordNum='".intval($myRecord['num'])."'",
    'orderBy'   	  =&gt;      "STR_TO_DATE(info1,'%M %d,%Y') DESC",
    ));
  
  //get uploads for the selected record other docs
  list($upload_otherRecords, $upload_otherMetaData)=getRecords(array( 
    'tableName'       =&gt;      'uploads', 
    'allowSearch'     =&gt;      false, 
    'where'			  =&gt;	  "tableName='".mysql_escape(@$_GET['section'])."' AND fieldName='other_docs' AND recordNum='".intval($myRecord['num'])."'",
	'orderBy'		  =&gt;	  "`order`",
    ));	
?&gt;</code></pre>
<p>Later on the page is where I loop through all of the menu items that grab the info that is then used by the CMSB code to know what content to display.</p>
<pre class="language-markup"><code>		&lt;?php 
		  $categoryTablenames = array('exec_comm', 'ag_sc', 'bii_sc', 'com_it_sc', 'cj_sc', 'exercise_wg', 'frhm_sc', 'health_and_safety', 'hlth_med', 'imt', 'info_intel_wg', 'links', 'logs_eqp', 'mass_evac_wg', 'pol_procd', 'pio', 'tng_sc', 'exercise_wg');
		 
		  $categoryRecordSets = array(); 
		 
		  foreach ($categoryTablenames as $tablename) { 
			list($categoryRecords,) = getCategories(array( 
			  'tableName'   =&gt; $tablename, 
			)); 
			$categoryRecordSets[$tablename] = $categoryRecords; 
		  } 
		?&gt; 
		 &lt;ul id="theMenu"&gt;
		 &lt;li&gt;&lt;a href="index.php"&gt;Home&lt;/a&gt;&lt;/li&gt;
		  &lt;?php foreach($categoryRecordSets as $tablename =&gt; $categoryRecords): ?&gt;
			  &lt;?php foreach ($categoryRecords as $record): ?&gt;
				&lt;?php echo $record['_listItemStart'] ?&gt;
					&lt;?php if (sl_ismemberofany($record['visible_grp'])){ ?&gt;
					&lt;a href="contentDetail.php?section=&lt;?php echo $tablename ?&gt;&amp;amp;num=&lt;?php echo $record['num'] ?&gt;"&gt;&lt;?php echo htmlspecialchars($record['name']) ?&gt;&lt;/a&gt;
					&lt;?php } ?&gt;
				&lt;?php echo $record['_listItemEnd'] ?&gt;
			 &lt;?php endforeach ?&gt;
		  &lt;?php endforeach ?&gt;</code></pre>
<p>So I can get things working with the index.php page, but if I mess around with the contentDetail.php, which has the code above, it messes things up a bit too much.</p>
<p>Hopefully I won't have these issues with the new site.  I will be using SiteLok and CMSB on it in much the same way.  </p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Sun, 26 Jan 2025 12:57:37 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247856#post2247856</guid>
        </item>
                <item>
          <title>Session Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247854#post2247854</link>
          <description><![CDATA[<p>Tim,</p>
<p>SiteLok definitely starts its own session.  I tried to move the code that calls SiteLok below the CMSB code which did help a little, but I still get the session error every now and then.  Below is the code that is at the beginning of most pages on the site.  Of course it varies depending on the content for that page.</p>
<pre class="language-markup"><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;
&lt;?php
  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';
  $dirsToCheck = ['','../','../../','../../../','../../../../']; // add if needed: '/var/www/vhosts/sctfpa.gov/httpdocs/'
  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}
  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }
  
  // load records for News and Events
  list($news_and_eventsRecords, $news_and_eventsMetaData) = getRecords(array(
    'tableName'   =&gt; 'news_and_events',
    'loadUploads' =&gt; '1',
    'allowSearch' =&gt; '0',
  ));
?&gt;
&lt;?php
$groupswithaccess="TFUSER,HC";
require_once("../slpw/sitelokpw.php");
?&gt;</code></pre>
<p>You will see the last 4 lines are what calls Sitelok.  Here it is below the CMSB code.  It if is before, I get a lot more of the session errors.  I am also working with the developer of SiteLok on this.  They just call a normal session which I'm sure CMSB is doing.</p>
<p>I have run this site for years without this issue and no changes until we moved to the new server.  We are on PHP version 8.3.16.  I may try using 8.2.27 and see if that makes any changes.  The old server it was on was running version 8.1</p>]]></description>
          <pubDate>Sun, 26 Jan 2025 11:37:41 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247854#post2247854</guid>
        </item>
                <item>
          <title>Session Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247839#post2247839</link>
          <description><![CDATA[<p>After moving to a new hosting service, I have been receiving the error below when access pages that are secured using the SiteLok.  I can load pages that are not secured.  If I clear the cookies and site data for the website, the pages load fine and I can log out and in many times with no issue.</p>
<p>Error: Session already started, only call session_start() after loading CMS libraries so correct session handler is used. in /var/www/vhosts/sctfpa.gov/httpdocs/sctf/index.php on line 10</p>
<p>I'm trying to track down if this is a CMS Builder, SiteLok or server issue.  If anyone could shed some light on this or point me to a possible cause or reason for the error, that would be great.</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Sun, 12 Jan 2025 16:53:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247839#post2247839</guid>
        </item>
                <item>
          <title>Ideas for an Auto Increment Field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247446#post2247446</link>
          <description><![CDATA[<p>Tim,</p>
<p>You replied before I was able to update my post.  I have been able to achieve what I wanted adding a trigger with phpMyAdmin.  The trigger is below.  I still need to test some things in the production enviroment to make sure I don't get any duplicates, but this should work.</p>
<pre class="language-markup"><code>BEGIN 

-- Increment the num value and store it in generatedNum 

SET NEW.generatedNum = (SELECT IFNULL(MAX(num), 0) + 1 FROM cmsb_oca_log); 

-- Set the lcwc_num field using the incremented generatedNum 

SET NEW.lcwc_num = CONCAT( YEAR(NEW.createdDate), '-', LPAD(NEW.generatedNum, 4, '0') ); 

END</code></pre>
<p>I'm open to any ideas how to make things better so all suggestions from anyone is welcome.</p>
<p>Phil</p>]]></description>
          <pubDate>Wed, 21 Aug 2024 07:06:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247446#post2247446</guid>
        </item>
                <item>
          <title>Re: auto remove expired from database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247445#post2247445</link>
          <description><![CDATA[<p>Tim,</p>
<p>Thanks for the reply.  I'll work on making some changes to the function and see how it works.  The array will work fine for multiple sections.</p>

<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Wed, 21 Aug 2024 06:27:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247445#post2247445</guid>
        </item>
                <item>
          <title>Limiting User Abilities</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247439#post2247439</link>
          <description><![CDATA[<p>There may be a way to do this that I have not yet found.  </p>
<p>When I have a user that is a Author and Viewer, they can only see their records.</p>
<p>Is there a way to remove the "change" link for the created by for a non admin user?</p>
<p>It would be nice if we could hide the "erase" link for non admin users.</p>
<p>If there is a way to do these things, please point me in that direction.</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Tue, 20 Aug 2024 11:07:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247439#post2247439</guid>
        </item>
                <item>
          <title>Ideas for an Auto Increment Field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247436#post2247436</link>
          <description><![CDATA[<p>I have read some posts but could not find exactly what I need.</p>
<p>I need to have a field in a section that contains the year '2024' a dash, then an auto incremented number.  This number could be from the Record Number field and I would set that to start at a certain value using the console.</p>
<p>The field also needs to be editable by an admin in the event the wrong number somehow was saved and the admin can then change it.</p>
<p>I'm just not sure the cleanest way to do this.  I imagine this can be done with a Generated Column field type, but I have not been successful yet.</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Tue, 20 Aug 2024 06:50:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247436#post2247436</guid>
        </item>
                <item>
          <title>Re: auto remove expired from database</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2247434#post2247434</link>
          <description><![CDATA[<p>In response to: <a href="https://www.interactivetools.com/forum/forum-posts.php?postNum=2234367#post2234367" rel="nofollow">https://www.interactivetools.com/forum/forum-posts.php?postNum=2234367#post2234367</a></p>
<p>I know this is a very old post, but I'm looking to do the same thing for old "On Call" records that after the removeDate should be removed.  The difference for me is that I need to have this work on several difference sections, not just one.  Would there be a way to apply this plugin to several sections?</p>
<p>Also, just curious, where is the cron job added for this to run automatically.  I did some testing with it and did not see the cron job anywhere.</p>

<p>Thanks in advance.</p>
<p>Phil Colvin</p>]]></description>
          <pubDate>Mon, 19 Aug 2024 13:54:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2247434#post2247434</guid>
        </item>
                <item>
          <title>Sorting Uploads</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246405#post2246405</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>I have not figured this one out yet.  Any help would be greatly appreciated.</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 30 Jan 2023 18:23:32 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246405#post2246405</guid>
        </item>
                <item>
          <title>Sorting Uploads</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246396#post2246396</link>
          <description><![CDATA[<p>I had some code working that was sorting uploads, but a client made some changes and now I can't seem to get things working again.</p>
<p>What I have is a Detail page that has uploads for meeting minutes.  the info2 field has the date of the upload.  </p>
<p>Below is the load records code and then the code to display and sort the uploads.  I'm hoping someone can see what I'm missing.  The uploads display, but are not sorted in descending order.</p>
<pre class="language-php"><code>&lt;?php
  /* STEP 1: LOAD RECORDS - Copy this PHP code block near the TOP of your page */
  
  // load viewer library
  $libraryPath = 'cmsb/lib/viewer_functions.php';
  $dirsToCheck = ['','../','../../','../../../','../../../../']; // add if needed: '/home3/epfctwot/public_html/'
  foreach ($dirsToCheck as $dir) { if (@include_once("$dir$libraryPath")) { break; }}
  if (!function_exists('getRecords')) { die("Couldn't load viewer library, check filepath in sourcecode."); }

  // load record from 'member_section_meeting_minutes'
  list($member_section_meeting_minutesRecords, $member_section_meeting_minutesMetaData) = getRecords(array(
    'tableName'   =&gt; 'member_section_meeting_minutes',
    'where'       =&gt; '', // load first record
    'loadUploads' =&gt; true,
    'allowSearch' =&gt; false,
    'limit'       =&gt; '1',
  ));
  $member_section_meeting_minutesRecord = @$member_section_meeting_minutesRecords[0]; // get first record
  if (!$member_section_meeting_minutesRecord) { dieWith404("Record not found!"); } // show error message if no record found

?&gt;</code></pre>

<pre class="language-php"><code>&lt;?php
//get uploads for current record
$uploads = mysql_select('uploads', "tableName='member_section_meeting_minutes' ORDER BY STR_TO_DATE(info2,'%m/%d/%Y') DESC");
?&gt;

&lt;?php foreach ($member_section_meeting_minutesRecord['member_section_meeting_minutes'] as $index =&gt; $upload): ?&gt;
&lt;a href="/cmsb/uploads/&lt;?php echo htmlencode($upload['urlPath']) ?&gt;" style="font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 300;"&gt;&lt;?php echo htmlencode($upload['info1']) ?&gt;&lt;/a&gt;            
&lt;br&gt;
&lt;?php endforeach ?&gt;</code></pre>

<p>Thanks</p>]]></description>
          <pubDate>Tue, 17 Jan 2023 22:10:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246396#post2246396</guid>
        </item>
                <item>
          <title>File Upload in Folder View</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246346#post2246346</link>
          <description><![CDATA[<p>Sure.  It may be a while as I have some other projects, but I'll post what I did and how.</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 12 Dec 2022 18:41:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246346#post2246346</guid>
        </item>
                <item>
          <title>File Upload in Folder View</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246344#post2246344</link>
          <description><![CDATA[<p>Jerry,</p>
<p>Thanks for the suggestion.  Based on what you shared, I may try the multi record editor and then use Bootstrap Accordions to group the years for the uploads.</p>
<p>Thanks!</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 12 Dec 2022 07:45:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246344#post2246344</guid>
        </item>
                <item>
          <title>File Upload in Folder View</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246342#post2246342</link>
          <description><![CDATA[<p>Has anyone found or used something that can organize uploaded files into folders that the user can click to open and view the files (uploads) in that folder.  The reason I ask is I have a client that upload meeting minutes to a page.  Over the years, it's just one long list of file links.  They would like it to be organized by at lease each year's minutes instead of one long list.</p>
<p>I know there are things our there, but I would like to keep it integrated with CMS Builder for managing the uploads.</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Sun, 11 Dec 2022 12:42:39 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246342#post2246342</guid>
        </item>
                <item>
          <title>PHP If checking for Uploads not working with PHP 8</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246091#post2246091</link>
          <description><![CDATA[<p>When I deleted the None previously, I also deleted the : which is what broke the page.  Keeping the : at the end of the IF statement and removing the None works on PHP 7.4 and 8.</p>
<p>Thanks for the suggestions.</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 15 Aug 2022 09:31:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246091#post2246091</guid>
        </item>
                <item>
          <title>PHP If checking for Uploads not working with PHP 8</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246089#post2246089</link>
          <description><![CDATA[<p>Jerry,</p>
<p>I just tried deleting the None and that breaks the whole page.  Just get a blank page when loading.</p>
<p>I can give the elseif a try a bit later and see if that works.  I'm not sure it will work since I have to test the first if to see if there are any photos (uploads) for that record.  That is what the None is doing now.</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 15 Aug 2022 07:43:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246089#post2246089</guid>
        </item>
                <item>
          <title>PHP If checking for Uploads not working with PHP 8</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2246087#post2246087</link>
          <description><![CDATA[<p>I'm sure there is an easy fix to this, but I was not able to find anything in the PHP Manual or other places I searched.</p>
<p>On one of my pages I am testing to see if there are any photos in the uploads for the section.  If there are, it displays their thumbnails.  If not, it just does not show anything. Below is the code that I'm using.  It works fine on PHP 7.4, but if I switch to 8, it throws an error and nothing on the page after the error will display.</p>
<p>The culprit seems to be the <strong>:None</strong> in the first If statement.  Works fine in 7.4, but not 8.  I've tried using the empty() or isset() functions, but I'm not doing something right.</p>
<pre class="language-markup"><code>                                &lt;div class="photo-gallery"&gt;
                                    &lt;div class="row photos" style="padding-bottom: 20px;"&gt;
                                        &lt;?php if (!$record['photos']):None ?&gt;
                                        &lt;?php else: ?&gt;
                                            &lt;?php foreach ($record['photos'] as $index =&gt; $upload): ?&gt;
                                                &lt;?php if ($index &gt;= 4) { continue; } // limit uploads shown ?&gt;
                                                &lt;div class="col-sm-6 col-md-4 col-lg-3 item"&gt;
                                                    &lt;a href="&lt;?php echo htmlencode($upload['urlPath']) ?&gt;" data-lightbox="photos&lt;?php echo htmlencode($record['num']) ?&gt;"&gt;&lt;img class="img-fluid" src="&lt;?php echo htmlencode($upload['urlPath']) ?&gt;"/&gt;&lt;/a&gt;
                                                &lt;/div&gt;                                                 
                                            &lt;?php endforeach ?&gt;
                                        &lt;?php endif ?&gt; 
                                    &lt;/div&gt;
                                &lt;/div&gt;
</code></pre>
<p>Thanks in advance for any help...</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 15 Aug 2022 07:04:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2246087#post2246087</guid>
        </item>
                <item>
          <title>An unexpected error occurred #&quot; for errors.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245823#post2245823</link>
          <description><![CDATA[<p>Thanks for the response.  </p>
<pre class="language-php"><code>error_reporting(E_ALL ^ E_DEPRECATED);</code></pre>
<p>Did not suppress the error, but the error_reporting(0) did.</p>
<p>Phil</p>]]></description>
          <pubDate>Fri, 11 Feb 2022 08:15:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245823#post2245823</guid>
        </item>
                <item>
          <title>An unexpected error occurred #&quot; for errors.</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245808#post2245808</link>
          <description><![CDATA[<p>We are running a Login Script from Sitelok for our pages that only members have access to. They need to support older versions of PHP so some of their code will throw a depreciated error. I have no problem with these errors being logged in the developer log, but I need to suppress any message from being displayed on the page. I have the box checked to Hide all warnings, but of course it shows the "An unexpected error occurred".</p>
<p>Is there any way to hide this message as well? I know the error exists, but since they need to support older versions, they can't change their code. I know we want to have error free code, but sometimes that is not under our control.</p>
<p>Thanks</p>
<p>Phil Colvin</p>]]></description>
          <pubDate>Fri, 04 Feb 2022 05:18:50 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245808#post2245808</guid>
        </item>
                <item>
          <title>Show Records Individually</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2245399#post2245399</link>
          <description><![CDATA[<p>I have a multi record section that contains a record for type of service a landscaping company provides such as Landscaping, Mowing and Excavating.  I would like to have a record in the section for each of the services.</p>
<p>For the viewer, I would like to select each of the records individually to show on the proper place on the page.  The foreach loop won't work as each area the record is to be displayed is laid out differently.</p>
<p>So I want to be able to show all of the records on the page, just individually on the page using a where clause using the title field in the record.</p>
<p>I know there has to be a simple way to do this, but I could not find any example.</p>
<p>Thanks</p>
<p>Phil</p>]]></description>
          <pubDate>Thu, 04 Feb 2021 19:58:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2245399#post2245399</guid>
        </item>
                <item>
          <title>Limit Thumbnails to a Single Record in a List Page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244673#post2244673</link>
          <description><![CDATA[<p>Works perfectly.  Thank you!</p>
<p>Phil</p>]]></description>
          <pubDate>Mon, 27 Apr 2020 11:28:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244673#post2244673</guid>
        </item>
                <item>
          <title>Limit Thumbnails to a Single Record in a List Page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244670#post2244670</link>
          <description><![CDATA[<p>I do want to show more than one image.  I only want to show the images related to the record in which they are associated.</p>
<p>the lightbox on the page is working.  It just allows the user to scroll through all of the images for all records.</p>]]></description>
          <pubDate>Mon, 27 Apr 2020 03:50:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244670#post2244670</guid>
        </item>
                <item>
          <title>Limit Thumbnails to a Single Record in a List Page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2244668#post2244668</link>
          <description><![CDATA[<p>Jerry,</p>
<p>I'm not sure I'm tracking with your suggestion.  The code I have works and the lightbox is working fine.  If this were a single record on the page, everything would be fine.  Since I am showing all of the records, the $upload array seems to have all of the uploads and the lightbox is seeing the upload of all records and not just the one the user clicks on.</p>
<p>If there is a way that each record and it's associated upload array values would be kept inside the foreach loop, it would probably work.  I'm not that level of PHP programmer to figure it out.</p>

<p>Phil</p>]]></description>
          <pubDate>Sun, 26 Apr 2020 15:53:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2244668#post2244668</guid>
        </item>
              </channel>
    </rss>
  