<?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%3Asublmnl</link>
        <description></description>
        <pubDate>Tue, 12 May 2026 17:24:09 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Asublmnl&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Little help needed with elseif and if statement</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234549#post2234549</link>
          <description><![CDATA[<p>That works. Makes sense too.</p>
<p><strong>Thanks a lot. </strong>One of the reasons why I love using iTools, is the support from the team and the community.</p>

<p>One thing that was missing in your code was the last ELSE which was to not link any text or image at all.</p>
<p>So I went ahead and added another checkbox for the 'new' option in the CMS and wrapped your code with a single IF -&gt; ELSE -&gt; endIF</p>
<p>I'm sure there is probably another way to do this, like to check for whether or not there is an External Link in the text Field or if the checkbox is checked for the Internal Page.</p>
<p>But this is what I did (it works):</p>

<p><code>&lt;?php foreach ($record['list_image'] as $index =&gt; $upload): ?&gt;<br />&lt;?php if ($record['link_activity_to_another_page']):?&gt;<br />        &lt;?php <br />    if ($record['internal_page']) {$targetURL = $record['_link'] ;}<br />    elseif ($record['external_link']) {$targetURL = $record['external_link'] ;}<br /><br />    if ($record['open_in_same_window']) {$targetFrame = "_self" ;}<br />    else {$targetFrame = "_blank" ;}<br />?&gt;    <br />&lt;a target="&lt;?php echo $targetFrame ?&gt;" href="&lt;?php echo $targetURL ?&gt;"&gt; <br />    &lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="&lt;?php echo $upload['width'] ?&gt;" height="&lt;?php echo $upload['height'] ?&gt;" alt="&lt;?php echo $upload['info1'] ?&gt;" /&gt;<br />&lt;/a&gt;<br />&lt;?php else:?&gt;&lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="&lt;?php echo $upload['width'] ?&gt;" height="&lt;?php echo $upload['height'] ?&gt;" alt="&lt;?php echo $upload['info1'] ?&gt;" /&gt;&lt;?php endif ?&gt;<br />&lt;?php endforeach ?&gt;</code></p>
]]></description>
          <pubDate>Sun, 27 Jul 2014 09:44:37 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234549#post2234549</guid>
        </item>
                <item>
          <title>Little help needed with elseif and if statement</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234493#post2234493</link>
          <description><![CDATA[<p>Hey guys, hope you can help me here.</p>
<p>I am trying to run through wether or not we should wrap an Image with a link to an internal page (list detail page) or an external page.</p>
<p>I've done this several times, however I want to add another feature to this, if a Checkbox is checked in the CMS, then don't open the External link in a new window.</p>

<p>I thought this would work and neither did running two elseif 's</p>
<p>added this part to the second line and not working, it prints the target="_blank"</p>
<p><span> &lt;?php if ($record['open_in_same_window']):?&gt;&gt;&lt;?php else:?&gt; target="_blank"&gt;&lt;?php endif ?&gt;</span></p>

<p><code>&lt;div class="activity_list"&gt;&lt;div&gt;&lt;?php foreach ($record['list_image'] as $index =&gt; $upload): ?&gt;&lt;?php if ($record['internal_page']):?&gt;&lt;a href="&lt;?php echo $record['_link'] ?&gt;"&gt;&lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="&lt;?php echo $upload['width'] ?&gt;" height="&lt;?php echo $upload['height'] ?&gt;" alt="&lt;?php echo $upload['info1'] ?&gt;" /&gt;&lt;/a&gt;<br />&lt;?php elseif ($record['external_link']): ?&gt;&lt;a href="&lt;?php echo $record['external_link'] ?&gt;" &lt;?php if ($record['open_in_same_window']):?&gt;&gt;&lt;?php else:?&gt; target="_blank"&gt;&lt;?php endif ?&gt;&lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="&lt;?php echo $upload['width'] ?&gt;" height="&lt;?php echo $upload['height'] ?&gt;" alt="&lt;?php echo $upload['info1'] ?&gt;" /&gt;&lt;/a&gt;<br />&lt;?php else:?&gt;&lt;img src="&lt;?php echo $upload['urlPath'] ?&gt;" width="&lt;?php echo $upload['width'] ?&gt;" height="&lt;?php echo $upload['height'] ?&gt;" alt="&lt;?php echo $upload['info1'] ?&gt;" /&gt;&lt;?php endif ?&gt;&lt;?php endforeach ?&gt;</code></p>
]]></description>
          <pubDate>Sat, 19 Jul 2014 07:48:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234493#post2234493</guid>
        </item>
                <item>
          <title>Site Search pagination not working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234408#post2234408</link>
          <description><![CDATA[<p>Just so everyone has it, the pagination code that works is here:</p>
<p>The part that needed editing from those examples is in the a href (link code).</p>
<p><code>&lt;?php if (@!$_GET['page']): $current_page = "1"; else: $current_page = $_GET['page']; endif;  ?&gt; <br />&lt;?php foreach (range(1,$searchDetails['totalPages']) as $page): ?&gt;   <br />&lt;?php if ($page == $current_page): ?&gt;     <br />&lt;strong&gt;&lt;?php echo $page; ?&gt;&lt;/strong&gt;<br />&lt;?php else: ?&gt;     <br />&lt;a href="search.php?q=&lt;?php echo $_REQUEST['q']; ?&gt;&amp;page=&lt;?php echo $page; ?&gt;"&gt;&lt;?php echo $page; ?&gt;&lt;/a&gt;<br />&lt;?php endif ?&gt;<br />&lt;?php endforeach; ?&gt;</code></p>
]]></description>
          <pubDate>Sun, 13 Jul 2014 21:22:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234408#post2234408</guid>
        </item>
                <item>
          <title>Site Search pagination not working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234223#post2234223</link>
          <description><![CDATA[<p>Sure, sending it now.</p>
<p>Thanks</p>]]></description>
          <pubDate>Wed, 18 Jun 2014 15:38:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234223#post2234223</guid>
        </item>
                <item>
          <title>Site Search pagination not working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234208#post2234208</link>
          <description><![CDATA[<p>Hi guys, found the post from 2013 on the site search and it works flawlessly except one thing.</p>
<p>The pagination is not working.</p>
<p>It simply reloads the same page of results. Even after you go 'next' and 'previous' the number links to page results do not change pages.</p>
<p>A little help would be awesome. For now  I have increased the results per page to give the users more results until I can get this fixed.</p>
<p>At least the 'next' link works :-)</p>

<p>I'm talking about this:</p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?site-search-78768" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?site-search-78768</a></p>
<p><strong>Specifically this Search set up:</strong><br /><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2230147#post2230147" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2230147#post2230147</a><br /><br /></p>]]></description>
          <pubDate>Tue, 17 Jun 2014 07:39:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234208#post2234208</guid>
        </item>
                <item>
          <title>Combination WHERE statement troubles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218816#post2218816</link>
          <description><![CDATA[That works.<br />Thank you<br />I also wrapped each list grouping on the page with this &lt;?php if ($southcarolinalocationsRecords): ?&gt;<br />........ . .. . ..... . .. .<br />&lt;?php endif ?&gt;<br />because I had a Header to show for each state grouping. <br />WIthout it, the header would show even if I had no locations with finance links.<br /><br />So with your help and some previous code I had for another site, this one is done!<br />Thanks Greg.<br /><br />]]></description>
          <pubDate>Sun, 16 Dec 2012 09:30:12 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218816#post2218816</guid>
        </item>
                <item>
          <title>Combination WHERE statement troubles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218808#post2218808</link>
          <description><![CDATA[Thank you for your reply Greg.<br />I think you nailed it by asking me if the finance link was a checkbox.<br />(I actually tried the capitalization of the state names in the where statement already)<br /><br />The financing_application_link is actually a text field.<br />And I only want to show the entries that have something in the text field.<br /><br />I'm pretty sure I am borrowing code from another site I did where I only wanted to show something based on a checkbox selection.... so yeah makes sense.<br />But can you help show me how to do this when something is in the text field or not (not using the checkbox method)<br />?<br /><br />Thank you]]></description>
          <pubDate>Fri, 14 Dec 2012 12:50:55 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218808#post2218808</guid>
        </item>
                <item>
          <title>Combination WHERE statement troubles</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218789#post2218789</link>
          <description><![CDATA[Hi guys, looking for help with a sticky one.<br />Haven't been here in awhile but I know you can help.<br /><br />I have a locations page listing where I've divided the listings up by the state selection in the record.<br />I also only want to show the individual locations that have a (finance) link.<br /><br />My code looks like this:<br /><br />  list($southcarolinalocationsRecords, $locationsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'locations',<br />    'allowSearch' =&gt; false, <br />    'debugSql' =&gt; true,<br />    'where' =&gt; &quot;state = 'south carolina' AND financing_application_link = '1'&quot;,<br />  ));<br />  list($northcarolinalocationsRecords, $locationsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'locations',<br />    'allowSearch' =&gt; false, <br />    'where' =&gt; &quot;state = 'north carolina'&quot;,<br />  ));<br /><br />And the HTML here:<br /><br /> &lt;h3&gt;South Carolina Locations:&lt;/h3&gt;<br />   &lt;?php foreach ($southcarolinalocationsRecords as $record): ?&gt;&lt;div class=&quot;location&quot;&gt;&lt;h4&gt;&lt;?php echo $record['location_name'] ?&gt;&lt;/a&gt;&lt;/h4&gt;<br />&lt;p&gt;&lt;?php echo $record['address'] ?&gt;&lt;br /&gt;<br />&lt;?php echo $record['city_st_zip'] ?&gt;&lt;br/&gt;<br />&lt;?php echo $record['contact_info'] ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;a href=&quot;&lt;?php echo $record['financing_application_link'] ?&gt;&quot; target=&quot;_blank&quot; title=&quot;&lt;?php echo $record['location_name'] ?&gt;&quot;&gt;Apply Online&lt;/a&gt;&lt;/p&gt;<br />    &lt;/div&gt;&lt;?php endforeach ?&gt;<br />   <br />       &lt;hr/&gt;<br />         &lt;h3&gt;North Carolina Locations:&lt;/h3&gt;<br />   &lt;?php foreach ($northcarolinalocationsRecords as $record): ?&gt;&lt;div class=&quot;location&quot;&gt;&lt;h4&gt;&lt;?php echo $record['location_name'] ?&gt;&lt;/a&gt;&lt;/h4&gt;<br />&lt;p&gt;&lt;?php echo $record['address'] ?&gt;&lt;br /&gt;<br />&lt;?php echo $record['city_st_zip'] ?&gt;&lt;br/&gt;<br />&lt;?php echo $record['contact_info'] ?&gt;&lt;/p&gt;<br />&lt;p&gt;&lt;a href=&quot;&lt;?php echo $record['financing_application_link'] ?&gt;&quot; target=&quot;_blank&quot; title=&quot;&lt;?php echo $record['location_name'] ?&gt;&quot;&gt;Apply Online&lt;/a&gt;&lt;/p&gt;<br />    &lt;/div&gt;&lt;?php endforeach ?&gt;<br />       &lt;hr/&gt;<br /><br />Problem I am having is the South Carolina locations do not show at all.<br />Of course the North Carolina locations show, regardless of if they have the link or not. I haven't added this yet: AND financing_application_link = '1'&quot;,<br />Once I do, both sections go blank.<br />At least it divides up the locations listings!<br />Right now, the South Carolina listings are blank.<br /><br />The debug message reads:<br /><br />SELECT SQL_CALC_FOUND_ROWS `locations`.*<br />FROM `cms_locations` as `locations`<br /> WHERE (state = 'south carolina' AND financing_application_link = '1') <br /> ORDER BY dragSortOrder DESC<br /><br />Help please.<br />:- /<br /><br />]]></description>
          <pubDate>Wed, 12 Dec 2012 20:17:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218789#post2218789</guid>
        </item>
                <item>
          <title>Re: [Damon] Bug with custom upload directory?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216833#post2216833</link>
          <description><![CDATA[I have mentioned this one too and found the weird foldering issue. How/what do I put in the general settings and then still override it per section? <br />This needs to go back the way it was a few dot versions ago.<br />Please<br />This doesn't make sense to me why it is this way but it works.<br />See attached for the section <u><b>IF</b></u> I leave the general settings location alone.<br />]]></description>
          <pubDate>Mon, 02 Jul 2012 23:43:57 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216833#post2216833</guid>
        </item>
                <item>
          <title>Re: [Jason] Multi Record listings on one page - need help</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216692#post2216692</link>
          <description><![CDATA[mnnnmnnnn<br /><br />Still no dice.<br />This is my code way up top:<br /><br /><code>  // load records<br />  list($serving_listRecords, $serving_listMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'serving_list',<br />    'allowSearch' =&gt; '0',<br />   <br />  ));</code><br /><br />I replaced your $myRecordset with $serving_listRecords<br />and it didn't even show. Not even a page error.<br />Also I think you had a small typeo on the previous post calling 'globally' twice. So I changed that to neighborhood and still no show.<br /><br />Still need a little help. Thx.<br />]]></description>
          <pubDate>Mon, 18 Jun 2012 20:57:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216692#post2216692</guid>
        </item>
                <item>
          <title>Re: [Jason] Limit WYSIWYG options per section</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216640#post2216640</link>
          <description><![CDATA[Well we've been using what Chris wrote (post 15) for few years now and the code in the file has changed in the latest update. I'd like a refresh on how to modify this.<br /><br />see attached custom wysiwyg php file from version 2.14<br />]]></description>
          <pubDate>Wed, 13 Jun 2012 22:42:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216640#post2216640</guid>
        </item>
                <item>
          <title>Re: [Jason] Multi Record listings on one page - need help</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216639#post2216639</link>
          <description><![CDATA[Hmnn didn't work.<br /><br /><code>Notice: Undefined variable: myRecordSet in ......[server pathway to page and line number]<br />Warning: Invalid argument supplied for foreach() in ...... [server pathway to page and line number]</code><br /><br />I put the code on the page, uploaded and gave me that.<br />]]></description>
          <pubDate>Wed, 13 Jun 2012 22:35:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216639#post2216639</guid>
        </item>
                <item>
          <title>Re: [sublmnl] Limit WYSIWYG options per section</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216592#post2216592</link>
          <description><![CDATA[Hi guys, is there an update to this?<br />The custom wysiwyg tinyMCE code looks different in the later version of CMSB.<br />]]></description>
          <pubDate>Tue, 12 Jun 2012 11:44:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216592#post2216592</guid>
        </item>
                <item>
          <title>Multi Record listings on one page - need help</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216591#post2216591</link>
          <description><![CDATA[Hi guys, for some reason this one is escaping me.<br />I know how to filter list records by a 'where' in the php header but not on the echo call within the html<br /><br />I have one multirecord section that has three select options for an entry: globally, locally and neighborhood.<br />When a record is saved, one of those options has to be selected. <br /><br />I need to display these records on one page separated into three groups and this has me going in circles.<br /><br />The select options are called &quot;Serving Type?&quot; which are stored in another multirecord section and brought in via 'get options from database'.<br /><br />I have done this before but filtered by the options to pull in one group of items on a page but not to filter all items by groups on one page.<br /><br />Little help here would be appreciated.<br />Thanks.<br />]]></description>
          <pubDate>Tue, 12 Jun 2012 11:43:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216591#post2216591</guid>
        </item>
                <item>
          <title>Re: [sublmnl] Weird Problem with wysiwyg field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215464#post2215464</link>
          <description><![CDATA[The browser kept chucking an error saying tinyMCE could not be found and saying there was an error in the js file.<br /><br />re-install was kinda sketchy so I backed out and started resetting file permissions to what was on the old server.<br /><br />That didn't work so I grabbed the entire directory of the 3rdparty/tinyMCE folder off the old server and overwrote what was on the new server.<br />that worked.<br /><br />Thank God.<br />This was starting to piss me off.<br />]]></description>
          <pubDate>Sun, 11 Mar 2012 12:35:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215464#post2215464</guid>
        </item>
                <item>
          <title>Re: [Jason] Weird Problem with wysiwyg field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215460#post2215460</link>
          <description><![CDATA[I backed up the DB from the original host.<br />Pulled down all sites files.<br />Posted all site files on the new host<br />Posted the backup DB files on new host<br />Removed the install file in the cmsAdmin<br />changed the connection strings to the new host DB<br />went to the cms login and know we didn't install again, we just had to put in the DB password on the admin page and then it was like we were golden but not so because the wysiwyg panels are gone in the editor views.<br />I'll try re-installing after backing up again from the current host. <br /><br />Jason: you guys have done the fresh installs for us for years. Can you message me install instructions as opposed to transfer instructions? <br /><br />Thank you<br />]]></description>
          <pubDate>Fri, 09 Mar 2012 16:09:21 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215460#post2215460</guid>
        </item>
                <item>
          <title>Re: [sublmnl] Weird Problem with wysiwyg field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215451#post2215451</link>
          <description><![CDATA[Didn't work.<br />Grrrr<br />I put the js cache file back too.<br />Not sure what the issue it.<br />I compared old location to new via an FTP application and the 3rd party folder looks the same.<br /><br />Ideas?<br />]]></description>
          <pubDate>Fri, 09 Mar 2012 14:59:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215451#post2215451</guid>
        </item>
                <item>
          <title>Re: [Jason] Weird Problem with wysiwyg field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215449#post2215449</link>
          <description><![CDATA[thanks for the quick reply.<br />there is also a js file too.<br />I deleted that and will give it a shot:<br /><br /><code>tiny_mce_cache.7d65434de7817cbad9c408493e20de7a.js</code><br />]]></description>
          <pubDate>Fri, 09 Mar 2012 14:39:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215449#post2215449</guid>
        </item>
                <item>
          <title>Re: [gkornbluth] Weird Problem with wysiwyg field</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215445#post2215445</link>
          <description><![CDATA[We're having the same problem.<br /><br />We moved to new hosting and setup the CMS and transferred the backup DB onto the new setup and set all pathways correctly from the admin and the install as well as a few ini files we have.<br />Now with the new setup the tinymce windows are blank just like his pic in the editor view.<br />Help!<br />]]></description>
          <pubDate>Fri, 09 Mar 2012 14:20:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215445#post2215445</guid>
        </item>
                <item>
          <title>Re: [Damon] Moving install - not making sense</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215385#post2215385</link>
          <description><![CDATA[Thanks all I needed to get started.<br />I moved the files and set up the DB on the new host last night.<br />I did what you said and renamed the install file then went in the settings.dat.php file and changed the relevant info.<br />Then i brought up the site on the new host preview DNS and set up the Admin section with the restore option from a backed up copy from yesterday.<br /><br />One thing to note here, be sure you place your backup DB file on the server. I forgot and it quickly hit me.<br /><br />Thanks Itools team.<br />]]></description>
          <pubDate>Tue, 06 Mar 2012 00:07:54 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215385#post2215385</guid>
        </item>
                <item>
          <title>Re: [Damon] Download as HTML file</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215371#post2215371</link>
          <description><![CDATA[If you have the HTML files in a single directory and they will always be there you can put an htaccess file in the folder that tells any files to force download.<br />]]></description>
          <pubDate>Sun, 04 Mar 2012 16:26:47 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215371#post2215371</guid>
        </item>
                <item>
          <title>Re: [markr] archive of pdf uploads safe from bots</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215370#post2215370</link>
          <description><![CDATA[either move the directory to somewhere only FTP can get to but not in the public or www folder.<br /><br />Or if you can't move to above/outside the www folder, then put a robots.txt file in your root and dissallow the pdf directory  you are talking about. Also put a index.php file in the root of the pdf folder that makes the listing die or redirect. Also put a .htaccess file in the PDF folder that doesn't allow listing of file contents for that folder.<br />Or do like he said and put a login on the pdf folder.<br />you could also apply document security to the PDF's so that you would have to put in a password if you tried to open them. You can do all of the above as good practice if needed.<br /><br />We have done this with a client and moved an entire section of their site 'behind the wall' - it was all learning module content and run from the CMS. So was the content on the outside of the login wall. Win win for us. It may be a win win for your client as well.<br />]]></description>
          <pubDate>Sun, 04 Mar 2012 16:23:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215370#post2215370</guid>
        </item>
                <item>
          <title>Re: [HDLLC] Moving install - not making sense</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2215369#post2215369</link>
          <description><![CDATA[I don't see this in Chris' instructions in the file:<br /><blockquote><br />2. Edit the cmsAdmin/data/settings.dat.php and change this line: <br /><br /><br /><code>isInstalled = 1</code></blockquote><br /><br />we are running version 2.14<br />]]></description>
          <pubDate>Sun, 04 Mar 2012 16:17:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2215369#post2215369</guid>
        </item>
                <item>
          <title>Re: [Jason] Problem Uploading SWF file</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2214661#post2214661</link>
          <description><![CDATA[Yeah Jason, I think I'll have to fill out a request.<br />I got the original source videos from the client and all they had was swf and mov. So I encoded the mov but didn't want to have a flv and a swf player so I opted for a html5 video tag.<br />I generated a mp4 from the mov and the section editor did the same thing as before. Telling me to turn off flash uploader, did that.... then tried the ol skool upload and the modal went back to the home CMS page when finished. <br />Very odd.<br />]]></description>
          <pubDate>Sat, 07 Jan 2012 13:11:41 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2214661#post2214661</guid>
        </item>
                <item>
          <title>Re: [Jason] swf file giving upload not valid swf file error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2214540#post2214540</link>
          <description><![CDATA[I'll see if we can get the video from the client and encode it ourselves.<br /><br />Thanks.<br />Might be the issue after all.<br />]]></description>
          <pubDate>Wed, 28 Dec 2011 17:16:07 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2214540#post2214540</guid>
        </item>
              </channel>
    </rss>
  