<?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%3Anyckidd</link>
        <description></description>
        <pubDate>Tue, 28 Apr 2026 07:16:03 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Anyckidd&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [ryan_dot] Align images so text wraps around</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193634#post2193634</link>
          <description><![CDATA[hey ryan i got an error<br /><br /><code>Parse error: syntax error, unexpected T_ELSEIF in /var/www/vhosts/mywebsite/httpdocs/main.php on line 315</code><br />]]></description>
          <pubDate>Sat, 04 Oct 2008 08:36:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193634#post2193634</guid>
        </item>
                <item>
          <title>Re: [ryan_dot] Align images so text wraps around</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193627#post2193627</link>
          <description><![CDATA[hey, thanks....<br /><br />i did that but the images are still not aligning up right you can see it here http://www.lookingforspace.com/main.php <br /><br />the upload section is at the bottom and when i move it to the top it does not help rather i get an error...<br />]]></description>
          <pubDate>Fri, 03 Oct 2008 14:04:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193627#post2193627</guid>
        </item>
                <item>
          <title>Align images so text wraps around</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193623#post2193623</link>
          <description><![CDATA[hello,<br /><br />I am using the upload section to place images in the article , i have tried <br /><br /><code>   &lt;!-- STEP 2a: Display Uploads for field 'uploads' (Paste this anywhere inside STEP2 to display uploads) --&gt;<br />        &lt;!-- Upload Fields: num, createdTime, tableName, fieldName, recordNum, preSaveTempId, filePath, filename, extension, thumbFilePath, isImage, hasThumbnail, urlPath, width, height, thumbUrlPath, thumbWidth, thumbHeight, info1, info2, info3, info4, info5 --&gt;<br />        &lt;?php foreach ($record['uploads'] as $upload): ?&gt;<br />          &lt;?php if ($upload['hasThumbnail']): ?&gt;<br />            &lt;img src=&quot;&lt;?php echo $upload['thumbUrlPath'] ?&gt;&quot;  align=&quot;left&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;  align=&quot;left&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 />      &lt;!-- STEP2a: /Display Uploads --&gt;</code><br /><br />But its not letting the text  wrap around rather its at the bottom of the article ,....any help ?<br />]]></description>
          <pubDate>Fri, 03 Oct 2008 08:43:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193623#post2193623</guid>
        </item>
                <item>
          <title>Re: [Mr Jim] Uploaded images not showing up</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193552#post2193552</link>
          <description><![CDATA[Mr Jim,<br /><br />Am adding the images via an uploads field....and below is the code am pasting<br /><br /> <code>  &lt;!-- STEP2: Display Records (Paste this where you want your records to be listed) --&gt;<br />    &lt;h1&gt;Listings - List Page Viewer&lt;/h1&gt;<br />    &lt;?php foreach ($realty_listingRecords as $record): ?&gt;<br />      Record Number: &lt;?php echo $record['num'] ?&gt;&lt;br/&gt;<br />      Featured Property: &lt;?php echo $record['featured'] ?&gt;&lt;br/&gt;<br />      Property Type: &lt;?php echo $record['property_type'] ?&gt;&lt;br/&gt;<br />      Price: &lt;?php echo $record['price'] ?&gt;&lt;br/&gt;<br />      MLS #: &lt;?php echo $record['mls'] ?&gt;&lt;br/&gt;<br />      Address: &lt;?php echo $record['address'] ?&gt;&lt;br/&gt;<br />      City: &lt;?php echo $record['city'] ?&gt;&lt;br/&gt;<br />      State / Province: &lt;?php echo $record['state'] ?&gt;&lt;br/&gt;<br />      Bedrooms: &lt;?php echo $record['bedrooms'] ?&gt;&lt;br/&gt;<br />      Bathrooms: &lt;?php echo $record['bathrooms'] ?&gt;&lt;br/&gt;<br />      Stories: &lt;?php echo $record['stories'] ?&gt;&lt;br/&gt;<br />      House Size - ft²: &lt;?php echo $record['house_size_ft'] ?&gt;&lt;br/&gt;<br />      Lot Size: &lt;?php echo $record['lot_size'] ?&gt;&lt;br/&gt;<br />      Age of Home: &lt;?php echo $record['age_of_home'] ?&gt;&lt;br/&gt;<br />      Appliances: &lt;?php echo $record['appliances'] ?&gt;&lt;br/&gt;<br />      Fireplace: &lt;?php echo $record['fireplace'] ?&gt;&lt;br/&gt;<br />      Central AC: &lt;?php echo $record['central_ac'] ?&gt;&lt;br/&gt;<br />      Pool: &lt;?php echo $record['pool'] ?&gt;&lt;br/&gt;<br />      Waterfront: &lt;?php echo $record['waterfront'] ?&gt;&lt;br/&gt;<br />      Workshop: &lt;?php echo $record['workshop'] ?&gt;&lt;br/&gt;<br />      Near Transit: &lt;?php echo $record['near_transit'] ?&gt;&lt;br/&gt;<br />      Near School: &lt;?php echo $record['near_school'] ?&gt;&lt;br/&gt;<br />      Summary: &lt;?php echo $record['summary'] ?&gt;&lt;br/&gt;<br />      Description: &lt;?php echo $record['description'] ?&gt;&lt;br/&gt;<br />      &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;Read More&lt;/a&gt;&lt;br/&gt;<br /><br /><br />      &lt;!-- STEP 2a: Display Uploads for field 'uploads' (Paste this anywhere inside STEP2 to display uploads) --&gt;<br />        &lt;!-- Upload Fields: num, createdTime, tableName, fieldName, recordNum, preSaveTempId, filePath, filename, extension, thumbFilePath, isImage, hasThumbnail, urlPath, width, height, thumbUrlPath, thumbWidth, thumbHeight, info1, info2, info3, info4, info5 --&gt;<br />        &lt;?php foreach ($record['uploads'] 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 />      &lt;!-- STEP2a: /Display Uploads --&gt;<br /><br /><br />      &lt;hr/&gt;<br />    &lt;?php endforeach; ?&gt;<br /><br />    &lt;?php if ($realty_listingMetaData['invalidPageNum']): ?&gt;<br />      Results page '&lt;?php echo $realty_listingMetaData['page']?&gt;' not found, &lt;a href=&quot;&lt;?php echo $realty_listingMetaData['firstPageLink'] ?&gt;&quot;&gt;start over &amp;gt;&amp;gt;&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php elseif (!$realty_listingRecords): ?&gt;<br />      No records were found!&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP2: Display Records --&gt;<br /><br /><br />  &lt;!-- STEP3: Display Page Links (Paste anywhere below &quot;Load Record List&quot;) --&gt;<br />    &lt;?php if ($realty_listingMetaData['prevPage']): ?&gt;<br />      &lt;a href=&quot;&lt;?php echo $realty_listingMetaData['prevPageLink'] ?&gt;&quot;&gt;&amp;lt;&amp;lt; prev&lt;/a&gt;<br />    &lt;?php else: ?&gt;<br />      &amp;lt;&amp;lt; prev<br />    &lt;?php endif ?&gt;<br /><br />    - page &lt;?php echo $realty_listingMetaData['page'] ?&gt; of &lt;?php echo $realty_listingMetaData['totalPages'] ?&gt; -<br /><br />    &lt;?php if ($realty_listingMetaData['nextPage']): ?&gt;<br />      &lt;a href=&quot;&lt;?php echo $realty_listingMetaData['nextPageLink'] ?&gt;&quot;&gt;next &amp;gt;&amp;gt;&lt;/a&gt;<br />    &lt;?php else: ?&gt;<br />      next &amp;gt;&amp;gt;<br />    &lt;?php endif ?&gt;<br />  &lt;!-- /STEP3: Display Page Links --&gt;</code><br />]]></description>
          <pubDate>Mon, 29 Sep 2008 10:09:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193552#post2193552</guid>
        </item>
                <item>
          <title>Re: [Mr Jim] Uploaded images not showing up</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193549#post2193549</link>
          <description><![CDATA[thanks Mr Jim, i did that but the images still do not show up on the site...<br />]]></description>
          <pubDate>Mon, 29 Sep 2008 08:27:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193549#post2193549</guid>
        </item>
                <item>
          <title>Uploaded images not showing up</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193543#post2193543</link>
          <description><![CDATA[hello,<br /><br />I have uploaded images on the admin via cms admin but they do not show up my settings are<br /><br />Upload Directory   : /var/www/vhosts/mysite.com/httpdocs/cmsadmin/uploads/<br />	<br />Upload Folder URL : /uploads/<br /><br />when i look at the source code i see the image at this url : http://uploads/thumb/121_001.jpg<br /><br />any help.<br />]]></description>
          <pubDate>Sun, 28 Sep 2008 22:22:38 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193543#post2193543</guid>
        </item>
              </channel>
    </rss>
  