<?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%3Aeverbatim</link>
        <description></description>
        <pubDate>Fri, 01 May 2026 20:22:48 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aeverbatim&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>SQL Search Question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210067#post2210067</link>
          <description><![CDATA[I need to use the SQL &quot;where&quot; statement to filter results from 2 different fields (from the same table).  What I'm trying to do is check all the records of a certain table and only return results that match either field.  I tried using an  &quot;or&quot; statement, however that just renders the search useless.  I can successfully narrow the results searching only 1 field, but not when I add the OR statement where I think it should go.<br /><br />So, I have a multi-record table, called WEBINARS which contains many fields.  I want the page to search the PRESENTER field AND CO_PRESENTER field (both are simple lists) and only display records that match a single presenter name.  Here is the code I tried, which does not work.<br /><br /><code>    list($webinarsRecords, $webinarsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'webinars',<br />    'allowSearch' =&gt; '0',<br />    'where' =&gt; 'Presenter=&quot;name1&quot;' or 'Co_Presenter=&quot;name1&quot;',<br />  ));</code><br /><br />Any thoughts?  Again, I want to search 2 fields for the same value and only return the matching results.<br /><br />Thanks in advance!<br />]]></description>
          <pubDate>Thu, 10 Mar 2011 15:18:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210067#post2210067</guid>
        </item>
                <item>
          <title>Missing Records after Upgrade</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2207179#post2207179</link>
          <description><![CDATA[So I just got around to upgrading from CMS Builder v1.36 to v2.06.  The upgrade went VERY smooth until I went to the back end to add a few FAQs.  When i reached the FAQ page in the admin section, the system tells me there are no records in that section.  I know the records are there as they are still displaying on the front end (public) site of the side, and when i go to the SECTION EDITORS tab, it lists the number of records correctly as 6, however it simply will not show them to me on the back end.<br /><br />I did some more checking, and the same is true for ALL of my multi-record sections in the database; meaning the admin section doesn't show them, but the front end displays just fine.<br /><br />Any ideas on this?  I'm afraid to do anything to the CMS system until I get this resolved as there is information in those records I can't easily replicate. <br /><br />Thanks!<br /><br />Scott Friend<br />]]></description>
          <pubDate>Wed, 29 Sep 2010 14:13:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2207179#post2207179</guid>
        </item>
                <item>
          <title>Integration with Trellis Desk</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196604#post2196604</link>
          <description><![CDATA[I'm using a free support desk system called Trellis Desk in my site.  On the Trellis desk pages, I'm still using CMS builder to control the main menu at the top of the screen as well as an information block in my header, so I have to keep the CMS Builder code in those pages.  My problem is that no matter where I place the CMS code on the index.php page, it does not allow CMS Builder to display the content.  Trellis works fine, but it's like CMS is just being ignored.  <br /><br />Here is the code for my entire Trellis Desk index.php page.  Perhaps someone is familiar with this?<br /><br />----------------------------------------------------------<br /><code>&lt;?php<br />  <br />  require_once &quot;/hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php&quot;;<br /><br />  list($latest_newsRecords, $latest_newsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'latest_news',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'loadUploads' =&gt; '0',<br />    'limit'       =&gt; '1',<br />  ));<br />  $latest_newsRecord = @$latest_newsRecords[0]; // get first record<br />  <br />  list($main_menuRecords, $main_menuMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'main_menu',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'loadUploads' =&gt; '0',<br />    'limit'       =&gt; '1',<br />  ));<br />  $main_menuRecord = @$main_menuRecords[0]; // get first record<br />  <br />  list($text_barRecords, $text_barMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'text_bar',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'loadUploads' =&gt; '0',<br />    'limit'       =&gt; '1',<br />  ));<br />  $text_barRecord = @$text_barRecords[0]; // get first record<br />  <br />  list($website_themeRecords, $website_themeMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'website_theme',<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />    'loadUploads' =&gt; '0',<br />    'limit'       =&gt; '1',<br />  ));<br />  $website_themeRecord = @$website_themeRecords[0]; // get first record<br /><br /><br />#=============================<br /># Safe and Secure<br />#=============================<br /><br />ini_set( 'register_globals', 0 );<br /><br />if ( function_exists('date_default_timezone_get') )<br />{<br />     date_default_timezone_set( date_default_timezone_get() );<br />}<br /><br />if ( @ini_get( 'register_globals' ) )<br />{<br />	while ( list( $key, $value ) = each( $_REQUEST ) )<br />	{<br />		unset( $$key );<br />	}<br />}<br /><br />#=============================<br /># Itsy Bitsy Stuff<br />#=============================<br /><br />define( 'IN_HD' , 1 );<br /><br />#ini_set( 'display_errors', 1 );<br />error_reporting( E_ERROR | E_WARNING | E_PARSE );<br /><br />#=============================<br /># Define Our Paths<br />#=============================<br /><br />define( &quot;HD_PATH&quot;, &quot;./&quot; );<br />define( 'HD_INC', HD_PATH .&quot;includes/&quot; );<br />define( 'HD_SRC', HD_PATH .&quot;sources/&quot; );<br />define( 'HD_SKIN', HD_PATH .&quot;skin/&quot; );<br /><br />define( 'HD_DEBUG', false );<br /><br />#=============================<br /># Main Class<br />#=============================<br /><br />require_once HD_INC . &quot;ifthd.php&quot;;<br />$ifthd = new ifthd();<br /><br />#=============================<br /># Are We Banned?<br />#=============================<br /><br />$banned_users = explode( &quot;\r\n&quot;, strtolower( $ifthd-&gt;core-&gt;cache['config']['ban_names'] ) );<br />$banned_emails = explode( &quot;\r\n&quot;, strtolower( $ifthd-&gt;core-&gt;cache['config']['ban_emails'] ) );<br />$banned_ips = explode( &quot;\r\n&quot;, strtolower( $ifthd-&gt;core-&gt;cache['config']['ban_ips'] ) );<br /><br />if ( in_array( strtolower( $ifthd-&gt;member['name'] ), $banned_users ) || ( $ifthd-&gt;member['email'] &amp;&amp; in_array( strtolower( $ifthd-&gt;member['email'] ), $banned_emails ) ) || in_array( strtolower( $ifthd-&gt;input['ip_address'] ), $banned_ips ) )<br />{<br />	$ifthd-&gt;skin-&gt;error('no_perm_banned');<br />}<br /><br />#=============================<br /># Other Junk<br />#=============================<br /><br />$choice = array(<br />				'article'		=&gt; 'article',<br />				'kb'			=&gt; 'article',<br />				'myaccount'		=&gt; 'account',<br />				'feed'			=&gt; 'feed',<br />				'portal'		=&gt; 'portal',<br />				'pages'			=&gt; 'pages',<br />				'news'			=&gt; 'news',<br />				'register'		=&gt; 'register',<br />				'tickets'		=&gt; 'tickets',<br />			   );<br /><br />#=============================<br /># Require &amp; Run<br />#=============================<br /><br />$required = $choice[ $ifthd-&gt;input['act'] ];<br /><br />if ( ! isset( $required ) )<br />{<br />	$required = 'portal';<br />}<br /><br />require_once HD_SRC . $required .&quot;.php&quot;;<br /><br />$run = new $required();<br />$run-&gt;ifthd =&amp; $ifthd;<br /><br />$run-&gt;auto_run();<br /><br />?&gt;</code><br />]]></description>
          <pubDate>Fri, 27 Mar 2009 13:06:07 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196604#post2196604</guid>
        </item>
                <item>
          <title>Re: [Dave] SQL Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196602#post2196602</link>
          <description><![CDATA[Yep, that did it too.  I feel better running it like that instead of just randomly removing lines of code. <br /><br />Thanks again!  :-)<br />]]></description>
          <pubDate>Fri, 27 Mar 2009 12:49:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196602#post2196602</guid>
        </item>
                <item>
          <title>Re: [ross] SQL Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196575#post2196575</link>
          <description><![CDATA[Ross, <br /><br />Thanks for the assistance.  Your right on in the fact that this is a &quot;details&quot; page.  I keep my site very simple and as a result ALL of the content pages on my site are simple detail pages.  What I ended up doing was making a duplicate of the &quot;viewer_functions.php&quot; file gave it a unique name.  On all the pages that ONLY rely on CMS Builder to pull it's content, I reference the original file.  On all the pages that interact with an additional PHP application to pull both content and database functions I reference the duplicate file.  The only difference between the two files is that in the duplicate I removed the offending code, which were lines 409 and 410 in viewer_functions.php which were calling the URLENCODE issues you were speaking of.  My basis on doing this was that since my site does not need to encode the URL's through CMS Bulder when it's combined with my third part PHP apps, there would be no need to even allow it to do so on those pages. <br /><br />So far everything is working OK.  All the pages (both the ones using the original file and the duplicate file) are stable and are not throwing errors.  I'm still in the development stages of the site, so I may infact find something that this doesn't &quot;jive&quot; with my adjustement. <br /><br />Can you think of any downsides to what I have done?<br />]]></description>
          <pubDate>Thu, 26 Mar 2009 11:43:53 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196575#post2196575</guid>
        </item>
                <item>
          <title>SQL Error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2196558#post2196558</link>
          <description><![CDATA[I just started using CMS Builder, and it's working fine with most of my pages. However, a few areas of my site use additional PHP applications (aMember Subscription System, Trellis Helpdesk Sotware, etc.) and that seems to throw my systems though a loop. I'm getting the following error when i try to order a subscription through my aMember software. If I remove the references to the CMS Builder software, the site works fine, so I know its not aMember. THe best I can see it seems to be a conflict between the Trellis Desk and aMember and how they call their PHP database. ANY help would be greatly appreciated. <ul>MYSQL ERROR: <br />Table 'C163167_ewcms.amember_error_log' doesn't exist <br />in query: <br />INSERT INTO amember_error_log (member_id, time, remote_addr, url, referrer, error) VALUES (NULL, NOW(), '98.117.203.91', '/login/member.php', 'http://eclipsewebinars.com/login/member.php', 'MYSQL ERROR: <br />Table \'C163167_ewcms.amember_error_log\' doesn\'t exist <br />in query: <br />INSERT INTO amember_error_log\r\n (member_id, time, remote_addr, url, referrer, error)\r\n VALUES\r\n (NULL, NOW(), \'98.117.203.91\',\r\n \'/login/member.php\', \'http://eclipsewebinars.com/login/member.php\',\r\n \'<b>WARNING:</b> urlencode() expects parameter 1 to be string, array given\\nin line 409 of file /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php\')\r\n ') <ul></ul></ul> <br /><br />I also receive this error ABOVE my page layout in text format: <br /><br />  <br /><br /><b>WARNING:</b> urlencode() expects parameter 1 to be string, array given in line 409 of file viewer_functions.php<br />Notice: Undefined property: db_mysql::$debug_sql in /hsphere/local/home/c163167/eclipsewebinars.com/login/plugins/db/mysql/mysql.inc.php on line 3089 Strict Standards: Only variables should be assigned by reference in /hsphere/local/home/c163167/eclipsewebinars.com/login/common.inc.php on line 284 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 409 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 410 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 409 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 410 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 409 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 410 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 409 Warning: urlencode() expects parameter 1 to be string, array given in /hsphere/local/home/c163167/eclipsewebinars.com/cms/lib/viewer_functions.php on line 410  <br /><br /><br /><br />Most of the lines in the error above are from aMember UNTIL you get to the &quot;WARNING&quot; message in the second to last line. Again, if I remove the CMS Builder scripts from the page, the error goes away and the site works fine (minus my content of course!). <br /><br />Thanks again!<br />]]></description>
          <pubDate>Wed, 25 Mar 2009 13:15:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2196558#post2196558</guid>
        </item>
              </channel>
    </rss>
  