<?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%3Aorangecat</link>
        <description></description>
        <pubDate>Tue, 26 May 2026 10:23:17 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aorangecat&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Jason] Records not sorting</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208151#post2208151</link>
          <description><![CDATA[Thanks, Jason. It's working perfectly now.<br />]]></description>
          <pubDate>Fri, 19 Nov 2010 14:07:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208151#post2208151</guid>
        </item>
                <item>
          <title>Records not sorting</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208140#post2208140</link>
          <description><![CDATA[I  have set the sort in &quot;Admin &gt; Section Editors &gt; Sorting&quot; to the address field (lfield3) of our database, but it sorts by table order both in the listings.php and the admin listings page. See here - this should be sorted by address:<br />http://www.kylandsales.com/listings.php<br />]]></description>
          <pubDate>Thu, 18 Nov 2010 21:56:57 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208140#post2208140</guid>
        </item>
                <item>
          <title>Re: [Jason] One link works, identical link doesn&apos;t</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208075#post2208075</link>
          <description><![CDATA[Thanks, Jason, but there are records where lfield3=danville. It works for one city name but not the others. I'll fill out a Level 2 request so someone can take ma look at it.<br />]]></description>
          <pubDate>Tue, 16 Nov 2010 14:03:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208075#post2208075</guid>
        </item>
                <item>
          <title>One link works, identical link doesn&apos;t</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208066#post2208066</link>
          <description><![CDATA[I have two CMSBuilder sites for the same client. We need to call pages that use one result for a field.<br /><br />The link on one site works prefectly:<br />http://www.starhomeusa.com/listings.php?lfield3=danville<br /><br />The identical link on the other site returns &quot;no record found&quot; even though it is using another version of he same database:<br />http://www.kylandsales.com/listings.php?lfield3=danville<br /><br />The client has made some changes to records on the 2nd page - the one that no longer works, but I can't see where anything he did messed it up. It worked when I installed it, but it isn't working now. The settings are identical. Any idea what could have gone wrong on the 2nd page?<br /><br />Thanks for any help,<br />Bob<br />]]></description>
          <pubDate>Tue, 16 Nov 2010 12:15:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208066#post2208066</guid>
        </item>
                <item>
          <title>Re: [chris] Images show in admin not in pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2207920#post2207920</link>
          <description><![CDATA[Hi Chris,<br /><br />Listings index page:<br />http://www.kylandsales.com/listings.php<br /><br />Then click the live address for the Details page. Images are missing on both.<br /><br />Thanks,<br />Bob<br />]]></description>
          <pubDate>Mon, 08 Nov 2010 17:06:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2207920#post2207920</guid>
        </item>
                <item>
          <title>Images show in admin not in pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2207915#post2207915</link>
          <description><![CDATA[Using the image code generated by the Code Generator, images associated with listings don't appear in the listings or listingDetail pages. Here is the image code output by the software for the listings page:<br /><br />    &lt;?php foreach ($rm_listingRecords as $record): ?&gt;<br /><br />        &lt;?php foreach ($record['images'] as $upload): ?&gt;<br />          &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />            &lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight'] ?&gt;&quot; alt=&quot;&quot; style=&quot;float: left; margin: 0 12px 0 0;&quot; /&gt;<br /><br />          &lt;?php elseif ($upload['isImage']): ?&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; style=&quot;float: left; margin: 0 12px 0 0;&quot; /&gt;<br />          &lt;?php endif ?&gt;<br />        &lt;?php endforeach ?&gt;<br /><br />Here is the code output for the listingDetails page:<br /><br />&lt;?php foreach ($rm_listingRecord['images'] as $upload): ?&gt;<br />          &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />            &lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot; width=&quot;&lt;?php echo $upload['thumbWidth'] ?&gt;&quot; height=&quot;&lt;?php echo $upload['thumbHeight'] ?&gt;&quot; alt=&quot;&quot; /&gt;&lt;br/&gt;<br /><br />          &lt;?php elseif ($upload['isImage']): ?&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;&lt;br/&gt;<br /><br />          &lt;?php else: ?&gt;<br />            &lt;a href=&quot;&lt;?php echo $upload['urlPath'] ?&gt;&quot;&gt;Download &lt;?php echo $upload['filename'] ?&gt;&lt;/a&gt;&lt;br/&gt;<br /><br />          &lt;?php endif ?&gt;<br />        &lt;?php endforeach ?&gt;<br /><br />Any help with this appreciated,<br /><br />Bob<br />]]></description>
          <pubDate>Mon, 08 Nov 2010 14:38:43 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2207915#post2207915</guid>
        </item>
                <item>
          <title>Re: [chris] Code Generator created page has errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2207879#post2207879</link>
          <description><![CDATA[Chris,<br /><br />I just output from the Code Generator for the 3rd time - it now works. Old saying = 3rd time is the charm. That will have me scratching my head for a while, But I'm relieved that it worked.<br /><br />Thanks for being ready to help.<br /><br />Bob<br />]]></description>
          <pubDate>Fri, 05 Nov 2010 19:01:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2207879#post2207879</guid>
        </item>
                <item>
          <title>Code Generator created page has errors</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2207875#post2207875</link>
          <description><![CDATA[I used the Code Generator to produce a listings page for real estate listings and it works fine. But when I click on the link (using the address field) created to go to a details page, I get a lot of errors. One error calls for an MLS# field which doesn't even exist in this database table.<br /><br />The listings page is at:<br />http://www.kylandsales.com/listings.php<br /><br />Any ideas on what might be causing the errors?<br /><br />Bob<br />]]></description>
          <pubDate>Fri, 05 Nov 2010 14:25:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2207875#post2207875</guid>
        </item>
              </channel>
    </rss>
  