<?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%3Afsardoni</link>
        <description></description>
        <pubDate>Tue, 21 Apr 2026 15:44:44 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Afsardoni&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [fsardoni] Importing a database of products from a CSV file</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206406#post2206406</link>
          <description><![CDATA[OK. It works with your suggestion of changing the default &quot;;&quot; to &quot;,&quot;... <br /><br />As a note for others, it only works when changing the import  from <br />&quot;CSV&quot; to &quot;CSV using LOAD DATA&quot; and the default &quot;Fields Terminated By&quot;  = &quot;;&quot; to =&quot;,&quot;<br /><br />Thank you again Chris.<br />]]></description>
          <pubDate>Thu, 26 Aug 2010 15:18:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206406#post2206406</guid>
        </item>
                <item>
          <title>Re: [chris] Importing a database of products from a CSV file</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206403#post2206403</link>
          <description><![CDATA[Hi Chris, thanks again for your help.<br />What I am trying to achieve here is an import of all my products from an existing CSV.<br /><br />Step 1: From PHPmyAdmin I exported the cms_products table (as a CSV file) to see what columns CMS Builder creates  when I created my first product manually.<br /><br />Step 2: I copied the content from my original &quot;products&quot; CSV into the export CSV file from CMS Builder and then tried to upload it to CMS builder DB. <br /><br />In short I want to do a quick upload of all my products instead of creating each record (for my products) manually.<br />]]></description>
          <pubDate>Thu, 26 Aug 2010 15:08:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206403#post2206403</guid>
        </item>
                <item>
          <title>Importing a database of products from a CSV file</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206396#post2206396</link>
          <description><![CDATA[Hi is there a known issue importing a database (products) via phpmyadmin with a .CSV file? Or better yet, is there a particular way that the .CSV file needs to be formatted?<br />I exported what CMS Builder creates as .CSV and then use that to copy and paste all the rows of my products. Saved it and then re-upload the file to the MySQL db. However I get an error:<br /><br />Invalid field count in CSV input on line 2.<br /><br />what's that all about? Any helps as always, is GREATLY Appreciated.<br />]]></description>
          <pubDate>Thu, 26 Aug 2010 11:28:10 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206396#post2206396</guid>
        </item>
                <item>
          <title>Re: [fsardoni] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206364#post2206364</link>
          <description><![CDATA[Ok I think I got it working without the previous error. Thank you.<br />The code now looks like this:<br />&lt;?php<br />  <br /><br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/content/g/o/f/gofgof/html/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /> <br />  list($categoriesRecords, $selectedCategory) = getCategories(array( <br />    'tableName'   =&gt; 'categories', <br />  )); <br /> <br />  list($productsRecords, $productsMetaData) = getRecords(array( <br />    'tableName'   =&gt; 'products', <br />  )); <br /> <br />?&gt; <br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br /> &lt;head&gt; <br />  &lt;title&gt;&lt;/title&gt; <br />  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt; <br /> &lt;/head&gt;<br />&lt;body&gt;<br />  &lt;ul&gt; <br />    &lt;li&gt;&lt;a href=&quot;productsList.php&quot;&gt;(All Products)&lt;/a&gt;&lt;/li&gt; <br />    &lt;?php foreach ($categoriesRecords as $categoryRecord): ?&gt; <br />      &lt;?php echo $categoryRecord['_listItemStart'] ?&gt; <br />       <br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;&lt;b&gt;&lt;?php endif ?&gt; <br />      &lt;a href=&quot;/productsList.php?categories=&lt;?php echo $categoryRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt;&lt;/a&gt; <br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;&lt;/b&gt;&lt;?php endif ?&gt; <br />       <br />      &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />    &lt;?php endforeach ?&gt; <br />  &lt;/ul&gt; <br /> &lt;/body&gt; <br />&lt;/html&gt;<br />]]></description>
          <pubDate>Wed, 25 Aug 2010 14:57:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206364#post2206364</guid>
        </item>
                <item>
          <title>Re: [chris] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206362#post2206362</link>
          <description><![CDATA[Ok! That fixed it for the most part. Thank you. Now I am getting this error message:<br /><br />Notice: Undefined variable: categoryRecord in /home/content/g/o/f/gofgof/html/includes/productnavigation.php on line 27 (All Products)<br /><br />&lt;?php<br />  <br /><br />  // load viewer library<br />  $libraryPath = 'cmsAdmin/lib/viewer_functions.php';<br />  $dirsToCheck = array('/home/content/g/o/f/gofgof/html/','','../','../../','../../../');<br />  foreach ($dirsToCheck as $dir) { if (@include_once(&quot;$dir$libraryPath&quot;)) { break; }}<br />  if (!function_exists('getRecords')) { die(&quot;Couldn't load viewer library, check filepath in sourcecode.&quot;); }<br /> <br />  list($categoriesRecords, $selectedCategory) = getCategories(array( <br />    'tableName'   =&gt; 'categories', <br />  )); <br /> <br />  list($productsRecords, $productsMetaData) = getRecords(array( <br />    'tableName'   =&gt; 'products', <br />  )); <br /> <br />?&gt; <br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt; <br />&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt; <br /> &lt;head&gt; <br />  &lt;title&gt;&lt;/title&gt; <br />  &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot; /&gt; <br /> &lt;/head&gt;<br />&lt;body&gt;<br />  &lt;ul&gt; <br />    &lt;li&gt;&lt;a href=&quot;/productsList.php?categories=&lt;?php echo $categoryRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;(All Products)&lt;/a&gt;&lt;/li&gt; <br />    &lt;?php foreach ($categoriesRecords as $categoryRecord): ?&gt; <br />      &lt;?php echo $categoryRecord['_listItemStart'] ?&gt; <br />       <br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;&lt;b&gt;&lt;?php endif ?&gt; <br />      &lt;a href=&quot;/productsList.php?categories=&lt;?php echo $categoryRecord['num'] ?&gt;&quot;&gt;&lt;?php echo $categoryRecord['name'] ?&gt;&lt;/a&gt; <br />      &lt;?php if ($categoryRecord['_isSelected']): ?&gt;&lt;/b&gt;&lt;?php endif ?&gt; <br />       <br />      &lt;?php echo $categoryRecord['_listItemEnd'] ?&gt; <br />    &lt;?php endforeach ?&gt; <br />  &lt;/ul&gt; <br /> &lt;/body&gt; <br />&lt;/html&gt;<br />]]></description>
          <pubDate>Wed, 25 Aug 2010 14:37:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206362#post2206362</guid>
        </item>
                <item>
          <title>Re: [fsardoni] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206348#post2206348</link>
          <description><![CDATA[Hi Chris another issue I discovered is that when I am clicking on my side navigation links while in the productsList.php page I get all the records always. When I then click on the product that was found in the productsList.php I go to the productDetail.php page which is correct but when I then click back on any other link the url changes to:<br />http://www.greetingsoffaith.com/productDetail.php?category=32<br />instead of showing me or bringing me back to:<br />http://www.greetingsoffaith.com/productsList.php?category=32:<br /><br />Why is that? and Or should it be that way?<br />Thank you<br />]]></description>
          <pubDate>Wed, 25 Aug 2010 10:43:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206348#post2206348</guid>
        </item>
                <item>
          <title>Re: [chris] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206341#post2206341</link>
          <description><![CDATA[Hi Chris, where do I change that to reflect the field &quot;categories&quot;??<br />Thank you.<br />Yes I did check the Sub-categories Tutorial, infact some of the code is lifted from there.<br />]]></description>
          <pubDate>Wed, 25 Aug 2010 08:41:16 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206341#post2206341</guid>
        </item>
                <item>
          <title>Re: [chris] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206322#post2206322</link>
          <description><![CDATA[Hi Chris, thank you for your help:<br />The link is: http://www.greetingsoffaith.com/productsList.php<br />Please find all my files attached.<br /> I am also having this issue where the products are displaying a number instead of the category name... It's a mess. Sorry and thank you.<br /><br />PS.forgive the look it is not css stylized yet.<br />]]></description>
          <pubDate>Tue, 24 Aug 2010 15:16:46 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206322#post2206322</guid>
        </item>
                <item>
          <title>Re: [fsardoni] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206319#post2206319</link>
          <description><![CDATA[Now I can't seem to have the categories finding and displaying the proper products. Can anyone help? Thank you<br />]]></description>
          <pubDate>Tue, 24 Aug 2010 14:28:19 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206319#post2206319</guid>
        </item>
                <item>
          <title>Re: [fsardoni] Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206318#post2206318</link>
          <description><![CDATA[Ok I found one solution: removing the line 1 :<br />&lt;?php header('Content-type: text/html; charset=utf-8'); ?&gt;<br />of the navigation fixed it.<br />]]></description>
          <pubDate>Tue, 24 Aug 2010 14:03:06 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206318#post2206318</guid>
        </item>
                <item>
          <title>Creating a side menu with categories of products</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2206317#post2206317</link>
          <description><![CDATA[Hi I need some help in creating a side menu with categories of products.<br />I have built it following some directions from this forum but I am having problems with the following error:<br /><br />Warning: Cannot modify header information - headers already sent by (output started at /home/content/g/o/f/gofgof/html/productsList.php:29) in /home/content/g/o/f/gofgof/html/includes/productnavigation.php on line 1 <br /><br />Can someone please help me or just point me to the right thread in this forum?<br />Many thanks in advance.<br />]]></description>
          <pubDate>Tue, 24 Aug 2010 13:55:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2206317#post2206317</guid>
        </item>
              </channel>
    </rss>
  