<?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%3Adan_999</link>
        <description></description>
        <pubDate>Thu, 04 Jun 2026 00:34:12 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Adan_999&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [dan_999] IE9 Warning for AM 2 Users</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210111#post2210111</link>
          <description><![CDATA[For anyone good with code I think the following is what is wrong: <br /><br />  <br /><br />&lt;!-- dynamic list table --&gt;<br />  &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;<br />    &lt;tbody id=&quot;$_fieldName:htmlEncoded$:rows&quot; style=&quot;display: none&quot;&gt;<br />    &lt;/tbody&gt; <br /><br />    &lt;tbody id=&quot;$_fieldName:htmlEncoded$:max_rows_reached&quot; style=&quot;display: none&quot;&gt;<br />    &lt;/tbody&gt; <br /><br />    &lt;tbody id=&quot;$_fieldName:htmlEncoded$:empty_list&quot; style=&quot;display: none&quot;&gt;<br />     &lt;tr class=&quot;listRowOdd&quot;&gt;&lt;td colspan=&quot;5&quot; align=&quot;center&quot; height=&quot;21&quot;&gt;Loading category list...&lt;/td&gt;&lt;/tr&gt;<br />    &lt;/tbody&gt; <br /><br /><br />    &lt;tbody id=&quot;$_fieldName:htmlEncoded$:add_row&quot; style=&quot;display: none&quot;&gt;<br />    &lt;tr&gt;<br />     &lt;td align=&quot;center&quot; colspan=&quot;5&quot;&gt;<br />      &lt;input type=&quot;hidden&quot; name=&quot;$_fieldName:htmlEncoded$:add:categoryNum&quot; id=&quot;$_fieldName:htmlEncoded$:add:categoryNum&quot; value=&quot;0&quot; /&gt;<br />      &lt;a href=&quot;#&quot; onclick=&quot;dlist_addNewRow('$_fieldName:javascriptSafe$', categoryList_createRowHTML); return false;&quot;&gt;add another category&lt;/a&gt;<br />     &lt;/td&gt;<br />    &lt;/tr&gt;<br />    &lt;/tbody&gt;<br />  &lt;/table&gt; <br /><br />  &lt;span id=&quot;$_fieldName:htmlEncoded$:tmpHTML&quot;&gt;&lt;/span&gt;<br />  &lt;!-- /dynamic list table --&gt; <br /><br />  <br /><br />  &lt;!-- dynamic list javascript --&gt;<br />&lt;script type=&quot;text/javascript&quot;&gt;&lt;!-- <br /><br />// count rows displays so we can't determine which row is first row and not show erase link for primary category<br />var CATEGORY_ROW_COUNTER = 0; <br /><br />// ----------------------------------------------------------------------------<br />// Function    : categoryList_createRowHTML<br />// Description : create HTML for a row (used when generating and updating list)<br />// ---------------------------------------------------------------------------- <br /><br />function categoryList_createRowHTML(fields) { <br /><br />  // short alias fields<br />  var listname             = fields._listname;<br />  var fieldname            = fields._listname;<br />  var rowNum               = fields._num;<br />  var fieldnameColonRowNum = fieldname +':'+ rowNum;<br />  var fieldnameCommaRowNum = &quot;'&quot; + fieldname + &quot;','&quot; + rowNum + &quot;'&quot;; <br /><br />  // category list<br />  var categoryList = [<br />    // &quot;category Num&quot;, &quot;category breadcrumb&quot;<br />    $articleEditorCategoryList$<br />    &lt;!-- templateCell : articleEditorCategoryRow --&gt;<br />    [ &quot;$_optionValue:javascriptSafe$&quot;, &quot;$_breadcrumbText:javascriptSafe$&quot;],<br />    &lt;!-- /templateCell : articleEditorCategoryRow --&gt;<br />  ]; <br /><br />  // create option list<br />  var categoryOptionList = '';<br />  for (var index in categoryList) {<br />    var categoryNum        = categoryList[index][0];<br />    var categoryBreadcrumb = categoryList[index][1];<br />    var isSelected         = categoryNum == fields.categoryNum;<br />    var selectedAttribute  = (isSelected == '1') ? 'selected=&quot;selected&quot;' : '';<br />    categoryOptionList += '&lt;option value=&quot;'+ categoryNum+ '&quot; ' +selectedAttribute+ '&gt;' +categoryBreadcrumb+ '&lt;/option&gt;\n';<br />  } <br /><br />  // html encoded values before we insert them into HTML<br />  for (var thisname in fields) {<br />    fields[thisname] = htmlEncode( fields[thisname] );<br />  } <br /><br />  // get action html<br />  var isFirstRow = (++CATEGORY_ROW_COUNTER &lt;= 2) ? 1 : 0;  // dlist_errorChecking calls createRowHtml once on init causing counter to be 2 for first row<br />  var actionHtml = '';<br />  if (isFirstRow) { actionHtml = &quot;&quot;; }<br />  else            { actionHtml = '&lt;a href=&quot;#&quot; onclick=&quot;dlist_removeRow(' +fieldnameCommaRowNum+ '); return false;&quot;&gt;remove&lt;/a&gt;'; } <br /><br />  var rowHTML = ''<br />  + ' &lt;tr id=&quot;' +fields._listname+ ':' +fields._num+ '&quot;&gt;\n'<br />  + '   &lt;td&gt;\n'<br />  + '    &lt;select name=&quot;'+fieldnameColonRowNum+':categoryNum&quot;\n'<br />  + '        onchange=&quot;dlist_saveRowOnChange(' +fieldnameCommaRowNum+ ')&quot; &gt;\n'<br />  + '    &lt;option value=&quot;&quot;&gt;&amp;lt;select&amp;gt;&lt;/option&gt;\n'<br />  +      categoryOptionList<br />  + '    &lt;/select&gt;\n'<br />  + '   &lt;/td&gt;\n'<br />  + '   &lt;td align=&quot;center&quot;&gt;&amp;nbsp;' +actionHtml+ '&lt;/td&gt;\n'<br />  + ' &lt;/tr&gt;\n'; <br /><br />  return rowHTML;<br />} <br /><br />// create dynamic list<br />dlist_init(&quot;$_fieldName:javascriptSafe$&quot;, categoryList_createRowHTML);<br />//dlist_debugger('$_fieldName:javascriptSafe$'); <br /><br />// create at least one row<br />if (CATEGORY_ROW_COUNTER &lt;= 1) {<br />  dlist_addNewRow('$_fieldName:javascriptSafe$', categoryList_createRowHTML);<br />} <br /><br />// --&gt;&lt;/script&gt;<br />  &lt;!-- /dynamic list javascript --&gt; <br /><br />In the _CustomEditFields.html template. Could be wrong mind and good luck to anyone who can sort it!<br />]]></description>
          <pubDate>Tue, 15 Mar 2011 09:49:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210111#post2210111</guid>
        </item>
                <item>
          <title>Re: [BillG] IE9 Warning for AM 2 Users</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2210109#post2210109</link>
          <description><![CDATA[The issue was the category list on the create article page not loading. <br /><br />I've found a workaround for anyone who uses IE9. <br /><br />Edit the following file: <br /><br />templates &gt; admin &gt; menus &gt; _wrapper.html <br /><br />Add the following line of code: <br /><br />&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; /&gt; <br /><br />directly after the &lt;head&gt; : <br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot;  &quot;<a target="_blank" href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt; &lt;html xmlns=&quot;<a target="_blank" href="http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml</a>&quot;&gt;<br /> &lt;head&gt;<br />&lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=EmulateIE7&quot; /&gt;<br />  &lt;title&gt;$settings.titlebar$&lt;/title&gt;<br />  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt;<br />  &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;$_weburl$css/ui.css&quot; /&gt; <br /><br />  <br /><br />You'll probably notice there are two &lt;head&gt; sections within this document, I think it's only the second one you need to edit but to be safe do it to both. This will force IE9 to work in compatability mode.<br />]]></description>
          <pubDate>Tue, 15 Mar 2011 09:45:15 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2210109#post2210109</guid>
        </item>
                <item>
          <title>Re: [gwiley] AM2 Article Content Year stops at 2010</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208869#post2208869</link>
          <description><![CDATA[Cheers for this, had a panic on there!<br />]]></description>
          <pubDate>Mon, 03 Jan 2011 06:51:52 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208869#post2208869</guid>
        </item>
                <item>
          <title>Re: [gwiley] IE9 Warning for AM 2 Users</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2208868#post2208868</link>
          <description><![CDATA[Over 50% of internet users use Internet Explorer so ignoring them or suggesting they change to firefox doesnt seem like the right answer! I think we should work with the browser / user and not against them. <br /><br />Don't forget the new IE is faster and more secure than FF. <br /><br />Also, Chrome doesnt work with the WYSIWYG editor in Article Manager. <br /><br />Cheers<br />]]></description>
          <pubDate>Mon, 03 Jan 2011 06:50:45 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2208868#post2208868</guid>
        </item>
                <item>
          <title>Re: [dan_999] AM - Publishing Rules - Search</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206858#post2206858</link>
          <description><![CDATA[Actually I should say - if you have the search box coded onto a page somewhere you won't need a rule for it. <br /><br />If you have the search box on a seperate page and 'include' that in your page then you will.<br />]]></description>
          <pubDate>Thu, 16 Sep 2010 08:39:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206858#post2206858</guid>
        </item>
                <item>
          <title>Re: [marlowreview] AM - Publishing Rules - Search</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206857#post2206857</link>
          <description><![CDATA[Hi,<br />Don't think you need a publishing rule for the search box. <br /><br />You'll find the search box here: <a target="_blank" href="http://www.yoursite.com/cgi-bin/search.cgi">http://www.yoursite.com/cgi-bin/search.cgi</a> and the templates to edit in the usual templates folder. <br /><br />What are you trying to do?<br />]]></description>
          <pubDate>Thu, 16 Sep 2010 08:37:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206857#post2206857</guid>
        </item>
                <item>
          <title>IE9 Warning for AM 2 Users</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206856#post2206856</link>
          <description><![CDATA[I've just installed the beta of Internet Explorer 9 and discovered some fields in the Article Manager Admin area don't work [:(] <br /><br />The drop down boxes for Category List in the add article page as an example. <br /><br />If anyone has any tips on how to fix, please let me know! <br /><br />Cheers<br />]]></description>
          <pubDate>Thu, 16 Sep 2010 08:34:22 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206856#post2206856</guid>
        </item>
                <item>
          <title>Re: [Donna] Internet Explorer 8 - WYSIWYG not working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227689#post2227689</link>
          <description><![CDATA[  <br /><br />Cheers Donna, yea discovered that mode today so been using that. <br /><br />Can you keep us updated of any updates please? <br /><br />Also, IE8 doesnt format some of article managers styles very well either, for example everything in publish rules seems centered. <br /><br />cheers <br /><br />Dan<br />]]></description>
          <pubDate>Tue, 24 Mar 2009 12:32:40 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227689#post2227689</guid>
        </item>
                <item>
          <title>Re: [nancy] New to Article Manager 2</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227677#post2227677</link>
          <description><![CDATA[There are some useful tutorials here: <br /><br /><a href="http://www.interactivetools.com/docs/articlemanager2/tutorials/index.html" rel="nofollow">http://www.interactivetools.com/docs/articlemanager2/tutorials/index.html</a> <br /><br />and info about templates, publishing etc. in the online userguide that's quite useful as well: <br /><br /><a href="http://www.interactivetools.com/docs/articlemanager2/templates/index.html" rel="nofollow">http://www.interactivetools.com/docs/articlemanager2/templates/index.html</a> <br /><br />Cheers<br />Dan<br />]]></description>
          <pubDate>Mon, 23 Mar 2009 04:02:21 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227677#post2227677</guid>
        </item>
                <item>
          <title>Re: [nancy] New to Article Manager 2</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227672#post2227672</link>
          <description><![CDATA[Hi, <br />Its not my software, i just use it, been a customer for a good few years now!<br /><br />You'll need to keep the template names the same as the publishing rules will refer to them. Just keep another copy of your templates so you can always refer back to them when something goes wrong!<br /><br />Initially you shouldnt need to do anything with the publish rules but if you ever want a certain page different from the others you'll need to look at the publish rules<br /><br />Dan<br />]]></description>
          <pubDate>Sun, 22 Mar 2009 09:08:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227672#post2227672</guid>
        </item>
                <item>
          <title>Re: [nancy] New to Article Manager 2</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227670#post2227670</link>
          <description><![CDATA[Hi,<br />One you get your head round it, you'll soon pick it up. <br /><br />Best thing to do is design your site using front page as normal and make sure you have at least a design for: <br /><br />index page <br /><br />article page <br /><br />category page <br /><br />Then, take a look at the article manager templates and copy all the 'article manager' code over to each of your templates. Make sure you call your templates the same name as article manager do and save them in the same place. <br /><br />This should at least get your basic site set up. <br /><br />Think of each of your folders you have built as 'categories', think of each index page within your folder as a category page. Set up categories using the same name as you have for the folders to keep all your links the same. <br /><br />You look like you have a large site and changing all of hat over to article manager will be a massive task! You'll have to keep all your page names the same, set your templates up to so you can input meta-tags, try and keep all your page titles the same etc. I would expect it to take you months if I'm honest, but good luck it will be worth it in the end. <br /><br />Dan<br />]]></description>
          <pubDate>Sun, 22 Mar 2009 03:56:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227670#post2227670</guid>
        </item>
                <item>
          <title>Internet Explorer 8 - WYSIWYG not working</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227662#post2227662</link>
          <description><![CDATA[Anyone else having problems with the WYSIWYG editor when using the new Internet Explorer 8? <br /><br />Cheers<br />]]></description>
          <pubDate>Fri, 20 Mar 2009 02:54:34 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227662#post2227662</guid>
        </item>
                <item>
          <title>The specified CGI application misbehaved by not returning a complete set of HTTP headers</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227588#post2227588</link>
          <description><![CDATA[  <br /><br />Hi,<br />Wonder if anyone might know the answer to this?<br /><br />I've just set up a new windows 'virtual server' hosting account, meaning I have full access to windows, iis and a nice plesk control panel. <br /><br />All is working fine, except when I try to run /cgi-bin/admin.cgi I get the following message: <br /><br /><i>The specified CGI application misbehaved by not returning a complete set of HTTP headers</i> <br /><br />I have checked permissions and all look ok, I have php and perl installed and working ok. I have mapped cgi to the perl path. <br /><br />But still no luck! <br /><br />Any ideas as to what else I could check please? <br /><br />Thanks<br />Dan<br />]]></description>
          <pubDate>Mon, 09 Mar 2009 10:57:30 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227588#post2227588</guid>
        </item>
                <item>
          <title>Re: [KaboomJk] Replace CMS Builder?</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227310#post2227310</link>
          <description><![CDATA[I personally think Article Manager is way more powerful than CMS builder.<br /><br />Anything you can do with CMS builder you can do with Article Manager and so much more!<br />]]></description>
          <pubDate>Sun, 18 Jan 2009 12:57:49 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227310#post2227310</guid>
        </item>
                <item>
          <title>Re: [svsanchez] Removing Printer version pages from Google index</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2227084#post2227084</link>
          <description><![CDATA[Hi,<br />I had the same problem and use the no-follow tag from this post on all my printer pages: <br /><br /><a href="http://www.interactivetools.com/iforum/Products_C2/Article_Manager_2_F31/gforum.cgi?post=52867;t=search_engine#52867" rel="nofollow">http://www.interactivetools.com/iforum/Products_C2/Article_Manager_2_F31/gforum.cgi?post=52867;t=search_engine#52867</a> <br /><br />thanks <br /><br />Dan<br />]]></description>
          <pubDate>Thu, 11 Dec 2008 05:19:21 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2227084#post2227084</guid>
        </item>
                <item>
          <title>Re: [lewisf947] Content Slider - Formatting</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226736#post2226736</link>
          <description><![CDATA[The formatting of text should all be in your CSS file. <br /><br />You'll find this in the templates\single pages folder.<br />]]></description>
          <pubDate>Sat, 25 Oct 2008 08:51:49 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226736#post2226736</guid>
        </item>
                <item>
          <title>Re: [Donna] Â£ symbol</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226735#post2226735</link>
          <description><![CDATA[Xeeem,<br />I think you are being a little awkward in your responses considering you are asking for help! <br /><br />Just as another note I use: <br /><br />&lt;META http-equiv=Content-Type content="text/html; charset=windows-1252"&gt; <br /><br />in my templates as the uft-8 one never worked properly for me with English characters such as the  sign. My site is UK based though.<br />]]></description>
          <pubDate>Sat, 25 Oct 2008 08:49:51 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226735#post2226735</guid>
        </item>
                <item>
          <title>Re: [javidtwins] serious novice : how to put article links on home page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226515#post2226515</link>
          <description><![CDATA[Hi Kevin,<br /><br />I'll try and take you through how to put the last five articles on your home page. <br /><br />First of all you need to create a new html template that will be used to list the last five articles. <br /><br /><b>Create Web Template</b> <br /><br />So create a new webpage called 'featuredarticles.htm' <br /><br />and insert the following code: <br /><br />&lt;!-- template insert : $articleList$ --&gt; <br />&lt;!-- templatecell : articleRow --&gt; <br />&lt;h2&gt;&lt;a href="$published.articlePage.url$"&gt;$article.title$&lt;/a&gt;&lt;/h2&gt;&lt;br&gt; <br /><br />&lt;!-- /templatecell : articleRow --&gt; <br /><br /><br />Then upload it to your cgi-bin/articlelists folder on your website. <br /><br /><b>Create Publish Rule</b> <br /><br />Now you need to log in to your article manager install, click into admin and then into publish rules.<br /><br />Create a new rule with the following info: <br /><br />Rule Name: Featured Articles<br />Rule Description: Top 5 articles on homepage<br />Rule Type: a list of articles<br />Template: articlelists/featuredarticles.htm (The one you just uploaded)<br />Placeholder: published.featuredarticles<br /><br />Pulished Files: one file. <br />Filename: top5.&lt;ext&gt;<br /><br />Limit Results: 1 to 5 <br /><br />Everything else can be left as default. <br /><br />Save and publish rule. <br /><br /><b>Test</b> <br /><br />To make sure this works, type in your website address / top5.your extension.<br />So if you publish your site with asp as your extension you should be able to browse to: <br /><br /><a href="http://www.YOURSITE.com/top5.asp" rel="nofollow">http://www.YOURSITE.com/top5.asp</a> - this should now list your last 5 articles, now its just a case of including this file on your homepage.<br /><br /><b>Include on homepage<br /><br /></b>Insert the following line onto your homepage: (Ensure your homepage can take inlcudes - usually needs to be shtml / asp etc.)<br /><b>&lt;!--#include virtual="/top5</b>.yourextension"<b> --&gt;</b> <br /><br />That *should* be all you need to do. <br /><br />I've customised mine that much that I'm unsure as to what's standard and what I've created so if anything doesnt quite work just let me know. <br /><br />Good luck - Dan.<br />]]></description>
          <pubDate>Fri, 12 Sep 2008 00:57:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226515#post2226515</guid>
        </item>
                <item>
          <title>Re: [Dave] Google Chrome + Artman Admin...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226507#post2226507</link>
          <description><![CDATA[Hi Dave,<br /><br />Is a new Article Manager in the works then? If so can we have a few sneaky hints at what changes you've made....? <br /><br />Cheers<br />]]></description>
          <pubDate>Wed, 10 Sep 2008 08:59:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226507#post2226507</guid>
        </item>
                <item>
          <title>Re: [Bovine Juice] AM and Google</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226506#post2226506</link>
          <description><![CDATA[Hi,<br /><br />Personally I would have changed my publish path to: <br /><br /><a href="http://soundsxp.com/news/Free_Witchita_MP3s.shtml" rel="nofollow">http://soundsxp.com/news/Free_Witchita_MP3s.shtml</a> <br /><br />dropping the 'artman2/publish/' bit. It may be a bit late now if your site is already established though? <br /><br />You should also run your site through the <a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a> - whilst not essential, clean error free code helps with search engine spidering. <br /><br />For the sitemaps, I purchased a generator software package from <a href="http://www.xml-sitemaps.com/" rel="nofollow">http://www.xml-sitemaps.com/</a> - this will then crawl your site and automatically create a sitemap for you. A sitemap is very useful as the search engines can crawl and find all your pages much easier. Once you have a sitemap, register with Google webmasters tools, Yahoo Site Explorer and Live Webmasters. You can then upload your sitemap details directly to the search engines. <br /><br />Also your sites homepage seems quite slow to load, but not sure if this is just my connection or not. <br /><br />Its a massive site - must have taken you a lot of work to develop!!<br />]]></description>
          <pubDate>Wed, 10 Sep 2008 08:56:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226506#post2226506</guid>
        </item>
                <item>
          <title>Re: [javidtwins] serious novice : how to create a popup window</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226503#post2226503</link>
          <description><![CDATA[You could either ensure the taget of the link is set to _blank or you could create a javascript popup window. <br /><br />You would need to edit your articlepage.html template to inlcude this code: <br /><br />&lt;script type="text/javascript"&gt; <br /><br />//JK Popup Window Script (version 3.0)- By JavaScript Kit (<a href="http://www.javascriptkit.com" rel="nofollow">http://www.javascriptkit.com</a>)<br />//Visit JavaScriptKit.com for free JavaScripts<br />//This notice must stay intact for legal use <br /><br />function openpopup(popurl){<br />var winpops=window.open(popurl,"","width=,height=,status,scrollbars,resizable")<br />}<br />&lt;/script&gt; <br /><br /><br /><br />Then as you create your article you would need to switch to view source and use this code each time you wanted a popup link: <br /><br />&lt;a href="javascript:openpopup('<a href="http://www.google.com" rel="nofollow">http://www.google.com</a>')"&gt;Click here to open window&lt;/a&gt; <br /><br />Dan<br />]]></description>
          <pubDate>Wed, 10 Sep 2008 08:11:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226503#post2226503</guid>
        </item>
                <item>
          <title>Re: [javidtwins] serious novice : how to put article links on home page</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226502#post2226502</link>
          <description><![CDATA[Is your homepage PHP, ASP, SHTML or in a format that accepts page includes? <br /><br />Article manager is capable of producing a page that will list your last 5 articles etc. and you could just 'include' this page into your normal homepage. <br /><br />You would need to create a new template and a new publish rule but that should be it. <br /><br />Dan<br />]]></description>
          <pubDate>Wed, 10 Sep 2008 07:55:15 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226502#post2226502</guid>
        </item>
                <item>
          <title>Re: [Bovine Juice] AM and Google</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226501#post2226501</link>
          <description><![CDATA[  <br /><br />Do you have a sitemap and have you posted it to webmasters tools etc.? <br /><br />Can you post your sites link up so we can take a look? <br /><br />cheers<br />Dan<br />]]></description>
          <pubDate>Wed, 10 Sep 2008 07:46:25 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226501#post2226501</guid>
        </item>
                <item>
          <title>Re: [JonnyCav] Google Chrome + Artman Admin...</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226463#post2226463</link>
          <description><![CDATA[To be fair Chrome has only just been released into BETA.... <br /><br />Give them a chance!<br />]]></description>
          <pubDate>Wed, 03 Sep 2008 07:00:13 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226463#post2226463</guid>
        </item>
                <item>
          <title>Re: [Kimber] search box question</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2226359#post2226359</link>
          <description><![CDATA[  <br /><br />I've probably changed my templates quite a bit but you should have something like this in your code which will bring the search box in: <br /><br /> &lt;!--#include virtual="$published.searchbox.webpath$" --&gt; <br /><br />If you remove that line and re-publish all then you shouldnt have the search box appear anymore. <br /><br />Alternatively, you could edit this page: <br /><br />/templates/singlepages/basicsearchbox.html  <br /><br />And replace that with your Google search box code, that way you don't need to edit any of your other article or category pages. Just make sure you take a back up first so you can revert back later should you need to. <br /><br />Dan<br />]]></description>
          <pubDate>Thu, 14 Aug 2008 02:53:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2226359#post2226359</guid>
        </item>
              </channel>
    </rss>
  