<?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%3Adm</link>
        <description></description>
        <pubDate>Sat, 18 Apr 2026 04:52:17 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Adm&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Bulk Insert Fields into cms_accounts table</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243143#post2243143</link>
          <description><![CDATA[<p>Hi Steve, thanks very much for suggestion!</p>
<p>I will investigate the schema files. :)</p>]]></description>
          <pubDate>Thu, 07 Mar 2019 10:26:17 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243143#post2243143</guid>
        </item>
                <item>
          <title>Bulk Insert Fields into cms_accounts table</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243139#post2243139</link>
          <description><![CDATA[<p>Ok, so I installed the developer console plugin and found I can easily add additional fields using this code in the MYSQL Console:</p>
<p>ALTER TABLE `cmsb_accounts`<br />ADD COLUMN stage_1 MEDIUMTEXT,<br />ADD COLUMN stage_2 MEDIUMTEXT,<br />ADD COLUMN stage_3 MEDIUMTEXT,<br />ADD COLUMN stage_4 MEDIUMTEXT;</p>
<p>However I would also like to be able to specify the content for "Field Label" and "Field Type" for these new columns too... (field labels would be same as field names and all field types would be "textfield")</p>
<p>If someone can give me a few pointers on how to do this it would be much appreciated as my mysql skills are quite limited.</p>]]></description>
          <pubDate>Thu, 07 Mar 2019 07:47:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243139#post2243139</guid>
        </item>
                <item>
          <title>Bulk Insert Fields into cms_accounts table</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2243130#post2243130</link>
          <description><![CDATA[<p>Hi,</p>
<p>I have a very large list of extra textfields I would like to add to the cms_accounts table.</p>
<p>Can you advise on the best way of going about this with <span>v3.50</span>.</p>
<p>Many thanks for the help!</p>
<p>dm</p>]]></description>
          <pubDate>Wed, 06 Mar 2019 07:38:59 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2243130#post2243130</guid>
        </item>
                <item>
          <title>Mysql &apos;where&apos; record has upload</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2239262#post2239262</link>
          <description><![CDATA[<p>hi</p>
<p>for some random featured listings on a home page i am limiting a list of records to 3 but i want to only display records where the upload field called "photos" has photos uploaded</p>
<p>is there a way to add to the 'where' clause below to achieve this via the mysql?</p>
<p><code>list($propertyRecords, $propertyMetaData) = getRecords(array(<br /> 'tableName' =&gt; 'property',<br /> 'limit' =&gt; '3',<br /> 'orderBy' =&gt; 'RAND()',<br /> 'loadUploads' =&gt; true,<br /> 'allowSearch' =&gt; false,<br /> 'useSeoUrls' =&gt; true, <br /> 'where' =&gt; "collection = '1'".' AND '."hide_property = '0'",<br /> ));</code></p>
<p>many thanks for the support!</p>]]></description>
          <pubDate>Thu, 28 Jul 2016 10:48:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2239262#post2239262</guid>
        </item>
                <item>
          <title>Replace a letter with multiple instances in a word once in php array</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2236639#post2236639</link>
          <description><![CDATA[<p>I have created a word game in cmsb where users are presented with a randomly selected word in a foreign language and then have to fill in missing letters (which depending on the word length are sometimes randomly removed or sometimes all letters are removed) from the english version of these words into form input fields which are later submitted to extra fields in the user accounts in the database via a form for checking...</p>
<p>The code below works ok except for when a word has more than one instance of a particular letter for examples the word "Bees"</p>
<p>For example it will go through find "e" but then replace <strong>both</strong> instances of the letter "e" with either</p>
<p><code>&lt;input type="text" name="question_1_letter_1" class="inputs" maxlength="1" value="" /&gt;</code></p>
<p>or</p>
<p><code>&lt;input type="text" name="question_1_letter_2" class="inputs" maxlength="1" value="" /&gt;</code></p>
<p>What I really want is for it to just replace once the first "e" it finds so one instance of the letter "e" is replaced by</p>
<p><code>&lt;input type="text" name="question_1_letter_1" class="inputs" maxlength="1" value="" /&gt;</code></p>
<p>and the other instance is replaced with</p>
<p><code>&lt;input type="text" name="question_1_letter_2" class="inputs" maxlength="1" value="" /&gt;</code></p>
<p>here is the main code</p>
<p><code> $one = "question_1_letter_$key1";<br />$two = "question_1_letter_$key2";<br />$three = "question_1_letter_$key3";<br />$four = "question_1_letter_$key4";<br /><br />$string = Bees;<br /><br />$selected_letter1 = B;<br />$selected_letter2 = e;<br />$selected_letter3 = e;<br />$selected_letter4 = s;<br /><br />$Find = Array($selected_letter1, $selected_letter2, $selected_letter3, $selected_letter4);<br /><br />$Replace = Array(<br />"&lt;input type=\"text\" name=\"$one\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;",<br />"&lt;input type=\"text\" name=\"$two\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;",<br />"&lt;input type=\"text\" name=\"$three\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;",<br />"&lt;input type=\"text\" name=\"$four\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;"<br />);<br /><br />$New_string = strtr($string, array_combine($Find, $Replace));<br /><br />echo $New_string;</code></p>
<p>Hope that makes sense! Im still very much a novice php programmer and stuck as to how I can achieve this and may well be overlooking a much simpler solution that I am currently unaware of... if anyone can lend a hand and give me some pointers it would be greatly appreciated!!</p>]]></description>
          <pubDate>Tue, 28 Apr 2015 01:58:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2236639#post2236639</guid>
        </item>
                <item>
          <title>Use getListOptions to pull in list options ONLY if a field has been selected in the current records?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235924#post2235924</link>
          <description><![CDATA[<p>Hi Claire,</p>
<p>Not to worry, unfortunately consulting isn't an option for this site at the moment, I seemed to have found a way around the issue by using some mysql... will leave an example below in case anyone else is looking for something similar...</p>
<p>Thanks again for your time...</p>
<p>&lt;?php<br />$con=mysqli_connect("localhost","my_user","my_password","my_db");<br /><br />if (mysqli_connect_errno())<br />{echo "Failed to connect to MySQL: " . mysqli_connect_error();}</p>
<p>$result = mysqli_query($con,"SELECT * FROM cms_properties GROUP BY bedrooms ORDER BY bedrooms");</p>
<p>echo "&lt;select name=\"bedrooms\" id=\"bedrooms\" &gt;<br />&lt;option value=\"\"&gt;Bedrooms&lt;/option&gt;<br />";</p>
<p>while($row = mysqli_fetch_array($result))</p>
<p>if(@$_REQUEST['bedrooms'] == $row['bedrooms'])<br />{echo "&lt;option selected=\"selected\" value=" . $row['bedrooms'] . " &gt;" . $row['bedrooms'] . "&amp;nbsp;Bedroom" ."&lt;/option&gt;";}<br />else<br />{echo "&lt;option value=" . $row['bedrooms'] . " &gt;" . $row['bedrooms'] . "&amp;nbsp;Bedroom" ."&lt;/option&gt;";}<br />echo "&lt;option value=\"\"&gt;All Bedrooms&lt;/option&gt;&lt;/select&gt;";</p>
<p>mysqli_close($con);<br />?&gt;</p>]]></description>
          <pubDate>Fri, 30 Jan 2015 07:42:53 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235924#post2235924</guid>
        </item>
                <item>
          <title>Use getListOptions to pull in list options ONLY if a field has been selected in the current records?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235904#post2235904</link>
          <description><![CDATA[<p>Hi Claire, </p>
<p>Thanks very much for spending time on this...</p>
<p>I tried to code something else skipping the getlistoptions method and using the usual foreach record code to display lists below:</p>
<p>&lt;select name="bedrooms" id="bedrooms" &gt;</p>
<p>&lt;option value=""&gt;Bedrooms&lt;/option&gt;</p>
<p>&lt;?php foreach ($propertiesbedroomsRecords as $record): ?&gt; <br />&lt;?php if (@$alreadyShown[ $record['bedrooms'] ]++) { continue; } ?&gt;<br />&lt;option value="&lt;?php echo $record['bedrooms'] ?&gt;" &gt;&lt;?php echo $record['bedrooms'] ?&gt;&lt;/option&gt; <br />&lt;?php endforeach; ?&gt; <br />&lt;/select&gt;</p>
<p>But unfortunately with the numerical search drop downs such as number of bedrooms and bathrooms if a number has already been "selected" in the one field it then doesn't display it in the other field (i think because it sees the number 1 in bedrooms for example and then assumes 1 is @$aleadyShown for any other numerical option in the search form), so back to the drawing board... i guess i could add 1 bed, 2 bed... 1 bath, 2 bath etc to make the field values unique but it is a pretty ugly way of going about it</p>
<p>Fingers crossed one of the other devs has an idea re a simpler getlistoptions type method to achieve as I am sure this would be useful for anyone wanting a search form on their listings type site.</p>
<p>And from a visitor point of view it is much more user friendly than displaying search options that are are currently not in the database, saving them wasting time searching for things that don't exist on the site...</p>
<p>Thanks again and all the best!</p>]]></description>
          <pubDate>Thu, 29 Jan 2015 07:21:36 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235904#post2235904</guid>
        </item>
                <item>
          <title>Use getListOptions to pull in list options ONLY if a field has been selected in the current records?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235891#post2235891</link>
          <description><![CDATA[<p>hi claire</p>
<p>thanks for taking a look, much appreciated!</p>
<p>i have been unable to contact my friend to get permission to post a live link (but can send you in a mail if needed) so i have uploaded an example php page</p>
<p>its is a basic property listings site and i just wanted the search form drop downs in the attached example to only pull in the list options if there is a property listing in the database with this option selected...</p>
<p>ie for bedrooms there is currently a list field "bedrooms" with options 1,2,3,4,5,6,7,8,9,10 - i would like that if there are no properties with 10 bedrooms in the database, don't show this in the search form dropdown.. to save visitors searching for something that doesnt exist</p>
<p>&lt;select name="bedrooms" id="bedrooms"&gt;<br />&lt;option value = "" &lt;?php selectedIf($value, @$_REQUEST['bedrooms']);?&gt;&gt;Bedrooms&lt;/option&gt;<br />&lt;?php foreach (getListOptions('properties', 'bedrooms') as $value =&gt; $label): ?&gt;<br />&lt;option value = "&lt;?php echo $value;?&gt;" &lt;?php selectedIf($value, @$_REQUEST['bedrooms']);?&gt;&gt;&lt;?php echo $label; ?&gt;&lt;/option&gt;<br />&lt;?php endforeach ?&gt;<br />&lt;/select&gt;</p>
<p>thanks again for you time!</p>]]></description>
          <pubDate>Wed, 28 Jan 2015 01:50:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235891#post2235891</guid>
        </item>
                <item>
          <title>Use getListOptions to pull in list options ONLY if a field has been selected in the current records?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2235858#post2235858</link>
          <description><![CDATA[<p>Hi everyone,</p>
<p>I have a multi-record section with a table called 'properties' which has four list options:</p>
<p>'property_type', 'town', 'bedrooms' &amp; 'bathrooms'.</p>
<p>I would like to be able to use these four lists to auto-populate drop downs in a search form but only display the options that have been selected in the database records.</p>
<p>I can auto populate the search drop downs no problem but I am unable to narrow down the results to selected list options...</p>
<p>Is it possible to expand on the getListOptions() method and do this?</p>
<p>ie getListOptions('properties','property_type') with some extra code to only display the "selected" list options..</p>
<p>If not could maybe someone point me in the right direction to achieve this...</p>
<p>Many thanks in advance for any help with this!</p>]]></description>
          <pubDate>Tue, 27 Jan 2015 07:38:51 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2235858#post2235858</guid>
        </item>
                <item>
          <title>echo php within preg_replace to allow database update?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234027#post2234027</link>
          <description><![CDATA[<p>Just in case anyone else is looking for a similar solution in the future here is the code I found which works for allowing various replacements... </p>
<p>$string = $selected_word;<br /> $Find = Array($selected_letter, $selected_letter2, $selected_letter3);<br /> $Replace = Array("&lt;input type=\"text\" name=\"one\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;", "&lt;input type=\"text\" name=\"two\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;", "&lt;input type=\"text\" name=\"three\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;");</p>
<p>$New_string = strtr($string, array_combine($Find, $Replace));</p>
<p>echo $New_string;</p>
<p>Cheers!</p>
]]></description>
          <pubDate>Thu, 22 May 2014 07:33:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234027#post2234027</guid>
        </item>
                <item>
          <title>echo php within preg_replace to allow database update?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234022#post2234022</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Sorry for the late reply, thanks ever so much for taking the time to reply, it is really appreciated!</p>
<p>I actually found a dirty work around by bringing the value in using an include from a set field in the database but your way works much much neater, can't believe I didn't spot the name attrribute! Cheers!</p>
<p>One last question if I may:</p>
<p>Words over a certain size have 3 letters taken out (instead of just 1) and are replaced by 3 different input fields each with different name attributes</p>
<p>As suggested by example 2 on the php manual pages <a href="http://es1.php.net/preg_replace" rel="nofollow">http://es1.php.net/preg_replace</a> I have tried using arrays to achieve this but where it loops through it changes all the instances of the selected letter (ie if "i" is a selected letter it will also strip out i from input and the i from my class input) rather than just the one from the original string.</p>
<p>$string = $selected_word;<br />$patterns = array();<br />$patterns[0] = "/$selected_letter/";<br />$patterns[1] = "/$selected_letter2/";<br />$patterns[2] = "/$selected_letter3/";<br />$replacements = array();<br />$replacements[2] = "&lt;input type=\"text\" name=\"test3\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;";<br />$replacements[1] = "&lt;input type=\"text\" name=\"test2\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;";<br />$replacements[0] = "&lt;input type=\"text\" name=\"test1\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;";<br />echo preg_replace($patterns, $replacements, $string);</p>
<p>I know I can choose to replace more than one pattern with the same replacement and if the array route isnt doable I was hoping that it would be possible to do something like this below to define multiple things to replace and multiple replacement values but I can't seem to find any way of doing this...</p>
<p>ie something like this: echo preg_replace("/$selected_letter|$selected_letter2|$selected_letter3/", "&lt;input type=\"text\" class=\"inputs\" maxlength=\"1\" /&gt;", $str);</p>
<p>Do you know of a way around the array issue or an easier way to achieve the same result?</p>
<p>Once again thanks very much for the awesome support!</p>]]></description>
          <pubDate>Tue, 20 May 2014 08:30:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234022#post2234022</guid>
        </item>
                <item>
          <title>echo php within preg_replace to allow database update?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2233952#post2233952</link>
          <description><![CDATA[<p>Hi all,</p>
<p>I am using cms builder to make a kind of vocabulary hangman type game... using php preg_replace to remove random letters from words stored in the cms database and replacing them with text input fields which when the users enter what they think the missing letter is should be which are then submitted to my mysql database for checking as per the addform.php example found on this forum.</p>
<p>I am rather lost on how to convert the input "value" to echo php code needed to import the letter to my cms db...</p>
<p>In my php file I have the following:</p>
<p><code>&lt;? echo preg_replace("/$selected_letter/", "&lt;input type=\"text\" class=\"inputs\" maxlength=\"1\" value=\"\" /&gt;", $str); ?&gt;</code></p>
<p>This echoes out into my page with no problems:</p>
<p><code>&lt;input type="text" class="inputs" maxlength="1" value="" /&gt;</code></p>
<p>What I really need to echo is the following (as per the addform.php):</p>
<p><code>&lt;input type="text" class="inputs" maxlength="1" value="&lt;?php echo htmlspecialchars(@$_REQUEST['test']) ?&gt;" /&gt;</code></p>
<p>Doing the following doesn't works as I am unable to echo <code>&lt;?php echo htmlspecialchars(@$_REQUEST['test']) ?&gt;</code> within the preg_replace echo if that makes sense...</p>
<p><code>&lt;? echo preg_replace("/$selected_letter/", "&lt;input type=\"text\" class=\"inputs\" maxlength=\"1\" value=\"&lt;?php echo htmlspecialchars(@$_REQUEST['test']) ?&gt;\" /&gt;", $str); ?&gt;</code></p>
<p>I would greatly appreciate it if someone more skilled in php could point me in the right direction as to how/if I can acheive this? Maybe preg_replace is not the answer here but I have spent many days searching and not found a closer alternative so far..</p>
<p>Many Thanks!</p>]]></description>
          <pubDate>Tue, 13 May 2014 07:58:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2233952#post2233952</guid>
        </item>
                <item>
          <title>Sum total of upload size for any given record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229373#post2229373</link>
          <description><![CDATA[<p>hi greg</p>
<p>this works great to get the filesize of each individual upload within a record, but i was wondering if there is similar code for the total size of <strong>all</strong> the uploads within a record ie if ten uploads have been uploaded what is the sum total of those ten not just individually if you follow...</p>
<p>cheers!</p>]]></description>
          <pubDate>Thu, 07 Feb 2013 01:47:02 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229373#post2229373</guid>
        </item>
                <item>
          <title>Sum total of upload size for any given record</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229357#post2229357</link>
          <description><![CDATA[<p>hi</p>
<p>i am using the following code to add pdf upload file size information to my detail pages</p>
<p>&lt;?php echo round(filesize($upload['filePath']) * .0009765625 * .0009765625, 2).' MB'; ?&gt;</p>
<p>this works great but i was wondering if there is a similiar simple way to give me the sum total size of all uploads for a given record?</p>
<p>many thanks for you help!</p>
<p>e</p>]]></description>
          <pubDate>Wed, 06 Feb 2013 04:19:18 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229357#post2229357</guid>
        </item>
                <item>
          <title>Make Username Case Sensitive</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229267#post2229267</link>
          <description><![CDATA[<p>I have actually just this minute found a different solution to the problem we had so case sensitivity isn't quite so vital now but that could change so if it is just a few changes I would still be interested in knowing how to implement this for future reference..</p>
<p>Many thanks for your time!</p>]]></description>
          <pubDate>Fri, 01 Feb 2013 12:08:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229267#post2229267</guid>
        </item>
                <item>
          <title>Make Username Case Sensitive</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229266#post2229266</link>
          <description><![CDATA[<p>Hi Greg,</p>
<p>Thanks for the reply, yeah sorry I know its a bit of an odd question to ask but the client would like it to be set up this way if possible.</p>
<p>If it is reasonably straight forward for you to do so, could you possibly tell me what I need to edit.</p>
<p>I'm reasonably comfortable editing the files as we have made a few edits already for report purposes.</p>
<p>Many thanks!</p>
]]></description>
          <pubDate>Fri, 01 Feb 2013 11:55:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229266#post2229266</guid>
        </item>
                <item>
          <title>Make Username Case Sensitive</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229253#post2229253</link>
          <description><![CDATA[<p>hi</p>
<p>can anyone let me know if there is there a way to make the username field case sensitive?</p>
<p>many thanks for you help!</p>
<p>e</p>]]></description>
          <pubDate>Thu, 31 Jan 2013 16:49:29 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229253#post2229253</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229196#post2229196</link>
          <description><![CDATA[<p>your quite right! sorry about that!!!</p>
<p>i have deactivated the previous version and removed it from the server then uploaded and activated your new edit however it does not appear to add a record in outgoing mail when logging into the client area...</p>
<p>one thing i omitted to mention in my previous post is that we are using the membership hack for the user logon time/ip address log as per:</p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2217409#post2217409" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2217409#post2217409</a></p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2213350#post2213350" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2213350#post2213350</a></p>
<p>could that be effecting the sending of alert email somehow?</p>
<p>i believe the only change in the membership plugin is the addition of the following lines:</p>
<p>// Save users last IP</p>
<p>$usersIpHasChanged = ($CURRENT_USER &amp;&amp; $CURRENT_USER['last_ip'] != $_SERVER['REMOTE_ADDR']);<br />if ($usersIpHasChanged) { <br />mysql_update('accounts', $CURRENT_USER['num'], null, array('last_ip' =&gt; $_SERVER['REMOTE_ADDR']));<br />}</p>
<p>// CUSTOM CODE! add record to login_log</p>
<p>global $TABLE_PREFIX;<br />mysql_query(mysql_escapef("INSERT INTO {$TABLE_PREFIX}login_log SET createdDate = NOW(), who = ?, ip = ?", $CURRENT_USER['num'],$_SERVER['REMOTE_ADDR']))</p>]]></description>
          <pubDate>Fri, 25 Jan 2013 13:57:31 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229196#post2229196</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229194#post2229194</link>
          <description><![CDATA[<p>thanks for taking a look greg!</p>
<p>your attached plugin here seems to be identical to the original plugin file?</p>]]></description>
          <pubDate>Fri, 25 Jan 2013 13:36:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229194#post2229194</guid>
        </item>
                <item>
          <title>Website membership - Pages Visited / Logoff Time</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229192#post2229192</link>
          <description><![CDATA[<p>many thanks for all your help greg its really appreciated!</p>
<p>in the decade or so that i have been using interactivetools software i have yet to come across another company with such consistently great support! keep up the good work!</p>]]></description>
          <pubDate>Fri, 25 Jan 2013 12:51:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229192#post2229192</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229191#post2229191</link>
          <description><![CDATA[<p>hi greg</p>
<p>we have had such a poor week with our webhost that we have jumped ship and set up somewhere new!</p>
<p>this has sorted the issue with the cms password reset not working and as per your advice i also have a basic mail script working fine no problems...</p>
<p>the alertAdminLogin plugin still doesnt seem to want to send any mail alerts out though...</p>
<p>do you know of any reason why this would not be working?</p>
<p>has anyone else here has experienced any problems using this plugin with 2.50?</p>
<p>would be nice to confirm the problem isn't between the pc and the chair!</p>
<p>many thanks for your help!</p>]]></description>
          <pubDate>Fri, 25 Jan 2013 12:47:51 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229191#post2229191</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229136#post2229136</link>
          <description><![CDATA[<p>hi greg</p>
<p>cheers for the info, nothing is going to spam so i set up a test email script which i have working on another site on the same hosting companies servers and it is not working here.</p>
<p>i should have tested that out first before coming here! sorry!</p>
<p>also just checked cmsbuilder install on this other site and the strange thing is even though the email script is working the cms installation password reminder on that site isn't working either (it had never been used so never noticed the error)</p>
<p>so kind of double confused now!</p>
<p>hopefully the hosting company will get back to me soon with fix and i can carry on developing the site..</p>
<p>many thanks for your help!</p>]]></description>
          <pubDate>Fri, 18 Jan 2013 00:46:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229136#post2229136</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229125#post2229125</link>
          <description><![CDATA[<p>hi greg</p>
<p>thanks for the help, this is a fresh installation of 2.50 using the membership plugin and admin login alert (i disabled these and had the same issue)</p>
<p>i just set up mail logging and cms builder indeed trying to send out the mail (it leaves a copy of the mail in ougoing)... so i guess its a server issue but not sure where to start?</p>
<p>any tips on where to start on this would be greatly appreciated</p>
<p>many thanks</p>
<p>elliot</p>]]></description>
          <pubDate>Thu, 17 Jan 2013 10:02:44 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229125#post2229125</guid>
        </item>
                <item>
          <title>Website membership - Pages Visited / Logoff Time</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229119#post2229119</link>
          <description><![CDATA[<p>Hi,</p>
<p>I have a login log page set up to record details of when users enter the membership area pages giving me a simple list with username, time entered and ip as per the following posts</p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2217409#post2217409" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2217409#post2217409</a></p>
<p><a href="http://www.interactivetools.com/forum/forum-posts.php?postNum=2213350#post2213350" rel="nofollow">http://www.interactivetools.com/forum/forum-posts.php?postNum=2213350#post2213350</a></p>
<p>Does anyone know a way to record when the user logs off (or logged on time) and what membership pages were visited?</p>
<p>Many thanks for you help!</p>]]></description>
          <pubDate>Thu, 17 Jan 2013 01:07:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229119#post2229119</guid>
        </item>
                <item>
          <title>Password reminders / Emails not being sent</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2229117#post2229117</link>
          <description><![CDATA[<p>hi,</p>
<p>we have an issue with email on our cmsbuilder/server.</p>
<p>we are not receiving emails via the admin password reminder page and the alert admin login plugin which works with the membership plugin also isn't sending mail so i guess i have a bad setting somewhere.</p>
<p>my admin email address uses the same domain as the cms installation.</p>
<p>can anyone give me some hints on where to look to try and resolve this issue.</p>
<p>as far as i can see i have the admin email / server paths etc set up correctly in the general settings but no mail is being sent.</p>
<p>many thanks for you help!</p>]]></description>
          <pubDate>Thu, 17 Jan 2013 00:53:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2229117#post2229117</guid>
        </item>
              </channel>
    </rss>
  