<?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%3Acricket7475</link>
        <description></description>
        <pubDate>Sat, 18 Apr 2026 04:04:20 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Acricket7475&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Dave] Web Membership Profile - Error checking a serial number</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218077#post2218077</link>
          <description><![CDATA[Hi Dave,<br /><br />Thanks so much for this - I had been looking at preg_match as an option but wasn't sure how to proceed.  This and the resource link are extremely helpful.  <br /><br />I plugged in the following and it's working brilliantly:<br /> <code>// serial error checking <br />  $_REQUEST['serial'] = preg_replace(&quot;/[^\da-z]/i&quot;, '', @$_REQUEST['serial']); // remove chars that aren't a digit or a letter <br />  $isValidSerial      = preg_match(&quot;/^\d\d[a-z]\d\d\d\d\d\d$/i&quot;, $_REQUEST['serial']); // valid format: 2 numbers, 1 letter, 6 numbers <br />  if     (!$_REQUEST['serial'])                { $errorsAndAlerts .= &quot;No serial number entered!&lt;br/&gt;\n&quot;; } <br />  elseif (!$isValidSerial)                     { $errorsAndAlerts .= &quot;You must enter a valid serial number.&lt;br/&gt;\n&quot;; }</code><br /><br />As much as I would like to give our users some hints we're concerned about competitors accessing info only meant for product users.  So I get to be a generic as possible with my error messages.<br /><br />Thanks again - your support is always awesome!<br /><br />Cricket7475<br />]]></description>
          <pubDate>Thu, 11 Oct 2012 09:29:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218077#post2218077</guid>
        </item>
                <item>
          <title>Web Membership Profile - Error checking a serial number</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218070#post2218070</link>
          <description><![CDATA[I've implemented the website membership plugin on our site and it's working wonderfully.  Shortly after launching I got a request from Marketing to enhance security by adding a serial number field with error checking.<br /> <br />Here's what I'm trying to do:<br /> - Limit entry to 9 characters (and stripping out any extra spaces introduced by the form user)<br /> - First two must be numbers (i.e. last two digits of a year &quot;12&quot; or &quot;13&quot; etc.)<br /> - Third must be a letter (entered as either upper or lower case)<br /> - The last six should be numbers<br /><br />Based on this post:<br /><a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Field_Validation_P92584/gforum.cgi?post=85966">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/Field_Validation_P92584/gforum.cgi?post=85966</a><br /><br />I've modified the code for my purposes as such:<br /><br /><code>/// Check Serial Number <br />   function format_serial_number($serial){ <br />	//strip out spaces  <br />      $tmpSerial = str_replace(&quot; &quot;,&quot;&quot;,$serial);  <br />      $tmpSerial = str_split($tmpSerial); <br />       <br />      if(@$tmpSerial[0]==1 &amp;&amp; @$tmpSerial[1]==2|3|4|5 &amp;&amp; @$tmpSerial[2]==a-z){ //number is in correct format.  Return it as is. <br />         <br />        $serial = implode($tmpSerial); <br />      } <br />      else{ //error.  The number is in an invalid format. <br />         <br />        return false;  <br />      } <br />       <br />      return $serial;  <br />    }<br />	//format serial number. <br />    $serial = format_serial_number(@$_REQUEST['serial']); <br />    if(!$serial){ $errorsAndAlerts .= &quot;You must enter a valid serial number! &lt;br/&gt;\n&quot;;}</code><br /><br />My questions:<br /> - Will the '$tmpSerial[1]==2|3|4|5' work to display either 2, 3, 4 or 5?  <br /> - How do I tell it to allow a-z and A-Z?<br /> - How would I keep the field limited to 9 total characters?<br /><br />Haven't had a chance to test anything out yet - was hoping to have more coded but got stuck.  Any help is appreciated!<br /><br />Cricket7475<br />]]></description>
          <pubDate>Wed, 10 Oct 2012 13:33:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218070#post2218070</guid>
        </item>
                <item>
          <title>Re: [greg] comments w/membership login redirect</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217935#post2217935</link>
          <description><![CDATA[Hi Greg,<br /><br />Thanks for the response.  So you know what I'm working with:  CMS Builder 2.14 and Website Membership Plugin 1.07.<br /><br />I'm not using the comments plugin, and so attempted to add the code to a test page I've been working on.  Got an error message when trying to find the best placement for the snippet you provided.  Eventually tried placing it at the very end of my page just before the closing body tag and no more visible errors on the page, but in the source I get the same error (minus actual DB info):<br /><br /><code>Warning: Cannot modify header information - headers already sent by (output started at /home/.../support-test.php:41) in /home/.../support-test.php on line 348</code><br /><br />The line number is the line where the snippet has been inserted and as I moved it up and down in the code that line number would change accordingly.    And since the cookie isn't being added my redirect isn't working.  <br /><br />Any ideas?  <br /><br />Thanks!<br />Cricket7475<br />]]></description>
          <pubDate>Wed, 26 Sep 2012 10:28:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217935#post2217935</guid>
        </item>
                <item>
          <title>Re: [charnushka] comments w/membership login redirect</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217891#post2217891</link>
          <description><![CDATA[I'm having this same issue - when changing this:<br /><code>$GLOBALS['WEBSITE_LOGIN_POST_LOGIN_URL']  = '/';</code><br />to this:<br /><code>$GLOBALS['WEBSITE_LOGIN_POST_LOGIN_URL']  = '';</code><br /><br />and running through the sames steps as charnuska (minus the comments plugin which I'm not using) the link now directs nowhere, essentially 'working' as you've described - it 'keeps them on the same page' which in this example is the login page.  <br /><br />I'm looking for an immediate redirect back to the original page - the one the user initially clicked on to login.  Is this possible? I also couldn't tell if there was ever a solution posted.<br /><br />Thanks,<br />Cricket7475<br />]]></description>
          <pubDate>Thu, 20 Sep 2012 15:30:41 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217891#post2217891</guid>
        </item>
                <item>
          <title>Re: [pogo] CMS Builder v2.12 - wysiwyg boxes stripping hyperlinks - tinyMCE issue?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2214679#post2214679</link>
          <description><![CDATA[Hi Tom,<br /><br />The workaround for my particular application was to replace the wysiwyg field with a text box, and then to stick all the raw html into that text box.  All of that was first tested in a sandbox environment created specifically to determine feasibility.  Once we confirmed my navigation was working again in the testing environment, I applied the change to my live site and after a slight bit of tweaking it was up and running.  I've since upgraded to 2.14 without any issues with the workaround.    <br /><br />If you're experiencing similar issues I'll be the second to say reply with any info you can - your setup details may be vastly different from mine and if this is a tinyMCE bug then the more information about it we can collect the better.  <br /><br />Thanks,<br />Christine<br />]]></description>
          <pubDate>Mon, 09 Jan 2012 09:21:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2214679#post2214679</guid>
        </item>
                <item>
          <title>Re: [Jason] CMS Builder v2.12 - wysiwyg boxes stripping hyperlinks - tinyMCE issue?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213498#post2213498</link>
          <description><![CDATA[Done.  Appreciate the help - thanks!<br />]]></description>
          <pubDate>Wed, 12 Oct 2011 15:15:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213498#post2213498</guid>
        </item>
                <item>
          <title>Re: [cricket7475] CMS Builder v2.12 - wysiwyg boxes stripping hyperlinks - tinyMCE issue?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213475#post2213475</link>
          <description><![CDATA[Update - Here's what I've done thus far:<br /><br />1. Duplicated the site in a sandbox environment.<br />2. Verified everything was working like the original site using CMS Builder 2.01.<br />3. Upgraded the CMS to 2.12.  Upgrade appeared to install without issue, just like the previous attempt.<br />4. Checked navigation menus complete with flyouts - everything is working fine.<br />5. Cleared the cache.<br />6. Check the nav menus again - everything works fine.<br />7. Go into the Section Editor for the navigation and view the nav code via a wysiwyg box, and notice the &lt;a&gt; tags have been removed from the code.  <br />8. Save the entry.<br />9. Refresh the  page and all my nav is gone (as would be expected if all the links are missing).<br />10. Go back into the section editor, wysiwyg box in the HTML view and attempt to add the links back into the code.  Click Update.<br />11. Save the entry.<br />12. Refresh the page, still no nav.<br />13. Go back into the section editor, and confirm that specific entries have been 'stripped'.<br /><br />At this point it appears that <b>only &lt;a&gt;  tags contained within divs are being stripped</b>.  &lt;a&gt; tags within &lt;p&gt; tags are left alone.  <br /><br />As in my earlier post, the 'home' link is still being stripped, and the reason my flyouts no longer work is because that code is also being stripped from the div tags.  For example:<br /><br /><code>&lt;div id=&quot;productsbutton&quot;&gt;<br />&lt;a onmouseover=&quot;P2H_Menu('PMproductsbutton', 500, 0);&quot; onmouseout=&quot;P2H_StartClock();&quot; <br />alt=&quot;Products&quot; title=&quot;Products&quot; href=&quot;/products.php&quot;&gt;&lt;/a&gt;&lt;/div&gt;</code><br /><br />becomes<br /><br /><code>&lt;div id=&quot;productsbutton&quot;&gt;&lt;/div&gt;</code><br /><br />I've tested other features of our site and at this point everything appears to function completely normally.  <br /><br />Ideas?  <br /><br />Thanks in advance,<br />Christine<br />]]></description>
          <pubDate>Tue, 11 Oct 2011 14:43:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213475#post2213475</guid>
        </item>
                <item>
          <title>Re: [Jason] CMS Builder v2.12 - wysiwyg boxes stripping hyperlinks - tinyMCE issue?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213429#post2213429</link>
          <description><![CDATA[Hi Jason,<br /><br />I'm not sure it's unrelated per say.  The navigation is pulled into each page via a 'common' section editor where I've placed the common page elements like footer info, copyrights, and navigation.  Within that section editor there's a wysiwyg box called 'navigation' where all the HTML is loaded that controls the sites nav menus.  That entry is pulled into each page via   <br /><br /><code>&lt;?php echo $commonRecord['navigation'] ?&gt;</code><br /><br />Here's what one link example for the home page looks like in the HTML Source Editor of that wysiwyg box when it's functioning 'normally' within 2.01:<br /><br /><code>&lt;div id=&quot;homebutton&quot;&gt;&lt;a alt=&quot;Home&quot; title=&quot;Home&quot; href=&quot;/index.php&quot;&gt;&lt;/a&gt;&lt;/div&gt;</code><br /><br />with 2.12 I could paste that code in, click 'update' and then even before saving if I went in to verify the code was correct I would see this:<br /><br /><code>&lt;div id=&quot;homebutton&quot;&gt;&lt;/div&gt;</code><br /><br />Thinking I may have forgotten to click 'update' I would put the code in again, click 'update' then save the entry, only to open it back up and find the 'stripped' version.  I even changed around the order of the elements within the tag thinking that because it didn't see the href first it flagged it - still stripped it out. <br /><br />So before even getting to the flyout issue I was having problems.  I have not linked anything directly to an jquery files within the CMS folders, so I'm pretty sure that's not an issue, but I'll verify to be sure.  <br /><br />Everything else appeared to work fine.  Images for various pages still appeared, links functioned from what I can tell, but the nav issue was so great I didn't take a whole lot of time to test other items out before restoring the working version.   I'm using Firefox 7.0.1 in case that has any bearing on the issue.  <br /><br />I'll start on the subdomain sandbox and see if I can duplicate the issue there.  Will keep you posted.<br /><br />Thanks,<br />Christine<br />]]></description>
          <pubDate>Wed, 05 Oct 2011 13:31:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213429#post2213429</guid>
        </item>
                <item>
          <title>CMS Builder v2.12 - wysiwyg boxes stripping hyperlinks - tinyMCE issue?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2213427#post2213427</link>
          <description><![CDATA[Hi,<br />Last night I upgraded from 2.01 to 2.12.  When viewing the site post-upgrade it appears that all the wysiwyg boxes are stripping code.  Specifically any &lt;a href&gt; tags.  I also found that any scripts no longer functioned.  This was apparent as the upgrade effectively broke all the navigation on my site - including flyout menus.  The navigation became 'blank'.  I had been populating the navigation via one wysiwyg entry within CMS.<br /><br />I've reverted back to 2.01 (which is unfortunate but at least it's working again).  While on 2.12 I attempted the steps listed in this post as I've seen that issue in previous versions, however it did not fix this issue:<br /><a target="_blank" href="http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/2.12_upgrade%2C_WYSIWYG_graphics_gone%21_P90151/gforum.cgi?post=89879;search_string=tinyMCE;t=search_engine#89879">http://www.interactivetools.com/iforum/Products_C2/CMS_Builder_F35/2.12_upgrade%2C_WYSIWYG_graphics_gone%21_P90151/gforum.cgi?post=89879;search_string=tinyMCE;t=search_engine#89879</a> <br /><br />I'm assuming it has something to do with <b>valid_elements</b> and <b>extended_valid_elements</b> options in the tinyMCE.js file based on web searches, but I hesitate to change that file without checking with you to verify if you've seen this issue before and if so what the fix is. <br /><br />Any insight you can provide would be helpful.  Let me know what you'd have me upload regarding files (btw I left you a voicemail this morning). I want to upgrade so that we can use the membership plugin, which can't happen while running v2.01.  <br /><br />Thanks,<br />Christine<br />]]></description>
          <pubDate>Wed, 05 Oct 2011 12:20:42 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2213427#post2213427</guid>
        </item>
                <item>
          <title>Re: [Dave] Limiting display of records based on multiple lists from db</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201147#post2201147</link>
          <description><![CDATA[OK - So here's the SQL<br /><code>SELECT SQL_CALC_FOUND_ROWS `documents`.* FROM `ysicms_documents` as `documents` WHERE ('application' = 5) AND documents.hidden = 0 ORDER BY id</code><br /><br />Which looks like it's doing what it's supposed to be doing, assuming that for 'documents.hidden' the '0' means false, as I have no hidden documents in that section right now.    <br /><br />When I apply the second test I get this:<br /><code>Array ( )</code><br /><br />Which is telling me that it's not displaying any documents that meet the 'where' criteria even though they exist.  <br /><br />If you see anything out of sorts with the above let me know - I'm not sure I'm seeing things right between the lack of sleep and the sinus meds :)<br /><br />I'll send you what I can in an email - in the meantime, I'm going to try to recreate the scenario on a page which has the bare minimum and see if I can get it to work.<br /><br />Thanks again!<br />]]></description>
          <pubDate>Fri, 15 Jan 2010 10:41:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201147#post2201147</guid>
        </item>
                <item>
          <title>Re: [Dave] Limiting display of records based on multiple lists from db</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201104#post2201104</link>
          <description><![CDATA[Thanks Dave,<br /><br />So if I understand correctly,  I should be able to set up a 'where' clause for the documents array that limits the documents pulled to just those whose selected application includes the applicationsRecords['num']   ...right?  <br /><br />Hypothetical:  <br /><br />If the 'application' selection list is no longer a multi value but rather a single radio button option, then I would think this (or something similar to this) would work: <br /><br /><code>list($applicationsRecords, $applicationsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'applications',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'limit'       =&gt; '1',<br />  ));<br />  $applicationsRecord = @$applicationsRecords[0]; // get first record<br />  <br />  // show error message if no matching record is found<br />  if (!$applicationsRecord) {<br />    print &quot;This application is no longer active.  Please go back and select another.  Thank you!&quot;;<br />    exit;<br />  }<br /><br />list($documentsRecords, $documentsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'documents',<br />     'where'       =&gt; &quot;'application' = &quot;.mysql_escape($applicationsRecord['num']).&quot;&quot;,<br />    'allowSearch' =&gt; '0',<br />  ));</code><br /><br />and the php on the page<br /><br /><code>&lt;?php foreach ($documentsRecords as $record): ?&gt;<br />	&lt;?php if ($record['document_type']==&quot;1&quot;): ?&gt; <br />            	&lt;?php foreach ($record['pdf'] as $upload): ?&gt;<br />					&lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br />		&lt;?php endforeach ?&gt;<br />	&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;</code><br /><br />However, even after I make those changes and reassign values to the document entry, it still doesn't display.  Which makes me think my 'where' clause isn't working.  Before I get into the multi value fields I'd like to see if I can get the single value field to work.  <br /><br />I've attached the applicationsDetail.php viewer which is the one I'm currently working on and the one that is currently populating the live page (minus the db locations).  This viewer applies to all applications available from this page: <a target="_blank" href="http://www.ysi.com/applications.php">http://www.ysi.com/applications.php</a>   <br />Right now I have 5 documents in the system for testing, all of which should show at the bottom of the documents tab below the last horizontal rule.    <br />1 under ocean application (record number 2):<a target="_blank" href="http://www.ysi.com/applicationsdetail.php?Ocean-and-Coastal-Monitoring-2">http://www.ysi.com/applicationsdetail.php?Ocean-and-Coastal-Monitoring-2</a><br />2 under surface water application (record number 5): <a target="_blank" href="http://www.ysi.com/applicationsdetail.php?Surface-Water-5">http://www.ysi.com/applicationsdetail.php?Surface-Water-5</a><br />2 under wastewater application (record number 7): <a target="_blank" href="http://www.ysi.com/applicationsdetail.php?Wastewater-7">http://www.ysi.com/applicationsdetail.php?Wastewater-7</a>  <br /><br />Thanks again!<br />]]></description>
          <pubDate>Thu, 14 Jan 2010 12:30:27 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201104#post2201104</guid>
        </item>
                <item>
          <title>Limiting display of records based on multiple lists from db</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2201089#post2201089</link>
          <description><![CDATA[I've searched the forums and tried several things, but can't seem to get the code right.  Here's my scenario:<br /><br />I'm building a document repository with CMS Builder.  Each document is assigned to several different categories, based on existing tables.  In this case, <br /><br /><b>Document Type</b> - a category menu I created <br /><b>Application</b> - a multi value check box list getting its values from the applications table (option values=num, option labels=title)<br /><b>Related Products</b> - a multi value pull down list getting its values from the products table (option values=num, option labels=title)<br /><br />The code generated by CMSB for the head as well as Applications and related Products field is:<br /><br /><code>list($documentsRecords, $documentsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'documents',<br />    'allowSearch' =&gt; '0',<br />  ));<br /><br />Application: &lt;?php echo join(', ', getListLabels('documents', 'application', $record['application'])); ?&gt;&lt;br/&gt;<br />Related Products: &lt;?php echo join(', ', getListLabels('documents', 'related_products', $record['related_products'])); ?&gt;</code><br /><br />On various pages within the site I want to only show specific combinations.  For instance, <br /><br />On individual applications pages (which are generated from a 'multi' menu type) , I want to show the specific document type of 'application note', and documents which have the same application as the application page I'm viewing (i.e. surface water application notes on the surface water application page).  <br /><br />In the code below, document_type '1' equals 'application note'<br /><br /><code>&lt;?php foreach ($documentsRecords as $record): ?&gt;<br />	&lt;?php if ($record['document_type']==&quot;1&quot; &amp;&amp; $record['application']=$applicationsRecord['num']): ?&gt; <br />		&lt;?php foreach ($record['pdf'] as $upload): ?&gt;<br />			&lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot;&gt;&lt;?php echo $record['title'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br />		&lt;?php endforeach ?&gt;<br />	&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;</code><br /><br />That code successfully shows all application notes on all application pages, which was not my goal [:P]   <br /><br />It seems that when I attempt to filter for application type, it's eliminating all types because of the multi value options.  How do I tell the system essentially<br /> <i>&quot;if your document_type is an application note, and if one of the selected application check box's names matches the title of the application page you're on, display in this list&quot;</i>?  And how do I accomplish that on a 'detail page' viewer?   My concern is that if I started using 'where' clauses in the head section that I would be setting up the viewer to only work for one application page as opposed to having it 'universal'.  By the way, the code for the 'applications page title' is:<br /><br /><code>&lt;?php echo $applicationsRecord['title'] ?&gt;</code><br /><br />You can see a manually coded list example of what I'm trying to attempt on this page:   <a target="_blank" href="http://www.ysi.com/applicationsdetail.php?Aquaculture-1">http://www.ysi.com/applicationsdetail.php?Aquaculture-1</a> <br />Check the Documents tab - I'll have multiple lists based on document_type on this tab, all hopefully coming from the document repository (manually keeping track of all our documents is a huge pain! :)  <br /><br />I'm going to be attempting to do the same thing with product pages, in the sense that on a product page, I'll have multiple lists of documents organized based on doc type.  I'm thinking if I could understand how this application page stuff works, I'd have a better chance of correctly coding the product pages.  That tab is currently hidden until I can figure this out.  <br /><br />I'm hoping the answer is simple, and it's eluding me simply because I've been staring at the code too long.  Any insight would be a great help.  Thanks!<br />]]></description>
          <pubDate>Wed, 13 Jan 2010 21:57:43 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2201089#post2201089</guid>
        </item>
                <item>
          <title>Re: [chris] Passing variable in URL results in no CMS access</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199726#post2199726</link>
          <description><![CDATA[That worked - still learning php and all it's nuances. Thanks for the help!<br />]]></description>
          <pubDate>Mon, 12 Oct 2009 08:37:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199726#post2199726</guid>
        </item>
                <item>
          <title>Re: [dwelling] Passing variable in URL results in no CMS access</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2199684#post2199684</link>
          <description><![CDATA[HI - I'm having an identical problem...<br /><br />Here's the background for my issue:<br /><br /> 1.  It's a news page where the detail of the news story is in the right column, and a list of up to 10 news stories is in the left column, all populated from the same table.<br />2.  The newsdetail.php page i created includes links back to the CMS for all the navigation menus, logo, footer content &amp; links, etc.<br />3.  When I click on the first article, the page loads beautifully - all the menus appear as well as all the footer links.  The URL ends with a '1'.<br />4.  When I click on the second news item everything breaks.  No menus, an error where the logo should be, no footer content, etc.  The URL ends with a '2'.<br /><br />Changing the number on the end to a 1 or 0 loads the first news story and everything else on the page wonderfully.  <br /><br />Changing the number on the end of the URL to anything other than 1 or 0 results in a 'mis-loaded' page.  The correct article shows, but none of my menus or footer content loads (essentially nothing else from the CMS loads).<br /><br />And I need to load records greater than 1 as I'm anticipating many news stories to be populated in this page.<br /><br />I've tried the 'allowSearch' =&gt; '0', also, but that doesn't help either. <br /><br />That said, any ideas?  <br /><br />I've attached a slightly modified version of the file I'm having issues with.  I took out the full URL in the 'require_once' line.  Any insight &amp; fixes would be appreciated.<br /><br />Love the product by the way - using it on 2 company sites already and have 2-3 more planned after I finish up this project.<br /><br />Thanks.<br />]]></description>
          <pubDate>Fri, 09 Oct 2009 16:05:29 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2199684#post2199684</guid>
        </item>
              </channel>
    </rss>
  