<?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%3Anorthernpenguin</link>
        <description></description>
        <pubDate>Thu, 16 Apr 2026 13:34:15 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Anorthernpenguin&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239419#post2239419</link>
          <description><![CDATA[<p>Greg:  Works!</p>
<p>Thanks Greg</p>]]></description>
          <pubDate>Fri, 19 Aug 2016 15:07:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239419#post2239419</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239417#post2239417</link>
          <description><![CDATA[<p>The $CURRECT_USER['position'] is defined per user in their specific account.  I have attached the file minutes.php</p>]]></description>
          <pubDate>Fri, 19 Aug 2016 14:49:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239417#post2239417</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239412#post2239412</link>
          <description><![CDATA[<p>When I login as a user, and go to the minutes.php page, I see all the BOD Minutes.  When I logoff, nothing changes, however if I try to go to the profile.php page, I am told that I am not logged in.</p>
<p>If I display $CURRENT_USER['position"], the value is "Director".  It shouldn't be.</p>]]></description>
          <pubDate>Fri, 19 Aug 2016 14:33:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239412#post2239412</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239404#post2239404</link>
          <description><![CDATA[<p>Steve:  It doesn't look like it.  The only .htaccess is the CMSB one (see below):</p>
<p><code># CMS PHP Config Files<br /># --------------------------------------------------------------------------------------------<br /># These config files attempt to reset PHP and Apache settings to standard values and turn off<br /># deprecated or problematic features that would otherwise cause errors or problems.<br />#<br /># NOTE: These files aren't supported on all servers, but on many they will prevent problems.<br /># However, they are OPTIONAL and you can safely remove these files if needed.<br /># --------------------------------------------------------------------------------------------<br /># .htaccess - For Apache, Apache PHP module and IIS with .htaccess emulator: <a href="http://php.net/configuration.changes" rel="nofollow">http://php.net/configuration.changes</a><br /># .user.ini - For servers running PHP in CGI/FastCGI mode: <a href="http://php.net/configuration.file.per-user" rel="nofollow">http://php.net/configuration.file.per-user</a><br /># php.ini   - For servers that support custom php.ini files: <a href="http://php.net/configuration.file" rel="nofollow">http://php.net/configuration.file</a><br /># --------------------------------------------------------------------------------------------<br /># *** IMPORTANT!!! If you make any changes to this file save a backup copy as &lt;filename&gt;.backup<br /># so you have a backup in case your changes get overwritten next time you upgrade.<br /><br /># .htaccess settings<br /># --------------------------------------------------------------------------------------------<br /># Docs: <a href="http://php.net/configuration.changes" rel="nofollow">http://php.net/configuration.changes</a><br /># Docs: <a href="http://php.net/manual/en/ini.php" rel="nofollow">http://php.net/manual/en/ini.php</a><br /><br /># Apache: disable directory browsing<br />Options -Indexes<br /><br /># Apache: disable mod_security (some of the admin menus allow you to define SQL which mod_security detects and then denied access to)<br />&lt;IfModule mod_security.c&gt;<br />  SecFilterEngine Off<br />  SecFilterScanPOST Off<br />&lt;/IfModule&gt;<br /><br /># Apache: disable mod_gzip for cms admin folder (tinymce gzips javascript and sometimes things get double encoded causing errors)<br />&lt;IfModule mod_gzip.c&gt;<br />  mod_gzip_on No<br />&lt;/IfModule&gt;<br /><br /># Apache: Fix issue where some servers send wrong content-type and FireFox won't load stylesheets<br />&lt;ifModule mod_mime.c&gt;<br />  AddType text/css .css<br />&lt;/ifModule&gt;<br /><br /># PHP: turn off deprecated PHP features and increase max upload size allowed<br />&lt;IfModule mod_php5.c&gt;<br />  php_value date.timezone UTC<br />  #php_value disable_functions none # Entry can only be set in php.ini or httpd.conf<br />  php_value max_input_vars 2000<br />  php_value open_basedir none<br />  php_value post_max_size 101M<br />  php_value upload_max_filesize 101M<br />  # php_flag zlib.output_compression Off<br />&lt;/IfModule&gt;<br /><br /># Identify loaded modules<br />&lt;IfModule mod_env.c&gt;<br />  SetEnv CMSB_APACHE_HTACCESS 1<br />  SetEnv CMSB_MOD_ENV 1<br />  &lt;IfModule mod_php5.c&gt;<br />    SetEnv CMSB_MOD_PHP5 1<br />  &lt;/IfModule&gt;<br />  &lt;IfModule mod_fcgid.c&gt;<br />    SetEnv CMSB_MOD_FCGID 1<br />  &lt;/IfModule&gt;  <br />  &lt;IfModule mod_suphp.c&gt;<br />    SetEnv CMSB_MOD_SUPHP 1<br />    #suPHP_Engine on<br />    #suPHP_ConfigPath /full/path/to/folder/with/php.ini/in/it<br />  &lt;/IfModule&gt;<br />  &lt;IfModule mod_security.c&gt;<br />    SetEnv CMSB_MOD_SECURITY1 1<br />  &lt;/IfModule&gt;<br />  &lt;IfModule mod_security2.c&gt;<br />    SetEnv CMSB_MOD_SECURITY2 1<br />  &lt;/IfModule&gt;<br />  &lt;IfModule mod_rewrite.c&gt;<br />    SetEnv CMSB_MOD_REWRITE 1<br />  &lt;/IfModule&gt;<br />&lt;/IfModule&gt;<br /><br /># SECURITY: Deny access to common configuration and data files, eg: .htaccess, php.ini, .user.ini, php_errors.log, backup.sql, etc<br />&lt;FilesMatch "\.(htaccess|ini|log|sql)$"&gt;<br />Order Deny,Allow<br />Deny from All<br />&lt;/FilesMatch&gt;<br /># SECURITY: Deny access to common configuration and data files with php extensions, eg: settings.dat.php, etc<br />&lt;FilesMatch "\.(dat|defaultSqlData|log|sql)\.php$"&gt;<br />Order Deny,Allow<br />Deny from All<br />&lt;/FilesMatch&gt;<br /><br /># Identify loaded config files - repurpose some lesser used php.ini directives to indicate which config files loaded<br />&lt;IfModule mod_php5.c&gt;<br />  php_value highlight.html '#000000; CMSB_CONFIG_HTACCESS'<br />  php_value date.default_latitude '11.1111 CMSB_CONFIG_HTACCESS'<br />&lt;/IfModule&gt;</code></p>
]]></description>
          <pubDate>Fri, 19 Aug 2016 09:49:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239404#post2239404</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239401#post2239401</link>
          <description><![CDATA[<p>Damon:  For some reason Websitemembership plugin won't let me logoff this page (minutes).  It does actually logoff, but the value of $CURRENT_User['position'] is still "director", so it displays the BOD Minutes, which it shouldn't.</p>
<p>The code I use to logoff is as follows:</p>
<p><code>&lt;?php if ($CURRENT_USER['position'] == 'Director'): ?&gt;<br />&lt;div style="border: 1px solid #000; background-color: #EEE; padding: 10px; width: 500px"&gt;<br />&lt;p&gt;&lt;a href='directors.php'&gt;Board of Directors&lt;/a&gt;&lt;br /&gt;<br />&lt;a href='motions.php'&gt;Motions &amp; Financial Statements&lt;/a&gt;&lt;br /&gt;<br />&lt;a href='minutes.php'&gt;Minutes &amp; Record of Proceedings&lt;/a&gt;&lt;br /&gt;<br />&lt;a href='profile.php?action=logoff'&gt;Logoff&lt;/a&gt;&lt;/p&gt;<br />&lt;/div&gt;</code></p>
<p>Any ideas how I can force the logoff and not display the BOD Minutes?</p>
<p>Ragi</p>]]></description>
          <pubDate>Thu, 18 Aug 2016 19:18:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239401#post2239401</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239400#post2239400</link>
          <description><![CDATA[<p>Damon:  Found it!  My client decided to change the catalog labels without telling me.  The code looked for "Board of Director Meetings".  The client changed it to "Board of Director Minutes" prior to publishing the 2016 minutes.</p>
<p>So, that is one problem solved.  The other issue is why I can't logout.  I thought it might be my cache, but I flushed it and still see everything when I go to this page.</p>]]></description>
          <pubDate>Thu, 18 Aug 2016 18:27:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239400#post2239400</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239389#post2239389</link>
          <description><![CDATA[<p>Damon:  Is there anyway to write the output to a file instead of trying to scroll through a browser window?</p>]]></description>
          <pubDate>Wed, 17 Aug 2016 13:55:55 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239389#post2239389</guid>
        </item>
                <item>
          <title>Bootstrap Collapse</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239386#post2239386</link>
          <description><![CDATA[<p>I must have inadvertently deleted  &lt;?php $counter++; ?&gt;</p>
<p>It works now.</p>
<p>Thanks Damon! </p>]]></description>
          <pubDate>Wed, 17 Aug 2016 11:38:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239386#post2239386</guid>
        </item>
                <item>
          <title>Bootstrap Collapse</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239383#post2239383</link>
          <description><![CDATA[<p>Damon:  That worked great, except that the default has all the accordions open.  Is there anyway to set them such that the first one is open and the others closed ?</p>]]></description>
          <pubDate>Wed, 17 Aug 2016 11:19:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239383#post2239383</guid>
        </item>
                <item>
          <title>Bootstrap Collapse</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239375#post2239375</link>
          <description><![CDATA[<p>Hi</p>
<p>I am trying to use Bootstrap Collapse with a CMSB multiple record editor.  Below is the original code for the Bootstrap Collapse:</p>
<p><code>&lt;!DOCTYPE html&gt;<br />&lt;html&gt;<br />&lt;head&gt;<br />  &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;<br />  &lt;link rel="stylesheet" href="<a href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="nofollow">http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css</a>"&gt;<br />  &lt;script src="<a href="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" rel="nofollow">https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js</a>"&gt;&lt;/script&gt;<br />  &lt;script src="<a href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" rel="nofollow">http://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js</a>"&gt;&lt;/script&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br /><br />&lt;div class="container"&gt;<br />  &lt;h2&gt;Accordion Example&lt;/h2&gt;<br />  &lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The &lt;strong&gt;data-parent&lt;/strong&gt; attribute makes sure that all collapsible elements under the specified parent will be closed when one of the collapsible item is shown.&lt;/p&gt;<br />  &lt;div class="panel-group" id="accordion"&gt;<br />    &lt;div class="panel panel-default"&gt;<br />      &lt;div class="panel-heading"&gt;<br />        &lt;h4 class="panel-title"&gt;<br />          &lt;a data-toggle="collapse" data-parent="#accordion" href="#collapse1"&gt;Collapsible Group 1&lt;/a&gt;<br />        &lt;/h4&gt;<br />      &lt;/div&gt;<br />      &lt;div id="collapse1" class="panel-collapse collapse in"&gt;<br />        &lt;div class="panel-body"&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit,<br />        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br />        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div class="panel panel-default"&gt;<br />      &lt;div class="panel-heading"&gt;<br />        &lt;h4 class="panel-title"&gt;<br />          &lt;a data-toggle="collapse" data-parent="#accordion" href="#collapse2"&gt;Collapsible Group 2&lt;/a&gt;<br />        &lt;/h4&gt;<br />      &lt;/div&gt;<br />      &lt;div id="collapse2" class="panel-collapse collapse"&gt;<br />        &lt;div class="panel-body"&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit,<br />        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br />        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div class="panel panel-default"&gt;<br />      &lt;div class="panel-heading"&gt;<br />        &lt;h4 class="panel-title"&gt;<br />          &lt;a data-toggle="collapse" data-parent="#accordion" href="#collapse3"&gt;Collapsible Group 3&lt;/a&gt;<br />        &lt;/h4&gt;<br />      &lt;/div&gt;<br />      &lt;div id="collapse3" class="panel-collapse collapse"&gt;<br />        &lt;div class="panel-body"&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit,<br />        sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,<br />        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;/div&gt;<br />      &lt;/div&gt;<br />    &lt;/div&gt;<br />  &lt;/div&gt;<br />&lt;/div&gt;<br />    <br />&lt;/body&gt;<br />&lt;/html&gt;<br /></code></p>
<p>Here is my code:</p>
<p><code>&lt;?php include 'common/includes/php_header.inc'; ?&gt;<br />&lt;?php<br />  // load records from 'training_resources'<br />  list($training_resourcesRecords, $training_resourcesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'training_resources',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br /><br /><br />?&gt;<br />&lt;!DOCTYPE html&gt;<br />&lt;html&gt;<br />&lt;head&gt;<br />  &lt;meta charset="UTF-8"&gt;<br />  &lt;meta http-equiv="X-UA-Compatible" content="IE=edge"&gt;<br />  &lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;<br />  &lt;link rel="shortcut icon" href="assets/images/air-cadet-league-300x332-73.png" type="image/x-icon"&gt;<br />  &lt;meta name="description" content=""&gt;<br />  &lt;title&gt;SSC Resources&lt;/title&gt;<br />  &lt;link rel="stylesheet" href="<a href="https://fonts.googleapis.com/css?family=Roboto:700" rel="nofollow">https://fonts.googleapis.com/css?family=Roboto:700</a>,400&amp;amp;subset=cyrillic,latin,greek,vietnamese"&gt;<br />  &lt;link rel="stylesheet" href="assets/iconfont-plugin/bootstrap-material-design-font.css"&gt;<br />  &lt;link rel="stylesheet" href="assets/bootstrap-material-design-font/css/material.css"&gt;<br />  &lt;link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css"&gt;<br />  &lt;link rel="stylesheet" href="assets/socicon/css/socicon.min.css"&gt;<br />  &lt;link rel="stylesheet" href="assets/mobirise/css/style.css"&gt;<br />  &lt;link rel="stylesheet" href="assets/mobirise/css/mbr-additional.css" type="text/css"&gt;<br /><br />&lt;/head&gt;<br />&lt;body&gt;<br /><br />&lt;section class="mbr-navbar mbr-navbar--freeze mbr-navbar--absolute mbr-navbar--sticky mbr-navbar--collapsed" id="menu-44"&gt;<br />    &lt;div class="mbr-navbar__section mbr-section"&gt;<br />        &lt;div class="mbr-section__container container"&gt;<br />            &lt;div class="mbr-navbar__container"&gt;<br />                &lt;div class="mbr-navbar__column mbr-navbar__column--s mbr-navbar__brand"&gt;<br />                    &lt;span class="mbr-navbar__brand-link mbr-brand mbr-brand--inline"&gt;<br />                        &lt;span class="mbr-brand__logo"&gt;&lt;a href="index.html"&gt;&lt;img class="mbr-navbar__brand-img mbr-brand__img" src="assets/images/air-cadet-league-300x332-73.png" alt="BCPC"&gt;&lt;/a&gt;&lt;/span&gt;<br />                        &lt;span class="mbr-brand__name"&gt;&lt;a class="mbr-brand__name text-white" href="<a href="https://bc-aircadetleague.com" rel="nofollow">https://bc-aircadetleague.com</a>"&gt;BC Provincial Committee - Air Cadet League&lt;br&gt;&lt;/a&gt;&lt;/span&gt;<br />                    &lt;/span&gt;<br />                &lt;/div&gt;<br />                &lt;div class="mbr-navbar__hamburger mbr-hamburger text-white"&gt;&lt;span class="mbr-hamburger__line"&gt;&lt;/span&gt;&lt;/div&gt;<br />                &lt;div class="mbr-navbar__column mbr-navbar__menu"&gt;<br />                    &lt;?php include 'common/includes/menu-2.inc'; ?&gt;<br />                &lt;/div&gt;<br />            &lt;/div&gt;<br />        &lt;/div&gt;<br />    &lt;/div&gt;<br />&lt;/section&gt;<br /><br />&lt;section class="mbr-section mbr-section--relative mbr-section--fixed-size mbr-after-navbar" id="content4-43" style="background-color: rgb(41, 105, 176);"&gt;<br /><br />    &lt;div class="mbr-section__container mbr-section__container--std-top-padding mbr-section__container--sm-bot-padding mbr-section-title container"&gt;<br />        &lt;div class="mbr-header mbr-header--center mbr-header--wysiwyg row"&gt;<br />            &lt;div class="col-sm-8 col-sm-offset-2"&gt;<br />                &lt;h3 class="mbr-header__text"&gt;SSC Resources&lt;/h3&gt;<br /><br />            &lt;/div&gt;<br />        &lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;div class="mbr-section__container container"&gt;<br />        &lt;div class="mbr-section__row row"&gt;<br />            &lt;div class="mbr-section__col col-xs-12 col-sm-12"&gt;<br /><br />                &lt;div class="mbr-section__container mbr-section__container--middle"&gt;<br />                    &lt;div class="mbr-header mbr-header--reduce mbr-header--center mbr-header--wysiwyg"&gt;<br />                        &lt;h3 class="mbr-header__text"&gt;&lt;/h3&gt;<br />                    &lt;/div&gt;<br />                &lt;/div&gt;<br />                &lt;div class="mbr-section__container mbr-section__container--last"&gt;<br />                    &lt;div class="mbr-article mbr-article--wysiwyg"&gt;<br />                   <span style="color:#ff0000;"> &lt;div class="container"&gt;</span><br /><span style="color:#ff0000;">  &lt;div class="panel-group" id="accordion"&gt;</span><br /><span style="color:#ff0000;">&lt;?php foreach ($training_resourcesRecords as $record): ?&gt;</span><br /><span style="color:#ff0000;">    &lt;div class="panel panel-default"&gt;</span><br /><span style="color:#ff0000;">      &lt;div class="panel-heading"&gt;</span><br /><span style="color:#ff0000;">        &lt;h4 class="panel-title"&gt;</span><br /><span style="color:#ff0000;">          &lt;a data-toggle="collapse" data-parent="#accordion" <span style="color:#0000ff;">href="#collapse"+"&lt;?php echo htmlencode($record['num']) ?&gt;"&gt;</span>&lt;/a&gt;</span><br /><span style="color:#ff0000;">        &lt;?php echo htmlencode($record['title']) ?&gt;&lt;/h4&gt;</span><br /><span style="color:#ff0000;">      &lt;/div&gt;</span><br /><span style="color:#ff0000;">      &lt;div <span style="color:#0000ff;">id="'collapse'+'&lt;?php echo htmlencode($record['num']) ?&gt;'"</span> class="panel-collapse collapse in"&gt;</span><br /><span style="color:#ff0000;">        &lt;div class="panel-body"&gt;</span><br /><span style="color:#ff0000;">        &lt;?php echo $record['content']; ?&gt;</span><br /><span style="color:#ff0000;">        &lt;/div&gt;</span><br /><span style="color:#ff0000;">      &lt;/div&gt;</span><br /><span style="color:#ff0000;">  &lt;/div&gt;</span><br /><span style="color:#ff0000;">  &lt;?php endforeach ?&gt;</span><br /><span style="color:#ff0000;">&lt;/div&gt;</span><br />&lt;/section&gt;<br /><br />&lt;?php include 'common/includes/footer.inc'; ?&gt;<br /><br />  &lt;script src="assets/web/assets/jquery/jquery.min.js"&gt;&lt;/script&gt;<br />  &lt;script src="assets/bootstrap/js/bootstrap.min.js"&gt;&lt;/script&gt;<br />  &lt;script src="<a href="https://maps.googleapis.com/maps/api/js" rel="nofollow">https://maps.googleapis.com/maps/api/js</a>"&gt;&lt;/script&gt;<br />  &lt;script src="assets/smooth-scroll/SmoothScroll.js"&gt;&lt;/script&gt;<br />  &lt;script src="assets/mobirise/js/script.js"&gt;&lt;/script&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;<br /></code></p>
<p>Basically, the records are displayed, with the Bootstrap Collapse open, and not collapsed as it should be.  I believe the issue may be the code in blue above.</p>
<p>Ragi</p>]]></description>
          <pubDate>Tue, 16 Aug 2016 20:34:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239375#post2239375</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239370#post2239370</link>
          <description><![CDATA[<p>Damon:  Something really weird is going on.  I tried your suggestion and now I am really mystified.</p>
<p>First, after implementing your suggestion, only the title "Board of Directors Meeting Minutes" showed up (without login).  Then I logged in, and go exactly the same thing (no minutes).</p>
<p>So, I logged out, logged into CMSB and changed the 2016 Minutes from "private" to "public" and went back to the website.  No difference (logged in or out).</p>
<p>I reset the "public" in line 149 back to "private" and everything went back to what it was before, except that I can't logout, but only for the minutes.php page.  All BOD minutes up to 2015 show, nothing after (original condition).  If I go to the BOD page, I don't see their addresses &amp; phone numbers unless I login again.</p>
<p>This is very confusing....!</p>
<p>Ragi</p>]]></description>
          <pubDate>Mon, 15 Aug 2016 15:35:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239370#post2239370</guid>
        </item>
                <item>
          <title>CMSB Acting Weirdly</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239357#post2239357</link>
          <description><![CDATA[<p>Hi Guys</p>
<p>Well, either CMSB is acting weirdly or my code is doing something it was not designed to do!</p>
<p>Environment: CMSB v3.05 with Website Membership v1.11/Geocoder 1.05/Newsletter Builder 3.04</p>
<p>Website:  <a href="http://uccvi.com" rel="nofollow">http://uccvi.com</a></p>
<p>The issue is this:  There is a private members area that only Directors can access (Website Membership).  Once in (see attached minutes.php), they will see additional documents not available to the general public.  Specifically the BOD Minutes.  For some reason, the 2016 Minutes don't show at all, and I don't understand why as they are identical to other year's Minutes.</p>
<p>I am very confused!</p>
<p>Ragi</p>
]]></description>
          <pubDate>Fri, 12 Aug 2016 16:21:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239357#post2239357</guid>
        </item>
                <item>
          <title>Multiple Forms on one web page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239192#post2239192</link>
          <description><![CDATA[<p>Daryl:  you're a genius!</p>
<p>It worked.  Thank you.</p>
<p>Ragi</p>]]></description>
          <pubDate>Tue, 12 Jul 2016 15:55:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239192#post2239192</guid>
        </item>
                <item>
          <title>Multiple Forms on one web page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239189#post2239189</link>
          <description><![CDATA[<p>Daryl:  No, I haven't tried the 'where'.  Just tried it.  No difference.</p>
<p>Attached are all 3 files.</p>
<p>Ragi</p>]]></description>
          <pubDate>Tue, 12 Jul 2016 15:27:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239189#post2239189</guid>
        </item>
                <item>
          <title>Multiple Forms on one web page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239164#post2239164</link>
          <description><![CDATA[<p>Daryl:  Actually, what happens is the the first dropdown, "Select a year in history" selects a record from $historical_notesRecord.  That works perfectly, no issues.  The second dropdown, "Select an award" selects a record from $awards_trophiesRecords.  But no matter what I do, it only displays the 1st record.  </p>
<p>You can try it on my sandbox at <a href="http://742sandbox.northernpenguin.com/history.php" rel="nofollow">http://742sandbox.northernpenguin.com/history.php</a></p>
<p>Ragi</p>]]></description>
          <pubDate>Fri, 08 Jul 2016 16:01:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239164#post2239164</guid>
        </item>
                <item>
          <title>Multiple Forms on one web page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239149#post2239149</link>
          <description><![CDATA[<p>Hi</p>
<p>I have created a web page that has two (for now) forms, each connected to different multi-record table.  The problem is, no matter what I do, the second form always displays the top record and nothing else.</p>
<p>This is the top code:</p>
<p><code>&lt;?php include 'common/includes/php_header.inc'; ?&gt;<br />&lt;?php<br />  // load record from 'history_overview'<br />  list($history_overviewRecords, $history_overviewMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'history_overview',<br />    'where'       =&gt; '', // load first record<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $history_overviewRecord = @$history_overviewRecords[0]; // get first record<br />  if (!$history_overviewRecord) { dieWith404("Record not found!"); } // show error message if no record found<br /><br /><br />  // load list records from 'historical_notes'<br />  list($historical_notesRecords, $historical_notesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'historical_notes',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br /><br />  // load records from 'awards_trophies'<br />  list($awards_trophiesRecords, $awards_trophiesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'awards_trophies',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br />?&gt;</code></p>
<p>These are the 2 forms:</p>
<p><code>&lt;table&gt;<br /> &lt;tr&gt;<br /> &lt;td&gt;<br />  &lt;form method="get" action="historyNotes.php?"&gt;<br />  &lt;h2&gt;Select a year in history:&lt;/h2&gt;<br />    &lt;select name="year"&gt;<br />      &lt;option value=""&gt;--&lt;/option&gt;<br />      &lt;?php foreach ($historical_notesRecords as $listRecord): ?&gt;<br />        &lt;option value="&lt;?php echo htmlencode($listRecord['num']); ?&gt;" &lt;?php selectedIf($listRecord['num'], @$_REQUEST['year']); ?&gt;&gt;<br />          &lt;?php echo htmlencode($listRecord['title']); ?&gt;<br />        &lt;/option&gt;<br />      &lt;?php endforeach; ?&gt;<br />    &lt;/select&gt;<br />    &lt;br&gt;<br />    &lt;input type="submit" value="Submit"&gt;<br />    &lt;/form&gt;<br /> &lt;/td&gt;<br /> &lt;td&gt;<br /> &lt;form method="get" action="historyAwards.php?"&gt;<br />  &lt;h2&gt;Select an award:&lt;/h2&gt;<br />    &lt;select name="title"&gt;<br />      &lt;option value=""&gt;--&lt;/option&gt;<br />      &lt;?php foreach ($awards_trophiesRecords as $awardRecord): ?&gt;<br />        &lt;option value="&lt;?php echo htmlencode($awardRecord['num']); ?&gt;" &lt;?php selectedIf($awardRecord['num'], @$_REQUEST['award']); ?&gt;&gt;<br />          &lt;?php echo htmlencode($awardRecord['title']); ?&gt;<br />        &lt;/option&gt;<br />      &lt;?php endforeach; ?&gt;<br />    &lt;/select&gt;<br />    &lt;br&gt;<br />    &lt;input type="submit" value="Submit"&gt;<br />&lt;/form&gt;<br /> &lt;/td&gt;<br /> &lt;/tr&gt;<br /><br />&lt;/table&gt;<br /></code></p>
<p>Any ideas would be greatly appreciated!</p>
<p>Ragi</p>]]></description>
          <pubDate>Thu, 07 Jul 2016 09:39:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239149#post2239149</guid>
        </item>
                <item>
          <title>Download Mail Plugin &amp; CMSB 3.05</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239054#post2239054</link>
          <description><![CDATA[<p>Damon:  That worked great, thank you!</p>
<p>Ragi</p>]]></description>
          <pubDate>Fri, 10 Jun 2016 11:32:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239054#post2239054</guid>
        </item>
                <item>
          <title>Download Mail Plugin &amp; CMSB 3.05</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239049#post2239049</link>
          <description><![CDATA[<p>Damon:  well, I downloaded and configured the plugin.  It was relatively easy.  Its now setup to access my Gmail account.  However, whenever i run the plugin, I get the following error:</p>
<p><code>Checking mail account: Gmail<br />Connecting to IMAP host: imap.gmail.com<br />IMAP error: Can not authenticate to IMAP server: [ALERT] Application-specific password required: <a href="https://support.google.com/accou" rel="nofollow">https://support.google.com/accou</a></code></p>
<p>Not exactly sure what its trying to tell me here!</p>
<p>Ragi</p>]]></description>
          <pubDate>Thu, 09 Jun 2016 18:10:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239049#post2239049</guid>
        </item>
                <item>
          <title>Download Mail Plugin &amp; CMSB 3.05</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239048#post2239048</link>
          <description><![CDATA[<p>Thanks Damon!</p>
<p>Ragi</p>]]></description>
          <pubDate>Thu, 09 Jun 2016 14:20:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239048#post2239048</guid>
        </item>
                <item>
          <title>CMSB 3.05 - Powered By still displaying on registered version</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239047#post2239047</link>
          <description><![CDATA[<p>That was weird.... for some reason its fine now.</p>
<p>Ragi</p>]]></description>
          <pubDate>Thu, 09 Jun 2016 14:19:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239047#post2239047</guid>
        </item>
                <item>
          <title>Download Mail Plugin &amp; CMSB 3.05</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239040#post2239040</link>
          <description><![CDATA[<p>Before I purchase the Download Mail plugin, can you tell me if it was tested with CMSB 3.xx?  I noticed that the last update was in 2010.</p>
<p>Thank you</p>
<p>Ragi</p>]]></description>
          <pubDate>Wed, 08 Jun 2016 22:48:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239040#post2239040</guid>
        </item>
                <item>
          <title>CMSB 3.05 - Powered By still displaying on registered version</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239039#post2239039</link>
          <description><![CDATA[<p>Hi Guys</p>
<p>This is my second installation of CMSB 3.05 and for some reason the "Powered by" text at the bottom of my website is still showing up even though I have registered the instance.  It worked fine on my 1st instance, but for some reason it doesn't want to go away on this instance!</p>
<p>Ragi</p>]]></description>
          <pubDate>Wed, 08 Jun 2016 22:15:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239039#post2239039</guid>
        </item>
                <item>
          <title>Notice: CMSB v3.05 Beta 1 (May 23, 2016) - Free (Powered By) Version &amp; New Admin Menus</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2238949#post2238949</link>
          <description><![CDATA[<p>Thanks Dave</p>
<p>As for my server, that is not an issue as my provider is very accommodating.  Since my clients are the only ones on this server, I can request changes if needed.</p>
<p>Ragi</p>]]></description>
          <pubDate>Tue, 24 May 2016 14:34:23 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2238949#post2238949</guid>
        </item>
                <item>
          <title>Notice: CMSB v3.05 Beta 1 (May 23, 2016) - Free (Powered By) Version &amp; New Admin Menus</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2238942#post2238942</link>
          <description><![CDATA[<p>Famous last words!  Logged in again and got the following:</p>
<p><code>E_WARNING: is_file(): open_basedir restriction in effect. File(///bin/php.exe) is not within the allowed path(s): (/home/sekaly:/usr/lib/php:/usr/local/lib/php:/tmp)</code></p>
<p><code>#0  _errorlog_logErrorRecord() called at [/home/sekaly/public_html/cmsb/lib/errorlog_functions.php:60]<br />#1  _errorlog_catchRuntimeErrors()<br />#2  is_file() called at [/home/sekaly/public_html/cmsb/lib/menus/admin/general.php:59]<br />#3  _getPhpExecutablePath() called at [/home/sekaly/public_html/cmsb/lib/menus/admin/general.php:952]<br />#4  _getContent()<br />#5  call_user_func_array() called at [/home/sekaly/public_html/cmsb/lib/common.php:1877]<br />#6  ob_capture() called at [/home/sekaly/public_html/cmsb/lib/menus/admin/general.php:22]<br />#7  include(/home/sekaly/public_html/cmsb/lib/menus/admin/general.php) called at [/home/sekaly/public_html/cmsb/lib/admin_functions.php:441]<br />#8  showInterface() called at [/home/sekaly/public_html/cmsb/lib/menus/admin/actionHandler.php:30]<br />#9  admin_dispatchAction() called at [/home/sekaly/public_html/cmsb/lib/menus/admin/actionHandler.php:25]<br />#10 include(/home/sekaly/public_html/cmsb/lib/menus/admin/actionHandler.php) called at [/home/sekaly/public_html/cmsb/lib/menus/default/actionHandler.php:143]<br />#11 _redirectForCustomMenus() called at [/home/sekaly/public_html/cmsb/lib/menus/default/actionHandler.php:30]<br />#12 include(/home/sekaly/public_html/cmsb/lib/menus/default/actionHandler.php) called at [/home/sekaly/public_html/cmsb/admin.php:40]<br /></code></p>
<p>Ragi</p>]]></description>
          <pubDate>Mon, 23 May 2016 20:03:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2238942#post2238942</guid>
        </item>
                <item>
          <title>Notice: CMSB v3.05 Beta 1 (May 23, 2016) - Free (Powered By) Version &amp; New Admin Menus</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2238941#post2238941</link>
          <description><![CDATA[<p>Dave:</p>
<p>Done.  No errors so far.  I have emailed you as requested.</p>
<p>Ragi</p>]]></description>
          <pubDate>Mon, 23 May 2016 19:35:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2238941#post2238941</guid>
        </item>
              </channel>
    </rss>
  