<?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%3Aknight_oWL</link>
        <description></description>
        <pubDate>Thu, 21 May 2026 06:41:37 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aknight_oWL&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [greg] CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218487#post2218487</link>
          <description><![CDATA[Hi Greg, <br /><br />I re-sized the images using the thumbnail and restricted the max. u/l's to one in the section editor.  Didn't see the advanced options there (thnks) however, when I resize the image using the thumbnail on existing picture, I get a very grainy/pixelated version.  I u/l a larger pic with dimensions outside the restricted range, but when it resized it did so with constraints; in other words it did not resize to the specified dimension (in section editor), only to one dimension (height) and the width was constrained by the original dimension of the pic.  (constrained proportions) <br /><br />I'm new to the forum to, so I assume you need the entire code for furniture.php...?  I'm sure you can spot the problem, and I appreciate your help in this.  I need to get this Site wrapped up!  :)<br /><br /><br /><code>&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />&lt;?php<br />  <br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/twis2066/public_html/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /><br />  // load record from 'rustic_furniture'<br />  list($rustic_furnitureRecords, $rustic_furnitureMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'rustic_furniture',<br />    'where'       =&gt; '', // load first record<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $rustic_furnitureRecord = @$rustic_furnitureRecords[0]; // get first record<br />  if (!$rustic_furnitureRecord) { dieWith404(&quot;Record not found!&quot;); } // show error message if no record found<br /><br />?&gt;<br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;<br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;<br /> &lt;head&gt;<br />  &lt;title&gt;Rustic Furniture&lt;/title&gt;<br />  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt;<br />  &lt;style type=&quot;text/css&quot;&gt;<br />    body          { font-family: arial; }<br />    .instructions { border: 3px solid #000; background-color: #EEE; padding: 10px; text-align: left; margin: 25px}<br />  &lt;/style&gt;<br /> &lt;/head&gt;<br />&lt;body&gt;<br /><br />&lt;!DOCTYPE html&gt;<br />&lt;html lang=&quot;ru&quot;&gt;<br />&lt;head&gt;<br />    &lt;meta charset=&quot;utf-8&quot;&gt;<br /><br />    &lt;!-- CHECKLIST: Remove if activated in .htaccess --&gt;<br />    &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge,chrome=1&quot;&gt;<br /><br />    &lt;!-- CHECKLIST: Test on CMS<br />         --&gt;<br />    &lt;title&gt;Twisted Log Rustic Furniture&lt;/title&gt;<br /><br />    &lt;!-- CHECKLIST: Test on CMS<br />         SEO, need to be on every indexing page --&gt;<br />&lt;meta name=&quot;description&quot; content=&quot;Rustic Log Furniture in Cochrane, Alberta, Canada&quot; /&gt;<br />&lt;meta name=&quot;keywords&quot; content=&quot;affordable log furniture,discount log furniture,hand crafted log furniture,handcrafted log furniture,log furniture,log furniture benches,log furniture chairs,log furniture for sale,log furniture futon,log patio furniture,rustic log cabin furniture,rustics log furniture&quot; /&gt;<br />&lt;meta name=&quot;author&quot; content=&quot;Eldon Preston  www.twistedlog.ca&quot; /&gt;<br />&lt;meta name=&quot;copyright&quot; content=&quot;www.twistedlog.ca, Larissa Pitton&quot; /&gt;<br />&lt;meta name=&quot;distribution&quot; content=&quot;Global&quot; /&gt;<br />&lt;meta name=&quot;revisit-after&quot; content=&quot;30 days&quot; /&gt;<br />&lt;meta name=&quot;robots&quot; content=&quot;furniture, follow&quot; /&gt;<br />&lt;meta name=&quot;url&quot; content=&quot;http://www.twistedlog.ca/&quot; /&gt;<br />&lt;meta name=&quot;language&quot; content=&quot;English&quot; /&gt;<br /><br />    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;<br /><br />    &lt;!-- CHECKLIST: Test on CMS<br />         Canonical url for a page to index in search engines --&gt;<br />    &lt;link rel=&quot;canonical&quot; href=&quot;&quot;&gt;<br /><br />    &lt;link rel=&quot;stylesheet&quot; href=&quot;publish/style.css&quot;&gt;<br />    &lt;!--[if lt IE 8]&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;publish/style.ie.css&quot;&gt;&lt;![endif]--&gt;<br /><br />&lt;script src=&quot;http://yandex.st/modernizr/2.6.1/modernizr.min.js&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;http://yandex.st/jquery/1.8.1/jquery.min.js&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;publish/script.js&quot;&gt;&lt;/script&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />&lt;!--&lt;div id=&quot;fb-root&quot;&gt;&lt;/div&gt;<br />&lt;script&gt;(function(d, s, id) {<br />  var js, fjs = d.getElementsByTagName(s)[0];<br />  if (d.getElementById(id)) return;<br />  js = d.createElement(s); js.id = id;<br />  js.src = &quot;//connect.facebook.net/ru_RU/all.js#xfbml=1&quot;;<br />  fjs.parentNode.insertBefore(js, fjs);<br />}(document, 'script', 'facebook-jssdk'));&lt;/script&gt;--&gt;<br /><br />&lt;!--script language=&quot;javascript&quot;&gt;<br />$(document).ready(<br />    function (){<br />    $(&quot;#pikame2&quot;).PikaChoose({<br />        animationSpeed: 1000,<br />        showCaption:false,<br />        carousel: false<br />        });<br />});<br />&lt;/script--&gt;<br />    &lt;header class=&quot;b-header&quot;&gt;<br />        &lt;a class=&quot;b-logo&quot; href=&quot;index.php&quot; title=&quot;Twisted Log - Log constrauctions and furnishing&quot;&gt;Main page&lt;/a&gt;<br />        &lt;nav class=&quot;b-menu&quot;&gt;<br />            &lt;ul&gt;<br />                &lt;li class=&quot;b-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-menu__item-link&quot; href=&quot;index.php&quot;&gt;home&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-menu__item-link&quot; href=&quot;about.php&quot;&gt;about us&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-menu__item-link&quot; href=&quot;where2cus.php&quot;&gt;where to see us&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-menu__item-link&quot; href=&quot;quotes.php&quot;&gt;quotes&lt;/a&gt;<br />                &lt;/li&gt;<br />            &lt;/ul&gt;<br /><br />        &lt;/nav&gt;<br />        &lt;nav class=&quot;b-submenu&quot;&gt;<br />            &lt;ul&gt;<br />                &lt;li class=&quot;b-submenu__item b-submenu__item_active&quot;&gt;<br />                    &lt;a class=&quot;b-submenu__item-link&quot; href=&quot;furniture.php&quot;&gt;Rustic Furniture »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-submenu__item-link&quot; href=&quot;log_timber.php&quot;&gt;Log &amp; Timber Construction »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-submenu__item-link&quot; href=&quot;homes_cabins.php&quot;&gt;Log Homes &amp; Cabins »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-submenu__item-link&quot; href=&quot;homes_cabins.php&quot;&gt;Railing &amp; Stairs »&lt;/a&gt;<br />                &lt;/li&gt;<br />            &lt;/ul&gt;<br /><br />        &lt;/nav&gt;<br />        &lt;figure class=&quot;b-signup&quot;&gt;<br />            &lt;a class=&quot;b-signup__link b-signup__link_fb&quot; target=&quot;_blank&quot; href=&quot;https://www.facebook.com/TwistedLog&quot;&gt;Sign in as facebook&lt;/a&gt;<br />            &lt;a class=&quot;b-signup__link b-signup__link_fl&quot; target=&quot;_blank&quot; href=&quot;http://www.flickr.com/photos/twistedlog/sets/&quot;&gt;Sign in as flickr&lt;/a&gt;<br />            &lt;p class=&quot;b-signup__txt&quot;&gt;SIGN UP FOR OUR &lt;big&gt;newsletters&lt;/big&gt;&lt;/p&gt;<br />            &lt;form class=&quot;b-signup__form&quot; action=&quot;FormToEmail.php&quot; method=&quot;get&quot;&gt;<br />                &lt;fieldset&gt;<br />                    &lt;div class=&quot;b-signup__input&quot;&gt;<br />                        &lt;input type=&quot;text&quot; placeholder=&quot;Enter Your Email Here...&quot; id=&quot;usr_email&quot; name=&quot;optin&quot;/&gt;<br />                    &lt;/div&gt;<br />                    &lt;input class=&quot;b-signup__submit&quot; type=&quot;submit&quot;/&gt;<br />                &lt;/fieldset&gt;<br />            &lt;/form&gt;<br />        &lt;/figure&gt;<br />    &lt;/header&gt;<br />&lt;div class=&quot;b-slider b-slider_furniture&quot;&gt;<br />    &lt;div class=&quot;b-welcome__wrap&quot;&gt;<br />        &lt;i class=&quot;b-welcome__decor&quot;&gt;&lt;/i&gt;<br />        &lt;div class=&quot;b-welcome b-welcome_inner&quot;&gt;&lt;?php echo htmlencode($rustic_furnitureRecord['rf_title']) ?&gt;&lt;/div&gt;<br />    &lt;/div&gt;<br />    &lt;ul id=&quot;pikame2&quot; &gt;<br />        &lt;li&gt;&lt;img src=&quot;tmp/furniture1.jpg&quot;/&gt;&lt;/li&gt;<br />    &lt;/ul&gt;<br />    &lt;i class=&quot;g-gray-triangle_left&quot;&gt;&lt;/i&gt;<br />    &lt;i class=&quot;g-gray-triangle_right&quot;&gt;&lt;/i&gt;<br />&lt;/div&gt;<br />    &lt;div class=&quot;l-content&quot;&gt;<br />        &lt;div class=&quot;l-content__inner&quot;&gt;<br />          &lt;div class=&quot;b-text&quot;&gt;<br />            &lt;p&gt;&lt;span style=&quot;color: #915113&quot;&gt;&lt;strong&gt;&lt;em&gt;&lt;big&gt;You imagine…   and we create…&lt;/big&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;<br />            &lt;p&gt;&lt;?php echo $rustic_furnitureRecord['rf_content']; ?&gt;&lt;/p&gt;<br />           &lt;/div&gt;<br />           &lt;section class=&quot;b-furniture&quot;&gt;<br />                &lt;div class=&quot;b-furniture__item&quot;&gt;<br />                    &lt;p class=&quot;b-furniture__title&quot;&gt;LIVE EDGE FURNITURE&lt;/p&gt;<br />                    &lt;div class=&quot;b-furniture__types&quot;&gt;<br />                        &lt;i class=&quot;b-furniture__link_decor&quot; style=&quot;background-image: url(tmp/furniture2.jpg)&quot;&gt;&lt;/i&gt;<br />                        &lt;a class=&quot;b-furniture__link fancy&quot; href=&quot;rf1.html&quot; &gt;&lt;/a&gt;<br />                    &lt;/div&gt;<br />                &lt;/div&gt;<br />                &lt;div class=&quot;b-furniture__item&quot;&gt;<br />                    &lt;p class=&quot;b-furniture__title&quot;&gt;LOG &amp; TIMBER FURNITURE&lt;/p&gt;<br />                    &lt;div class=&quot;b-furniture__types&quot;&gt;<br />                        &lt;i class=&quot;b-furniture__link_decor&quot; style=&quot;background-image: url(tmp/furniture3.jpg)&quot;&gt;&lt;/i&gt;<br />                        &lt;a class=&quot;b-furniture__link fancy&quot; href=&quot;rf2.html&quot; &gt;&lt;/a&gt;<br />                    &lt;/div&gt;<br />                &lt;/div&gt;<br />                &lt;div class=&quot;b-furniture__item&quot;&gt;<br />                    &lt;p class=&quot;b-furniture__title&quot;&gt;RECLAIMED FURNITURE&lt;/p&gt;<br />                    &lt;div class=&quot;b-furniture__types&quot;&gt;<br />                        &lt;i class=&quot;b-furniture__link_decor&quot; style=&quot;background-image: url(tmp/furniture4.jpg)&quot;&gt;&lt;/i&gt;<br />                        &lt;a class=&quot;b-furniture__link fancy&quot; href=&quot;rf3.html&quot; &gt;&lt;/a&gt;<br />                    &lt;/div&gt;<br />                &lt;/div&gt;<br />                &lt;div class=&quot;b-furniture__item&quot;&gt;<br />                    &lt;p class=&quot;b-furniture__title&quot;&gt;SPECIALTY ITEMS&lt;/p&gt;<br />                    &lt;div class=&quot;b-furniture__types&quot;&gt;<br />                        &lt;i class=&quot;b-furniture__link_decor&quot; style=&quot;background-image: url(tmp/furniture5.jpg)&quot;&gt;&lt;/i&gt;<br />                        &lt;a class=&quot;b-furniture__link fancy&quot; href=&quot;rf4.html&quot; &gt;&lt;/a&gt;<br />                    &lt;/div&gt;<br />                &lt;/div&gt;<br />            &lt;/section&gt;<br />            &lt;div class=&quot;b-text&quot;&gt;<br />            &lt;p&gt;Contact us to discuss your needs or to set an appointment.&lt;/p&gt;<br />            &lt;p&gt;&lt;strong&gt;Twisted Log Ltd.&lt;/strong&gt;&lt;br/&gt;<br />            &lt;span style=&quot;color: #915113&quot;&gt;Phone: (4030 932-1158  Fax: 1-866-283-2597&lt;br/&gt;<br />                        Box 1035  Cochrane, AB, T4C 1B1&lt;/span&gt;&lt;br/&gt;<br />            info@twistedlog.ca &lt;/p&gt;<br />        &lt;/div&gt;<br />        &lt;/div&gt; &lt;!-- l-content__inner --&gt;<br />    &lt;/div&gt; &lt;!-- l-content --&gt;<br />    &lt;footer class=&quot;b-footer-wrap&quot;&gt;<br />        &lt;figure class=&quot;b-footer&quot;&gt;<br />            &lt;div class=&quot;b-footer__arrow_left&quot;&gt;&lt;/div&gt;<br />            &lt;div class=&quot;b-footer__arrow_right&quot;&gt;&lt;/div&gt;<br /><br />            &lt;div class=&quot;b-copyright hcard&quot;&gt;<br />                &lt;strong&gt;Powered by:&lt;/strong&gt;&lt;br/&gt;   <br />                &lt;span class=&quot;b-copyright__firm fn org&quot;&gt;TwistedLogLtd.&lt;/span&gt;&lt;br/&gt;<br />                P. O. Box 1035&lt;br/&gt;<br />                Cochrane, AB, T4C 1B1&lt;br/&gt;<br />                Tel: &lt;span class=&quot;tel&quot;&gt;(403) 932 - 1158&lt;/span&gt;&lt;br/&gt;<br />                &lt;span class=&quot;email&quot;&gt;&lt;a href=&quot;mailto:info@twistedlog.ca&quot;&gt;info@twistedlog.ca&lt;/a&gt;&lt;/span&gt;&lt;br/&gt;<br />                Copyright © 2007-2012<br />            &lt;/div&gt;<br /><br />            &lt;nav class=&quot;b-footer-menu&quot;&gt;<br />            &lt;ul&gt;<br />                &lt;li class=&quot;b-footer-menu__item b-footer-menu__item_active&quot;&gt;<br />                    &lt;a class=&quot;b-footer-menu__item-link&quot; href=&quot;index.php&quot;&gt;home&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-menu__item-link&quot; href=&quot;about.php&quot;&gt;about us&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-menu__item-link&quot; href=&quot;where2cus.php&quot;&gt;where to see us&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-menu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-menu__item-link&quot; href=&quot;quotes.php&quot;&gt;quotes&lt;/a&gt;<br />                &lt;/li&gt;<br />            &lt;/ul&gt;<br />            &lt;/nav&gt;<br /><br />            &lt;nav class=&quot;b-footer-submenu&quot;&gt;<br />            &lt;ul&gt;<br />                &lt;li class=&quot;b-footer-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-submenu__item-link&quot; href=&quot;furniture.php&quot;&gt;Rustic Furniture »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-submenu__item-link&quot; href=&quot;log_timber.php&quot;&gt;Log &amp; Timber Construction »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-submenu__item-link&quot; href=&quot;homes_cabins.php&quot;&gt;Log Homes &amp; Cabins »&lt;/a&gt;<br />                &lt;/li&gt;<br />                &lt;li class=&quot;b-footer-submenu__item&quot;&gt;<br />                    &lt;a class=&quot;b-footer-submenu__item-link&quot; href=&quot;homes_cabins.php&quot;&gt;Railing &amp; Stairs »&lt;/a&gt;                &lt;/li&gt;<br />            &lt;/ul&gt;<br />            &lt;/nav&gt;<br /><br />            &lt;p class=&quot;b-epilog&quot;&gt;<br />                The information contained herein is proprietary of Twisted Log Ltd. and cannot be reproduced in any way without their expressed written permission.<br />            &lt;/p&gt;<br />        &lt;/figure&gt;<br />    &lt;/footer&gt;<br /><br />    &lt;!-- CHECKLIST: <br />         Google Analytics snippet BEGIN --&gt;<br />&lt;script type=&quot;text/javascript&quot;&gt;<br /><br />  var _gaq = _gaq || [];<br />  _gaq.push(['_setAccount', 'UA-36188144-1']);<br />  _gaq.push(['_trackPageview']);<br /><br />  (function() {<br />    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;<br />    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';<br />    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);<br />  })();<br /><br />&lt;/script&gt;<br />    &lt;!-- Google Analytics snippet END --&gt;<br /><br />&lt;/body&gt;<br />&lt;/html&gt;</code><br />]]></description>
          <pubDate>Wed, 14 Nov 2012 00:00:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218487#post2218487</guid>
        </item>
                <item>
          <title>Re: [greg] CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218458#post2218458</link>
          <description><![CDATA[Hi Greg, <br /><br />Thanks for getting back to me, just had a closer look...<br /><br />'loadUploads' =&gt; true,          (this was set correctly) <br /><br />tl_homepage is the MySQL table given when I created the section - for some reason I have tl_home_pageRecord as variable name in php snippets - weird?  These are paste directly from the code generator.  I have made this change and the page now loads correct along with pictures. <br /><br />also, a couple more question :)  How do I specify the height and width parameters for pic uploads?  I (of course) would like them to display at correct size on the Site, however when this gets over to the client I am positive that almost any size pic will be uploaded.  also, how can I setup CMS so that the existing pic needs to be deleted before another pic is able to u/l in place.  Hope that makes sense.  Here is the code snippet for pics:  <br /><br />&lt;?php if ($upload = @$tl_homepageRecord['main_1_pic'][0]):?&gt;<br />       &lt;img src=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['width'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['height'] ?&gt;&quot; alt=&quot;&quot; /&gt;<br />&lt;?php endif?&gt;<br /><br />Sorry abt this, not a php guru by any means, prob. an easy fix.  <br /><br />Now furniture.php<br /><br />I've looked this over again, and not being a php guy cannot see where things might be out.  looking for variations in other records I do see one...<br /><br />$rustic_furnitureRecord = @$rustic_furnitureRecords[0]; // get first record<br /><br />whereas with all other table names we have @$tablenameRecords[1];<br /><br />I'm certain that this is the problem, but am not clear on how to correct this within the code generator.  <br /><br />I appreciate your help on this!<br />]]></description>
          <pubDate>Mon, 12 Nov 2012 17:33:20 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218458#post2218458</guid>
        </item>
                <item>
          <title>CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218448#post2218448</link>
          <description><![CDATA[Having some issues with CMS Builder; have used this before and had no problems, however this u/l is causing some problems.  <br /><br />index.php  is showing the following on all php links: Notice: Undefined variable: tl_home_pageRecord in /home/twis2066/public_html/index.php on line 221 <br /><br />also, photo uploads are not appearing.<br /><br />furniture.php is giving the following: Record not found!<br /><br />I've looked over these a few times and am not sure where the problem is.  <br /><br />SOS [:/]<br />]]></description>
          <pubDate>Mon, 12 Nov 2012 04:28:34 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218448#post2218448</guid>
        </item>
              </channel>
    </rss>
  