<?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%3Anikkijones</link>
        <description></description>
        <pubDate>Sat, 25 Apr 2026 07:12:00 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Anikkijones&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Category Sections - Separate UL/LI styling</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2197058#post2197058</link>
          <description><![CDATA[Hi Everyone,<br />I'm not sure if anyone has managed to do this yet but i'm having real trouble styling the Category Sections. I've used the code provided by Dave for an Unordered List as posted here:<br />http://www.interactivetools.com/iforum/P64259<br /><br />I am working on a test site here:<br />http://www.salonproductsonline.co.uk/treatmentsdetail.php?Facials-1<br /><br />I have tried using a class for just general UL/LI code but it doesn't work. It just uses the same image/style option for all items.<br /><br />I need the Main Headings, eg. Facials, Body, Gentlemen, etc....to stand out and be styled differently from the sub-menu items. I have tried so many different variations but nothing seems to work! [crazy]<br /><br />Does anyone have any ideas at all? Or has anyone else done this so i can see how they have got it to work?<br /><br />Thanks in advance.<br />Nikki<br />]]></description>
          <pubDate>Wed, 22 Apr 2009 08:37:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2197058#post2197058</guid>
        </item>
                <item>
          <title>Move site/Change hosts/MySQL export/import</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195610#post2195610</link>
          <description><![CDATA[Hi there,<br /><br />My site has been completed on my test server and i'm now ready to go live with it on the clients server using a temporary domain until it is configured properly.<br /><br />So far, i've uploaded all the files as they were on my test server, created a new mysql database on the new server, exported the contents from the previous mysql database into the new one and installed CMS on the new site.<br /><br />I am able to log in but i just get the admin section not any of the section editors i created previously. There were two user accounts set up on my server and these have been transferred to the new server as i can see my two accounts. I also know the rest of the mysql data has been transferred as when i try to create a new section editor - it tells me that the table name already exists/is in use. <br /><br />Am i just missing something really simple? i've used phpmyadmin to export/import each table as it wouldn't let me just move the whole database across.<br /><br />Any input would be greatly appreciated!<br />Nikki [:)]<br />]]></description>
          <pubDate>Tue, 03 Feb 2009 08:07:28 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195610#post2195610</guid>
        </item>
                <item>
          <title>Re: [Dave] css hover description links/passing value from cmsbuilder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195243#post2195243</link>
          <description><![CDATA[dave you are a superstar! it works a treat [laugh]<br /><br />something so simple and i just couldn't see it!<br /><br />thank you so much,<br />nikki.<br />]]></description>
          <pubDate>Fri, 16 Jan 2009 10:17:32 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195243#post2195243</guid>
        </item>
                <item>
          <title>css hover description links/passing value from cmsbuilder</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195217#post2195217</link>
          <description><![CDATA[hi there.<br /><br />i'm working on a site at the moment (on my test server for now - dont worry guys i will be buying a new licence before i move it to my clients!)<br /><br />i've managed to create css hover links for the description so a little more info will be displayed once a user hovers over the menu on the left hand side. however, i thought i could create a new field in cmsbuilder and pass this value to the description box. it has worked to a certain extent as the boxes pop up but it is duplicating the info for each menu item. <br /><br />the site is here:<br />http://nikkijones.accountsupport.com/products.php<br /><br />has anyone any ideas how i could get a unique value for each menu item passed from cms builder?<br /><br />here's the css code:<br /><code>#popup {<br />	color: #000;<br />	background-color: #ffffff;<br />	font-family: arial;<br />}<br /><br />#popup a, #popup a:visited {<br />position: relative;<br />display: block;<br />width: 100px;<br />line-height: 14px;<br />text-align: left;<br />padding: 0 0px;<br />margin: 0;<br />border: 0px solid #666;<br />text-decoration: none;<br />font-size: 1em;<br />font-weight: bold;<br />}<br /><br />#popup a span {display: none;}<br /><br />#popup a:hover { background-color: #ffffff; }<br /><br /><br />#popup a:hover	{<br />color: #f00; background-color: #fff;<br />text-indent: 0; <br />}<br /><br />#popup a:hover span{<br />display: block;<br />position: absolute;<br />top: 0px;<br />left: 170px;<br />width: 320px;<br />margin: 0px;<br />padding: 10px;<br />color: #335500;<br />font-weight: normal;<br />background: #ffffff;<br />text-align: left;<br />border: 1px solid #666;<br />}<br />--&gt;</code><br /><br />and here's the bit around the cmsbuilder code:<br /><code>&lt;div id=&quot;popup&quot;&gt;<br />&lt;?php foreach ($productsRecords as $record): ?&gt;<br />     &lt;a href=&quot;&lt;?php echo $record['_link'] ?&gt;&quot;&gt;<br />	  &lt;font color=&quot;#dd4839&quot;&gt; <br />	  &lt;?php echo $record['title'] ?&gt;&lt;/font&gt;<br />     &lt;span&gt;<br />      &lt;?php echo $productsRecord['title_description'] ?&gt;&lt;/span&gt;&lt;/a&gt;<br />	&lt;?php endforeach; ?&gt;<br /> &lt;/div&gt;<br />    &lt;?php if (!$productsRecords): ?&gt;<br />&lt;br/&gt;&lt;br/&gt;<br />    &lt;?php endif ?&gt;</code><br /><br />any help would be fab - i know its a huge ask but the client wants it so really wanted to see if it can be done!<br />nikki  [crazy]<br />]]></description>
          <pubDate>Thu, 15 Jan 2009 14:40:24 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195217#post2195217</guid>
        </item>
                <item>
          <title>Re: [KaboomJk] List and detail on same page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2195216#post2195216</link>
          <description><![CDATA[Hi there,<br /><br />I'm not sure if this is what you're looking for but it sounds like it. I did the same here:<br />http://www.allianceinpartnership.co.uk/schoolsmainPage.php<br /><br />I created a separate page just for the list and named it schoolsList.php then used a php include on the detail page to pull the list through. So in your right column (assuming that's where you want the list) you would use the code:<br />&lt;?php<br />include(&quot;list.php&quot;);<br />?&gt;<br /><br />then use the code generator to provide you with the code for the list.php page.<br /><br />i hope that makes sense - i dont think i;m very good at explaining things!!!!<br />nikki.<br />[:)]<br />]]></description>
          <pubDate>Thu, 15 Jan 2009 14:16:30 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2195216#post2195216</guid>
        </item>
                <item>
          <title>Moved Site - Upload path / images not showing</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2193192#post2193192</link>
          <description><![CDATA[Hi there, <br /><br />Just wondering if anyone's had this problem, its probably something very simple but having spent all day on and off looking for the answer, i'm having to ask for help! <br /><br />Basically, i had to move the website from one folder to another and now the upload images section isn't working. it allows me to upload the images but they're not there: <br /><a target="_blank" href="http://www.interactivetools.com/forum/forum.cgi?url=http%3A%2F%2Fwww.earthspa.co.uk%2FguidelinesPage.php">http://www.earthspa.co.uk/guidelinesPage.php</a> <br /><br />I tried changing the path in admin and checked the settings.dat file and the path appears to be correct but still no images...i'm at a loss...any ideas anyone? Something that may help... <br /><br />Program Directory: /data01/merlin/public_html/earthspa.co.uk/dotrixcms/cmsAdmin  <br /><br />Upload Directory: /data01/merlin/public_html/earthspa.co.uk/dotrixcms/cmsAdmin/uploads/ <br /><br />Upload Folder URL: /data01/merlin/public_html/earthspa.co.uk/dotrixcms/cmsAdmin/uploads/ <br /><br />Thanks, <br /><br />Nikki.<br />]]></description>
          <pubDate>Tue, 02 Sep 2008 09:53:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2193192#post2193192</guid>
        </item>
                <item>
          <title>Frustrated with WYSIWYG  and random outputs!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2191238#post2191238</link>
          <description><![CDATA[Hi, <br /><br />Firstly i love this product. However, i thought i'd try it out and see how the client gets on before buying more licences. The main problem we're having is with the WYSIWYG editor - its terribly random! We keep getting extra lines, deletion of text and random alignment, the frustrating thing is you change it, save it, it doesn't update the site and when you go back in the editor it is still as it was before you changed it! My client spent two hours this morning trying to delete ONE line, she then contacted me. I spent a further two hours trying to understand why it wouldn't delete and during the process lost a lot of text and formatting which i didn't touch!  <br /><br />The problem is, the WYSIWYG is the main section the client uses therefore its stability is imperative. You sell the product to us, we sell it to them as a self updatable website but then they have problems updating it, the site looks messy and takes too much time to update so i get the angry phone calls [unsure] <br /><br />Most of the site looks fantastic so i'm not sure if its this page in particular which does have a lot of content but in all honesty, i've had this problem with other IT products and the WYSIWYG editors. <br /><br />Is there anything that can be done as i'm worried they'll look elsewhere and i haven't been paid yet?! <br /><br />Many thanks,<br />Nikki.<br />]]></description>
          <pubDate>Thu, 17 Apr 2008 08:56:43 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2191238#post2191238</guid>
        </item>
                <item>
          <title>Re: [Jake] Advanced search help...consultancy help?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2225364#post2225364</link>
          <description><![CDATA[Hi there, <br /><br />I tried making these changes that Jake suggested. However now (even after i've removed any changes i made - i only changed the word categoryNum to keyword!) i am getting this error message every time i try and select an area from the drop down list: <br /><br />Error: createWhereTestFunction error: Unmatched [ in regex; marked by &lt;-- HERE in m/^.*[ &lt;-- HERE unknown.*$/ at (eval 59) line 2. <br /><br />Any ideas? I've gone back to me previous saved version before this error, uploaded and published all and still its there - this site is live so its pretty embarassing. I'm just about losing the will to live - if i never see it again it will be too soon! [mad] <br /><br />nikki.<br />]]></description>
          <pubDate>Mon, 07 Apr 2008 16:12:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2225364#post2225364</guid>
        </item>
                <item>
          <title>Re: [Jake] Advanced search help...consultancy help?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2225298#post2225298</link>
          <description><![CDATA[Hi Jake, <br /><br />Thanks for looking into it for me. Example, if you select: LONDON and Actuarial, you get results for jobs that are in London that haven't been posted in Actuarial. And jobs that have been posted in Actuarial that aren't in London. Do you see what i mean, it needs to retrieve results that match both the criteria. I had this set up easily using your old search engine product with job manager, yet it doesn't want to work with artman and its crucial to the whole site! <br /><br />Can you let me know how you get on please? <br /><br />Cheers Jake, <br /><br />Nikki.<br />]]></description>
          <pubDate>Tue, 25 Mar 2008 03:50:47 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2225298#post2225298</guid>
        </item>
                <item>
          <title>Advanced search help...consultancy help?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2225284#post2225284</link>
          <description><![CDATA[Hi, <br /><br />I recently completed a site using Article Manager. I had upgraded the site from Job Manager. Unfortunately, one of the key features of job manager was the search facility allowed us to choose 'job title' and 'area' and the results would bring up articles that matched both selected results. After several hours of priority consulting i got this site up and running, however the search element will not only show results for those selected. Rather than showing the results for 'area' AND  'category' it shows results for 'area' OR 'category'. It can be seen here:  <br /><br /><a href="http://www.fusionsearch.co.uk/cgi-bin/artman/search.cgi" rel="nofollow">http://www.fusionsearch.co.uk/cgi-bin/artman/search.cgi</a>  <br /><br />Has anyone any idea how i can get this to work? <br /><br />I am willing to pay for consultancy if someone can fix this? <br /><br />Many thanks,<br />Nikki.<br />]]></description>
          <pubDate>Sat, 22 Mar 2008 07:21:33 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2225284#post2225284</guid>
        </item>
                <item>
          <title>Re: [Dave] syndicate or RSS feeds</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190718#post2190718</link>
          <description><![CDATA[its here: <br /><br /><a target="_blank" href="http://www.allianceinpartnership.co.uk/articlerss.php">http://www.allianceinpartnership.co.uk/articlerss.php</a> <br /><br />cheers dave[:)]<br />]]></description>
          <pubDate>Thu, 13 Mar 2008 18:28:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190718#post2190718</guid>
        </item>
                <item>
          <title>Re: [Dave] syndicate or RSS feeds</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190716#post2190716</link>
          <description><![CDATA[Hi Dave, <br /><br />I;m also having a problem settting this up. Maybe i'm just tired and missing something really simple, i dunno. My page is called articlerss.php. I;m trying to get the news articles that are posted. <br /><br /><br />Here is my code: <br /><br />&lt;?php <br />header('Content-type: application/xml; charset=utf-8'); <br />require_once &quot;/home/fhlinux152/a/allianceinpartnership.co.uk/user/htdocs/cmsAdmin/lib/viewer_functions.php&quot;; <br />$options = array(); // NOTE: see online documentation for more details on these options <br />$options['tableName'] = 'news'; // (REQUIRED) MySQL tablename to list record from. Example: 'article'; <br />$options['titleField'] = 'title'; // (optional) MySQL fieldname used in viewer url for search engines. Example: 'title' would display: viewer.php/article_title_here-123 <br />$options['viewerUrl'] = 'http://www.allianceinpartnership.co.uk/newsPage.php'; // (optional) URL of viewer page. Example: '/articles/view.php'; <br />$options['perPage'] = '10'; // (optional) The number of records to display per page. Example: '5'; Defaults to 10. <br />$options['orderBy'] = 'title'; // (optional) Fieldnames to sort by. Example: 'field1, field2 DESC, field3'; <br />$options['pageNum'] = '1'; // (optional) Page number of results to display. Example: '1'; Defaults to ?page=# value, or 1 if undefined <br />list($listRows, $listDetails) = getListRows($options); <br />echo &quot;&lt;?xml version=\&quot;1.0\&quot; encoding=\&quot;utf-8\&quot;?&gt;\n&quot;; <br />?&gt; <br />&lt;rss version=&quot;2.0&quot;&gt; <br />&lt;channel&gt; <br />&lt;title&gt;PUT YOUR SITE NAME HERE&lt;/title&gt; <br />&lt;link&gt;http://EXAMPLE.COM/YOUR/URL/HERE/&lt;/link&gt; <br />&lt;description&gt;YOUR SITE DESCRIPTION GOES HERE&lt;/description&gt; <br />&lt;pubDate&gt;&lt;?php echo date('r'); ?&gt;&lt;/pubDate&gt; <br />&lt;language&gt;en-us&lt;/language&gt; <br />&lt;?php foreach ($listRows as $record): ?&gt; <br />&lt;item&gt; <br />&lt;title&gt;&lt;?php echo htmlspecialchars($record['title']) ?&gt;&lt;/title&gt; <br />&lt;link&gt;&lt;?php echo $record['_link'] ?&gt;&lt;/link&gt; <br />&lt;description&gt;&lt;?php echo htmlspecialchars($record['summary']); ?&gt;&lt;/description&gt; <br />&lt;pubDate&gt;&lt;?php echo date(&quot;r&quot;, strtotime($record['date'])) ?&gt;&lt;/pubDate&gt; <br />&lt;guid isPermaLink=&quot;true&quot;&gt;&lt;?php echo $record['_link'] ?&gt;&lt;/guid&gt; <br />&lt;/item&gt; <br />&lt;?php endforeach ?&gt; <br />&lt;/channel&gt; <br />&lt;/rss&gt; <br /><br /><br />...all i get is feed code error [:(] <br /><br />Cheers, <br />nikki.<br />]]></description>
          <pubDate>Thu, 13 Mar 2008 18:15:28 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190716#post2190716</guid>
        </item>
                <item>
          <title>Re: [Dave] HELP with transfer of hosting company please!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190679#post2190679</link>
          <description><![CDATA[Hi Dave, <br /><br />I've tried that and it takes me back to the install page. When i try and install it again it keeps saying i'm duplicating data, presumably because i've already transferred the database details across...i dunno?! <br /><br />Anyway, i am going to email you the ftp details now along with the control panel details so if you can be so very kind to look into it for. What could take me hours would probably take you minutes! <br /><br />Cheers, <br /><br />nikki [:)]<br />]]></description>
          <pubDate>Tue, 11 Mar 2008 16:51:02 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190679#post2190679</guid>
        </item>
                <item>
          <title>Re: [Dave] HELP with transfer of hosting company please!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190660#post2190660</link>
          <description><![CDATA[Hi Dave, <br /><br />Again that worked a treat. I;ve been trying to import the old database to save time using phpmyadmin from the hosts control panel. Firstly, it wouldn't do it as CMS had already done it so when trying to import it, it kept saying i was trying to duplicate. So, i highlighted all the tables and 'dropped' them. This then allowed me to install the old database's data and all appeared to be well. However when trying to log into admin, i now get this error: <br /><br />MySQL Error: Table 'alliancein1.cms__accesslist' doesn't exist  <br /><br />I notices the accesslist.ini.php file was missing from my list of files under data/schema so i uploaded it again (via normal ftp) but still nothing! <br /><br />Any ideas. <br /><br />Thanks a ton for your help so far!  <br /><br />Nikki.<br />]]></description>
          <pubDate>Mon, 10 Mar 2008 17:57:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190660#post2190660</guid>
        </item>
                <item>
          <title>Re: [Dave] HELP with transfer of hosting company please!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190655#post2190655</link>
          <description><![CDATA[Thanks Dave - its worked [:)] <br /><br />Is there now a way i can transfer all the details across from the existing site i created using cms? Ideally i don't want to contact my host as everything takes the usual 24-48 hours to get back to me and i really dont want to stop on this one until i get it up and running! <br /><br />Cheers,<br />Nikki.<br />]]></description>
          <pubDate>Mon, 10 Mar 2008 16:04:55 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190655#post2190655</guid>
        </item>
                <item>
          <title>HELP with transfer of hosting company please!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190649#post2190649</link>
          <description><![CDATA[Hi, <br /><br />I set up CMS on a test server and Dave helped configure it so it worked. However, i switched hosts to ipowerweb which since the upgrade of platforms have not been very helpful! Due to my restricted time limit (site was supposed to go live last monday!) i switched back to the host streamline.net. As i was told to do a new install, i downloaded the latest upgrade v.1.10 (due to earlier problems) and have tried uploading that, only to get this: <br /><br />Please remove the 'disable_functions' setting in php.ini. <br /><br />...which according to the changelog should've been a bug that was fixed. So, i tried uploading my original earlier version (which worked with this host) which worked in parts but not in others. So i tried to find all the paths and scripts that mention the path to scripting and database names but still no joy. I am literally tearing my hair out [mad] <br /><br />My mind has now gone blank. Any ideas on the easiest way to go about this? I'm not sure what Dave changed on my earlier uploaded version so i'm not sure where to go to change it on the version 1.10. Or is there a quicker way to get my existing site uploaded and change to the new paths, etc? <br /><br />I hope this makes sense. <br /><br />Cheers,<br />Nikki.<br />]]></description>
          <pubDate>Mon, 10 Mar 2008 14:24:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190649#post2190649</guid>
        </item>
                <item>
          <title>Error connecting to MySQL!</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190589#post2190589</link>
          <description><![CDATA[Having had my cms up and running for a while, i decided to change hosts before i went live as i really do not like the one i'm currently using. I've now chaned to ipowerweb. I was advised to do a fresh install but i'm getting this error message on the install page: <br /><br />Error connecting to MySQL:Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) <br /><br />I;ve tried everything and cannot see why this is happening! <br /><br />Any ideas? <br /><br />Nikki [unsure]<br />]]></description>
          <pubDate>Thu, 06 Mar 2008 21:01:03 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190589#post2190589</guid>
        </item>
                <item>
          <title>Re: [Dave] List Viewer not showing up...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190512#post2190512</link>
          <description><![CDATA[Ooooh - that sounds like a better option! Thanks Dave, i will look into it and let you know how i get on [:)]<br />]]></description>
          <pubDate>Thu, 28 Feb 2008 17:13:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190512#post2190512</guid>
        </item>
                <item>
          <title>Re: [Dave] List Viewer not showing up...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190504#post2190504</link>
          <description><![CDATA[Hi Dave, <br /><br />I think i know what you're saying. The things is, i've set up the schools list as a viewer so the client can add news schools on and write all about them. This seemed the easiest way to do this - is there not a way to password protect it this way? With a pull down, how would the client be able to populate the list with schools? <br /><br />Or am i completeley misunderstanding what you've said? [crazy] <br /><br />Cheers,<br />Nikki.<br />]]></description>
          <pubDate>Thu, 28 Feb 2008 16:04:22 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190504#post2190504</guid>
        </item>
                <item>
          <title>Re: [Dave] List Viewer not showing up...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190473#post2190473</link>
          <description><![CDATA[Hi Dave, <br /><br />Thanks for pointing out that Dave, it sorted out the problem. <br /><br />Regarding the password protect, yes that's exactly what i want. Nothing too fancy. Schools are allocated a specific password and they need to type that in to get their schools details. If they forget it, they contact the client (as they contact regularly). Not bothered also whether it pops up or not. I was in a rush so i purchased a password protect script, however each school can still get in with the same password. We need each school to have their own unique password. Does this make sense? <br /><br />Thanks as always for your help <br /><br />Nikki[:)]<br />]]></description>
          <pubDate>Wed, 27 Feb 2008 18:16:01 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190473#post2190473</guid>
        </item>
                <item>
          <title>List Viewer not showing up...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190259#post2190259</link>
          <description><![CDATA[Hi. <br /><br />I've created a list viewer for a schools list using CMS Builder. The list for some reason, is appearing on one page and not on the other, eg: <br /><br /><a target="_blank" href="http://www.interiorcentral.tv/AIP/schoolsmainPage.php">http://www.interiorcentral.tv/AIP/schoolsmainPage.php</a> - the schools list appears on the left <br /><br /><a target="_blank" href="http://www.interiorcentral.tv/AIP/schoolsPage.php?1._Arrow_Vale_High_School-3">http://www.interiorcentral.tv/AIP/schoolsPage.php?1._Arrow_Vale_High_School-3</a> - the school list DOESN'T appear on the left. <br /><br />I have the code 'include &quot;schoolsList.php&quot;;' used on both. <br /><br />Also, we wanted to have a password protected page for each school. This seemed simple in theory, the host provides password protected pages as part of its package. However, as the page is not a fixed page, is it impossible to password protect each page? The site had the whole are password protected before, however we now want each school password protected and i may have to re-do the whole school area if i cannot find a solution [mad] Any ideas? I've searched the net but just keep getting normal php password scripts, not a script for when a specific page is called. <br /><br />Any help would be fab as its driving me crazy  [crazy] <br /><br />Cheers,<br />Nikki [:)]<br />]]></description>
          <pubDate>Mon, 18 Feb 2008 18:31:09 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190259#post2190259</guid>
        </item>
                <item>
          <title>Re: [Dave] Password retrieval</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190103#post2190103</link>
          <description><![CDATA[Thanks Dave - that worked a treat!<br />]]></description>
          <pubDate>Sun, 10 Feb 2008 17:02:19 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190103#post2190103</guid>
        </item>
                <item>
          <title>Password retrieval</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2190051#post2190051</link>
          <description><![CDATA[I know this seems a little dumb, but i've lost my password and need to get into my admin side asap! [unsure] <br /><br />Is there a way to find it? The only others posts like this are for other products and the files are not the same with CMS. <br /><br />Cheers, <br /><br />Nikki.<br />]]></description>
          <pubDate>Tue, 05 Feb 2008 18:44:38 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2190051#post2190051</guid>
        </item>
                <item>
          <title>Re: [Dave] News List Viewer links</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2189883#post2189883</link>
          <description><![CDATA[That worked a treat! <br /><br />The server errors are random, sometimes they happen, sometimes the don't. And even when they do, if i refresh the page, its ok. I'm just a bit worried as I need to demonstrate the site to the company during a presentation in the next couple of weeks and it will be a little embarassing if it keeps happening!  <br /><br />It doesn't seem as bad today so i think i'll see how it goes over the next week and keep you posted. <br /><br />I look forward to hearing from you regarding the pdf's as my clients uses them a lot! <br /><br />Thanks Dave. <br /><br />(i'm definitely going to invest in a few more copies of CMS builder before word gets around and the introductory prices goes!) [:)]<br />]]></description>
          <pubDate>Mon, 21 Jan 2008 19:04:13 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2189883#post2189883</guid>
        </item>
                <item>
          <title>News List Viewer links</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2189879#post2189879</link>
          <description><![CDATA[Hi there, <br /><br />I've now plugged CMS builder into the back of an existing site and i've got to say, i love it!  <br /><br />I was wondering if anyone can help with the following: <br /><br />- my news list viewer is in the left hand column (<a target="_blank" href="http://www.interiorcentral.tv/AIP/about_usPage.php">http://www.interiorcentral.tv/AIP/about_usPage.php</a>) however the links look messy as they show the full file name eg. [url &quot;http://www.interiorcentral.tv/AIP/newsPage.php?David_s_Charity_Trek_-4&quot;][font &quot;Arial&quot;]<span style="color: #000000"><u>newsPage.php?David_s_Charity_Trek_-4</u>[/#000000]</span>[/url]. Is it possible using php to just have the link as 'read more' and not show the full file name - similar to what you can do using html? <br /><br />- I cannot upload pdf's from the wysiwyg editor. I have created an uploads field, allowed pdf extensions and increased the upload size to unlimited. But its still saying pdf's are not allowed. I have version 1.06. <br /><br />- I am having several server errors - mysql error/overload error, etc. (i'm assuming it just doesn't like the software!) and as i had a workaround to get it to work, will it be easy enough to transfer to another host as they have not been very co-operative from start to finish! I may also download the latest release with it being more compatible with the 'behind the times' hosts that i've come across! <br /><br />Any help will be greatly appreciated.  And thanks again for a great piece of software. <br /><br />Nikki [:)]<br />]]></description>
          <pubDate>Mon, 21 Jan 2008 17:06:04 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2189879#post2189879</guid>
        </item>
              </channel>
    </rss>
  