<?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%3AJeremyHarrison</link>
        <description></description>
        <pubDate>Sat, 02 May 2026 04:53:05 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3AJeremyHarrison&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Image orientation changes after upload</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239387#post2239387</link>
          <description><![CDATA[<p>Hi,</p>
<p>i'm having the same issue as others have mentioned before with residual exif data causing dramas and changjng the rotation of images after upload.</p>
<p>The site is running the latest version of CMS-B and I've followed the instructions suggested here - <a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2238420#post2238420" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2238420#post2238420</a> - namely changing <span>fixJpegExifOrientation to true.</span></p>
<p>We're getting the memory issue that was expected, returning this error:</p>
<p><span>Fatal error: Allowed memory size of </span>134217728<span> bytes exhausted (tried to allocate 12096 bytes) in /hermes/walnaweb13a/b756/moo.3pigs/aplicaCMS/lib/image_functions.php on line 152</span></p>
<p><span>Does anyone have any ideas?</span></p>
<p>Cheers,</p>
<p>Jeremy</p>
]]></description>
          <pubDate>Wed, 17 Aug 2016 12:56:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239387#post2239387</guid>
        </item>
                <item>
          <title>Display like records from a multi-select from another multi-record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235151#post2235151</link>
          <description><![CDATA[<p>I realised I was approaching things in a stupidly complicated way.</p>
<p>If any one has a similar issue in future, I've simply added an if statement containing strpos to identify a matching number in the sequence of selected locations:</p>
<p><code>&lt;?php if (strpos($record['location'], $locationsRecord['num'])): ?&gt;</code></p>
]]></description>
          <pubDate>Tue, 07 Oct 2014 17:37:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235151#post2235151</guid>
        </item>
                <item>
          <title>Display like records from a multi-select from another multi-record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235149#post2235149</link>
          <description><![CDATA[<p>Hi Everyone,</p>
<p>I am building a website for a client where they have a list of locations contained in a multi-record and they then have staff profiles (also a multi-record) which includes which location the person works at. The locations within the staff profiles are listed via "Get options from database" with Value:Num and Label:Title.</p>
<p>On the location pages I want to display which staff work at that location. I've had no problem listing which locations the staff work at on their individual profile pages, but this new setup is causing some issues.</p>
<p>An example of the current location page can be viewed at <a href="http://www.thedentalproject.com.au/locations/birkdale-dentist/" rel="nofollow">http://www.thedentalproject.com.au/locations/birkdale-dentist/</a></p>
<p>I've taken the same approach I've used for blog categories to display content where multiple values may have been selected but that is just resulting in only displaying staff members working at both locations.</p>
<p>This is what I'm loading in terms of records:</p>
<p><code>   // load record from 'locations'<br />  list($locationsRecords, $locationsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'locations',<br />    'where'       =&gt; whereRecordNumberInUrl(0),<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $locationsRecord = @$locationsRecords[0]; // get first record<br />  <br />   // load records from 'our_people'<br />   $where = "location LIKE '%\t" . mysql_escape($locationsRecord['num']) . "\t%'";<br />  list($our_peopleRecords, $our_peopleMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'our_people',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br /> 'where'       =&gt; $where,<br />  ));<br /></code></p>
<p>I'm then just displaying with a simple "foreach" call with the idea that only the appropriate records will be listed based on the criteria established above. Obviously, this has failed terrible.</p>
<p>If you can provide any help it would be greatly appreciated.</p>
<p>Kind regards,<br />Jeremy.</p>
]]></description>
          <pubDate>Mon, 06 Oct 2014 21:36:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235149#post2235149</guid>
        </item>
                <item>
          <title>LinkArray include category permalink</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233827#post2233827</link>
          <description><![CDATA[<p>Hi, I'm having issues pulling in the _link field within a linkarray when listing categories assigned to each blog post.</p>
<p>My code currently looks like this:</p>
<p><code>&lt;?php $linkArray = array_combine($record['category:values'], $record['category:labels']); ?&gt;<br />&lt;?php foreach($linkArray as $num =&gt; $title): ?&gt;<br />&lt;a href="/category.php?&lt;?php echo $num;?&gt;"&gt;&lt;?php echo $title; ?&gt;&lt;/a&gt;,<br />&lt;?php endforeach; ?&gt;</code></p>
<p>I'd prefer to pull the _link field from each category record as I'm using permalinks and don't want to have duplicate URL's. Manually adding each category to the permalinks db isn't feasible as the client will be constantly adding new categories.</p>
<p>I've always used linkArray to generate a list of assigned categories on the detail page for each blog post, but haven't tried it when using permalinks so it's proving a bit of a conundrum for my designer brain.</p>
<p>Any help you can offer would be greatly appreciated.</p>
<p>Cheers,</p>
<p>Jeremy.</p>]]></description>
          <pubDate>Sun, 27 Apr 2014 18:43:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233827#post2233827</guid>
        </item>
              </channel>
    </rss>
  