<?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%3Ameg</link>
        <description></description>
        <pubDate>Wed, 24 Jun 2026 17:59:55 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Ameg&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Category Menu - need to generate unique link</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2236983#post2236983</link>
          <description><![CDATA[<p>I built a category menu in the CMS to use as my main menu. The categories and sub-categories display properly. However, the links it generates are www.domain.com?breadcrumb. I set up a specific form field in the category menu to take unique links, entitled "link." How can I get the menu to generate the link from that form field instead of the domainname.com?breadcrumb ?</p>
<p>Code I'm using now:</p>
<p><code>&lt;ul&gt;<br />        &lt;?php foreach ($main_menuRecords as $categoryRecord): ?&gt;<br />          &lt;?php echo $categoryRecord['_listItemStart'] ?&gt;<br />      <br />          &lt;?php if ($categoryRecord['_isSelected']): ?&gt;<br />            &lt;li&gt;&lt;a href="&lt;?php echo $categoryRecord['_link'] ?&gt;"&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />          &lt;?php else: ?&gt;<br />            &lt;li&gt;&lt;a href="&lt;?php echo $categoryRecord['_link'] ?&gt;"&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/li&gt;<br />          &lt;?php endif; ?&gt;<br />      <br />          &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt;<br />        &lt;?php endforeach; ?&gt;<br />&lt;/ul&gt;</code></p>
]]></description>
          <pubDate>Sun, 28 Jun 2015 18:33:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2236983#post2236983</guid>
        </item>
                <item>
          <title>Problems with User Accounts</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2236448#post2236448</link>
          <description><![CDATA[<p>One of my clients is having problems with their user accounts. It will not let them enter passwords for people with similar last names. </p>
<p>This is the message that pops up:<br />Password found in list of "most common passwords", please choose a more secure password.<br />We are OK with using common passwords because it is the username that has significance.</p>
<p>Any thoughts?</p>]]></description>
          <pubDate>Wed, 01 Apr 2015 07:03:59 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2236448#post2236448</guid>
        </item>
                <item>
          <title>Building a custom email form using CMS Builder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2236273#post2236273</link>
          <description><![CDATA[<p>Is there an easy way to create a custom email form using CMS Builder? I have a client who's interested in having new forms created (like an survey that can be emailed) that he can create himself using the CMS Builder. Any suggestions? </p>]]></description>
          <pubDate>Fri, 13 Mar 2015 07:46:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2236273#post2236273</guid>
        </item>
                <item>
          <title>Error when trying to access code generator</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235498#post2235498</link>
          <description><![CDATA[<p>On one of my client's accounts, I experienced an error: Parse error: syntax error, unexpected '?' in /data/19/1/51/101/1866101/user/2026945/htdocs/cms/lib/menus/_codeGenerator/generator_functions.php on line 49</p>
<p>Any suggestions? Would updating the CMS make a difference?</p>]]></description>
          <pubDate>Wed, 10 Dec 2014 07:26:23 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235498#post2235498</guid>
        </item>
                <item>
          <title>Having problems viewing list records in a detail records page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235411#post2235411</link>
          <description><![CDATA[<p>I have essentially an article page with a view all articles at the footer. I can't get the list of all the articles to view. Not sure what's going on. I'm using this code: </p>

<p><code>list($articlesRecords, $articlesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'articles',<br />    'where'       =&gt; whereRecordNumberInUrl(1), <br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; true,<br />    'limit'       =&gt; '1',<br />  ));<br />  $detailRecord = @$articlesRecords[0];<br />  <br />  list($articlesRecords, $articlesMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'articles',<br />    'perPage'     =&gt; '6',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />  ));<br />  <br />   list($prevRecord, $nextRecord, $firstRecord, $lastRecord) = getPrevAndNextRecords(array( <br />    'tableName' =&gt; 'articles', <br />    'recordNum' =&gt; $detailRecord['num'], <br />    'orderBy'   =&gt; 'createdDate'<br />  ));<br /></code></p>

<p><code>&lt;?php foreach ($articlesRecords as $listRecord): ?&gt;<br />&lt;?php $isSelected = ($listRecord['num'] == $detailRecord['num']); ?&gt;<br />&lt;?php if ($isSelected) { print "&lt;b&gt;"; } ?&gt;<br />&lt;!--Article--&gt;<br />&lt;div class="mosaic-block fade"&gt;<br />&lt;a href="&lt;?php echo htmlencode($listRecord['_link']) ?&gt;" class="mosaic-overlay"&gt;<br />&lt;div class="details" align="center"&gt;<br />&lt;h6&gt;&lt;?php echo htmlencode($listRecord['life:text']) ?&gt;&lt;/h6&gt;<br />&lt;h6&gt;&lt;?php echo htmlencode($listRecord['style:text']) ?&gt;&lt;/h6&gt;<br />&lt;h5&gt;&lt;?php echo htmlencode($listRecord['title']) ?&gt;&lt;/h5&gt;<br />&lt;h4&gt;&lt;?php echo htmlencode($listRecord['byline']) ?&gt;&lt;/h4&gt;<br />&lt;p&gt;SEE FEATURE &lt;img src="images/white-arrow.png" alt="&amp;gt;" width="8" height="8" border="0" /&gt;&lt;/p&gt;<br />&lt;/div&gt;<br />&lt;/a&gt;<br />&lt;div class="mosaic-backdrop" style="background: url(&lt;?php foreach ($listRecord['article_images'] as $index =&gt; $upload): ?&gt;&lt;?php if ($index &gt;= 1) { continue; } // limit uploads shown ?&gt;&lt;?php echo $upload['urlPath'] ?&gt;&lt;?php endforeach ?&gt;) top center no-repeat; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover;"&gt;&lt;/div&gt;<br />&lt;/div&gt;<br />&lt;!--END Article--&gt;<br />&lt;?php if ($isSelected) { print "&lt;/b&gt;"; } ?&gt;<br />&lt;?php endforeach ?&gt;</code></p>
<p>any suggestions??</p>]]></description>
          <pubDate>Mon, 24 Nov 2014 12:58:36 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235411#post2235411</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234167#post2234167</link>
          <description><![CDATA[<p>Thank you, but now I'm getting a server error: </p>
<p>Notice: Undefined variable: questionsRecords in article.php on line 13 MySQL Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') ORDER BY createdDate DESC' at line 3</p>]]></description>
          <pubDate>Tue, 10 Jun 2014 10:18:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234167#post2234167</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234165#post2234165</link>
          <description><![CDATA[<p>Comment fields in the Section Editor:</p>
<p>comment</p>
<p>attachments</p>
<p>tableOrTag</p>
<p>recordNum</p>
<p>num</p>
<p>createdDate</p>
<p>createdByUserNum</p>]]></description>
          <pubDate>Tue, 10 Jun 2014 10:06:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234165#post2234165</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234162#post2234162</link>
          <description><![CDATA[<p>So if the detail article page is this: </p>
<p><code>list($questionsRecords, $questionsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'questions',<br />    'where'       =&gt; whereRecordNumberInUrl(1), // If no record # is specified then latest record is shown<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $detailRecord = @$questionsRecords[0]</code></p>
<p>the comments should be this?</p>
<p><code>list($_wsc_commentsRecords, $_wsc_commentsMetaData) = getRecords(array(<br />    'tableName'   =&gt; '_wsc_comments',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'where'       =&gt; 'article_id = ' . $questionsRecords['num'],<br />  ));<br /></code></p>
<p>I'm a little confused on what the article_id should be...</p>]]></description>
          <pubDate>Tue, 10 Jun 2014 09:48:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234162#post2234162</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234159#post2234159</link>
          <description><![CDATA[<p>This is the php for generating the article: </p>
<p><code>list($questionsRecords, $questionsMetaData) = getRecords(array(<br />    'tableName'   =&gt; 'questions',<br />    'where'       =&gt; whereRecordNumberInUrl(1), // If no record # is specified then latest record is shown<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'limit'       =&gt; '1',<br />  ));<br />  $detailRecord = @$questionsRecords[0]</code></p>
<p>In the view URL's, the detail page is /article.php and I'm using the field name "question" to generate the article name. So, for example, it would generate the URL: article.php?Question-About-Life-1</p>
<p>So, how exactly do I make the comments unique to an individual article page? I'm a little confused now...</p>]]></description>
          <pubDate>Tue, 10 Jun 2014 07:30:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234159#post2234159</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234148#post2234148</link>
          <description><![CDATA[<p>Something like this?</p>
<p><code> list($_wsc_commentsRecords, $_wsc_commentsMetaData) = getRecords(array(<br />    'tableName'   =&gt; '_wsc_comments',<br />    'loadUploads' =&gt; true,<br />    'allowSearch' =&gt; false,<br />    'where'       =&gt; whereRecordNumberInUrl(1),<br />  ));</code></p>
]]></description>
          <pubDate>Mon, 09 Jun 2014 13:11:56 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234148#post2234148</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234144#post2234144</link>
          <description><![CDATA[<p>Oh - and one more question about the comments plugin. </p>
<p>I have it connected to a multi-listing details page (aka a detailed article page). When I comment on one article, the comment shows up on all articles. I need the comments to be unique to each article. How do I do that?</p>
<p>Thank you again for all your help! This is my first time using this plugin.</p>]]></description>
          <pubDate>Mon, 09 Jun 2014 12:40:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234144#post2234144</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234143#post2234143</link>
          <description><![CDATA[<p>Thanks! Yes, it's fixed. I believe I originally grabbed that line from an example, not knowing if $comment was required or not.</p>
<p>Any ideas on the user profile glitch? It's strange because I haven't experienced it with other membership sites I've done. </p>]]></description>
          <pubDate>Mon, 09 Jun 2014 12:36:03 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234143#post2234143</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234136#post2234136</link>
          <description><![CDATA[<p>Also, on the same website, with the membership plugin, I'm getting an error in the update profile page: <strong>Current password isn't correct! </strong>even though it is the correct password. </p>]]></description>
          <pubDate>Mon, 09 Jun 2014 10:51:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234136#post2234136</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234132#post2234132</link>
          <description><![CDATA[<p><strong>Notice: Undefined variable: comment in article.php on line 242</strong></p>]]></description>
          <pubDate>Mon, 09 Jun 2014 10:47:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234132#post2234132</guid>
        </item>
                <item>
          <title>Advanced Search</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234128#post2234128</link>
          <description><![CDATA[<p>I'm looking to develop a more advanced search section for a client's website. I already have a very basic site search set up for this particular record, but I was wondering if you could guide me into the more advanced features. </p>
<p>1. Displaying Search Results. I'm using this and getting <strong>undefined index errors for all of the field1, field2, etc (not the title and summary)</strong>. Suggestions?</p>
<p><code> $searchTables['directory'] = array(<br />    'viewerUrl'       =&gt; 'directory.php',<br />    'titleField'      =&gt; 'first_name',<br />    'summaryField'    =&gt; 'name',<br /> 'searchFields'    =&gt;  array('first_name', 'name','title', 'institution', 'city', 'location'),<br /> 'field1'       =&gt; 'title',<br /> 'field2'       =&gt; 'institution',<br /> 'field3'       =&gt; 'city',<br /> 'field4'       =&gt; 'location',<br />    <br />  );</code></p>
<p>then to view the record lists</p>
<p><code>&lt;?php foreach ($searchRows as $record): ?&gt;<br />&lt;h3&gt;&lt;?php echo htmlspecialchars($record['_title']); ?&gt; &lt;?php echo htmlspecialchars($record['_summary']); ?&gt;&lt;/h3&gt;<br />&lt;p&gt;&lt;em&gt;&lt;?php echo htmlspecialchars($record['_field1']); ?&gt;&lt;/em&gt;&lt;br /&gt;<br />&lt;?php echo htmlspecialchars($record['_field2']); ?&gt;&lt;br /&gt;<br />&lt;?php echo htmlspecialchars($record['_field3']); ?&gt;, &lt;?php echo htmlspecialchars($record['_field4']); ?&gt;&lt;/p&gt;<br />&lt;h4&gt;&lt;a href="&lt;?php echo $record['_link'] ?&gt;"&gt;Read more&lt;/a&gt;&lt;/h4&gt;<br />&lt;?php endforeach ?&gt;<br /><br /></code></p>
<p>2. I need to create a custom search form (drawing from the database) to either: </p>
<p>search by name OR search by state (dropdown menu) OR search by level (dropdown menu)</p>
<p>OR</p>
<p>search by state and level</p>
<p>Is this possible?</p>
<p>3. Hide Feature: I already set up a "hide button" that is either checked or unchecked in each record from this "directory" that the search results are drawing from. I need the search to hide any of the records that checked this box. </p>
<p>4. Display search results in alphabetical order. Is this possible?</p>

<p>Please let me know what's possible...thank you!!</p>]]></description>
          <pubDate>Mon, 09 Jun 2014 10:25:20 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234128#post2234128</guid>
        </item>
                <item>
          <title>Comment Plugin - error in displaying user name </title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234083#post2234083</link>
          <description><![CDATA[<p>I'm using this code from your example to display the user account name for a comment: </p>
<p><code>&lt;?php echo htmlspecialchars(coalesce(@$comment[$GLOBALS['WSM_ACCOUNTS_TABLE'].'.username'],$comment['createdBy.username'])); ?&gt;</code></p>
<p>But I'm receiving a "<strong>Notice: Undefined variable:" </strong>error. Any suggestions on how to get this working?</p>]]></description>
          <pubDate>Mon, 02 Jun 2014 09:39:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234083#post2234083</guid>
        </item>
                <item>
          <title>Membership Plugin - edit profile error</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234082#post2234082</link>
          <description><![CDATA[<p>I'm setting up the Membership Plugin on a site I'm working on, and when I go to change the password, it gives me the error "Current password isn't correct!" However, I'm clearly using the correct password. Any suggestions?</p>]]></description>
          <pubDate>Mon, 02 Jun 2014 09:28:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234082#post2234082</guid>
        </item>
                <item>
          <title>Problem: redirect on mobile version of detail multi-listing page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234059#post2234059</link>
          <description><![CDATA[<p>Problem solved. Thank you!</p>]]></description>
          <pubDate>Tue, 27 May 2014 12:10:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234059#post2234059</guid>
        </item>
                <item>
          <title>Problem: redirect on mobile version of detail multi-listing page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234054#post2234054</link>
          <description><![CDATA[<p>I have a multi-listing section (blog) that I have set up for a client. I'm developing a mobile version of the website, but I'm having trouble connecting the links on the mobile pages to the mobile detail pages of the multi-listing. </p>
<p>In the view URL section of the section editor, I have the list pages as index.php and the detail pages as article.php.</p>
<p>The mobile version has the same naming scheme to the list and detail pages. </p>
<p>I'm using a redirect on the index.php and article.php pages:</p>
<p>On the index: </p>
<p>&lt;script language=javascript&gt;if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {<br /> location.replace("<a href="http://name.com/mobile/index.php" rel="nofollow">http://name.com/mobile/index.php</a>");}&lt;/script&gt;</p>
<p>On the article, I tried both of these scenarios without success:</p>
<p>&lt;script language=javascript&gt;if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {<br />location.replace("<a href="http://name.com/mobile/article.php" rel="nofollow">http://name.com/mobile/article.php</a>");}&lt;/script&gt;</p>
<p>It takes me to the correct page initially, then redirects to the first article.</p>
<p>&lt;script language=javascript&gt;if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {<br /> location.replace("<a href="http://name.com/mobile/article.php?" rel="nofollow">http://name.com/mobile/article.php?</a>&lt;?php echo htmlencode($detailRecord['title']) ?&gt;");}&lt;/script&gt;</p>
<p>It takes me to the "named page" but none of the content appears. </p>
<p>I'm using this to link the mobile pages to the articles.</p>
<p><code>&lt;?php foreach ($articlesRecords as $listRecord): ?&gt;<br />&lt;?php $isSelected = ($listRecord['num'] == $detailRecord['num']); ?&gt;<br />&lt;?php if ($isSelected) { print "&lt;b&gt;"; } ?&gt;<br /><br />&lt;?php echo htmlencode($listRecord['_link']) ?&gt;<br /><br />&lt;?php if ($isSelected) { print "&lt;/b&gt;"; } ?&gt;<br />&lt;?php endforeach ?&gt;<br /></code></p>
<p>How do I properly handle this mobile redirect?</p>
<p>Thank you!</p>]]></description>
          <pubDate>Tue, 27 May 2014 10:03:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234054#post2234054</guid>
        </item>
                <item>
          <title>New CMSB Responsive Templates: What browsers should we support?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233958#post2233958</link>
          <description><![CDATA[<p>I'm so excited about this upgrade! When will it launch? Most of my clients use ipads for everything now, so this upgrade will create a better user experience for them. </p>
<p>How will you handle the sidebar responsive nav? Just curious...</p>]]></description>
          <pubDate>Wed, 14 May 2014 05:58:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233958#post2233958</guid>
        </item>
                <item>
          <title>preview defaulting to cms directory</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233623#post2233623</link>
          <description><![CDATA[<p>On one of my client's website, their preview is defaulting to the CMS directory, not the root directory. </p>
<p>So, for example, they try to preview their Blog. </p>

<p>Under the section editor: </p>
<p>List Page Url: blog.php</p>
<p>Detail and Preview Page Url: blogDetails.php</p>

<p>In the General Settings, the website root directory is correct (not pointing to the CMS), as well as the "view website" URL. </p>

<p>When I go to preview, it can't find the page because it's looking for /cms/blogDetails.php.</p>

<p>What did I do wrong? </p>
]]></description>
          <pubDate>Sat, 05 Apr 2014 11:55:09 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233623#post2233623</guid>
        </item>
                <item>
          <title>Category Pages</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233413#post2233413</link>
          <description><![CDATA[<p>I created a category menu that's connected to Blog Entries (multi-listing) by a list record. I want figure out a way to automate Category specific pages within this blog.</p>
<p>I know how to create pages that could take only from a certain category (manually), but is there a way to create one page that automates this? I essentially want my client to keep adding categories as needed and I don't want to keep having to create this category pages manually.</p>
<p>Any thoughts would be much appreciate!</p>
<p>Seriously love your product!</p>]]></description>
          <pubDate>Mon, 10 Mar 2014 12:13:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233413#post2233413</guid>
        </item>
                <item>
          <title>Error message with uploading image in WYSIWYG</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233298#post2233298</link>
          <description><![CDATA[<p>I checked the file permissions and adjusted them. However, I'm still getting the error. Please let me know if you have any other suggestions.</p>]]></description>
          <pubDate>Tue, 25 Feb 2014 08:44:56 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233298#post2233298</guid>
        </item>
                <item>
          <title>Error message with uploading image in WYSIWYG</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233185#post2233185</link>
          <description><![CDATA[<p>One of my clients is experiencing an error when trying to upload an image using the WYSIWYG. Any suggestions?</p>
<p>Warning: imagejpeg(): Unable to open '/public_html/cms/uploads//thumb/march13_001.jpg' for writing: Permission denied in /public_html/admin/lib/image_functions.php on line 70 Error saving file!</p>]]></description>
          <pubDate>Tue, 11 Feb 2014 12:42:08 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233185#post2233185</guid>
        </item>
                <item>
          <title>CMS records conflict with php contact form</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2232363#post2232363</link>
          <description><![CDATA[<p>The php contact form I use conflicts with the CMS records after the contact delivery session has run, thanking the user for the inquiry. </p>
<p>Here's the error I receive: </p>
<p>Notice: Undefined variable: body in /data/17/1/113/93/1602093/user/1726350/htdocs/contact-hudson-valley-wedding-florist.php on line 96 Notice: Undefined variable: _SESSION in /data/17/1/113/93/1602093/user/1726350/htdocs/contact-hudson-valley-wedding-florist.php on line 105 Notice: Undefined index: security_code in /data/17/1/113/93/1602093/user/1726350/htdocs/contact-hudson-valley-wedding-florist.php on line 105</p>
<p>Here's the php code I use for the contact form. Any suggestions on resolving this? </p>
<p><code>&lt;?php if(isset($_POST['send'])){<br /> $emailFrom = "Website Inquiry";<br /> $emailTo = "email address goes here";<br /> $subject = "General Inquiry";<br /><br /> $name = strip_tags($_POST['name']);  <br /> $phone = strip_tags($_POST['phone']); <br /> $email = strip_tags($_POST['email']); <br /> $message = strip_tags(stripslashes($_POST['message'])); <br /><br /><br /> $body .= "Name: ".$name."\n";<br /> $body .= "Phone: ".$phone."\n";<br /> $body .= "Email: ".$email."\n";<br /> $body .= "Message: ".$message."\n";<br /><br /><br /> $headers = "From: ".$emailFrom."\n";<br /> $headers .= "Reply-To:".$email."\n"; <br /><br /> if($_SESSION['security_code'] == $_POST['security_code']){<br /> $success = mail($emailTo, $subject, $body, $headers);<br /> if ($success){<br /> echo '&lt;p class="contact-message-done"&gt;Thank you for your inquiry. We will contact you shortly.&lt;/p&gt;';<br /> } <br /> } else {<br /> echo '&lt;p class="contact-message-done"&gt;Your submission was invalid. Please make sure you filled in all the appropriate fields and please submit again.&lt;/p&gt;';<br /> }<br />} else {<br />?&gt;</code></p>
]]></description>
          <pubDate>Tue, 12 Nov 2013 08:15:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2232363#post2232363</guid>
        </item>
              </channel>
    </rss>
  