<?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%3Aalissibronte</link>
        <description></description>
        <pubDate>Sun, 03 May 2026 07:34:09 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-search.php?k=user%3Aalissibronte&amp;rss=1" rel="self" type="application/rss+xml" />

                <item>
          <title>Re: [Dave] Translators Needed: CMS Builder Multi-Language Beta</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218715#post2218715</link>
          <description><![CDATA[Hello Dave,<br /><br />where can I get lib language files to help in spanish translation?<br /><br /><br />Thanks!<br />]]></description>
          <pubDate>Mon, 10 Dec 2012 06:11:58 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218715#post2218715</guid>
        </item>
                <item>
          <title>Re: [Dave] Translators Needed: CMS Builder Multi-Language Beta</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2218629#post2218629</link>
          <description><![CDATA[I can help with Spanish language if you want and no one else is doing.<br /><br />[laugh]<br />]]></description>
          <pubDate>Wed, 28 Nov 2012 05:40:48 -0800</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2218629#post2218629</guid>
        </item>
                <item>
          <title>Re: [greg] Relative Website root directory</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217882#post2217882</link>
          <description><![CDATA[Hi Greg,<br /><br />my uploads are not working correctly for now. <br /><br />To get working setup I have to set Upload Folder URL to <b>/subdir/uploads/</b> instead <b>/uploads/</b><br /><br />I want to setup a relative Upload Folder URL because I want to create a Master CMS that I going to upload on different subdirectories and hosts.<br /><br />I thought that Website Root was using to append in Upload URL and getting a full path whatever subdirectory is using.<br /><br /><br />For example:<br /><br />http://www.domain.com/cms (here my uploads settings work /uploads/)<br />http://www.domain.com/subdirectory1/cms (here dont work and I have to setup a specific Upload Folder URL /subdirectory1/uploads/)<br /><br /><br />Any help?<br /><br />Thanks in advance.<br />]]></description>
          <pubDate>Thu, 20 Sep 2012 02:45:50 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217882#post2217882</guid>
        </item>
                <item>
          <title>Relative Website root directory</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217867#post2217867</link>
          <description><![CDATA[Hi guys,<br /><br />I'm using CMSB 2.15 and I'm trying to relativize Website Root Directory for easy change of cms dir.<br /><br />For example:<br /><br />I have my CMS in http://www.domain.com and I want to change to http://www.domain.com/master<br /><br />When I made this change then CMS uploads don't work.<br /><br /><br />My settings:<br /><br />Website Root Directory: /master<br />Upload Directory: ../uploads/<br />Upload Folder URL: /uploads/<br /><br /><br />I thought that Website Root Dir was needed to append it to upload and get a relative path for uploads but not work.<br /><br />The only fix I found was changing Upload Folder URL to: /master/uploads/<br /><br /><br />It's a easy fix but I need relative path to get an easy manage (master CMS) of my multiple licenses.<br /><br /><br />What can I do?<br /><br /><br />Thanks in advance.<br />]]></description>
          <pubDate>Wed, 19 Sep 2012 08:51:48 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217867#post2217867</guid>
        </item>
                <item>
          <title>Re: [Jason] MultiSearch</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217439#post2217439</link>
          <description><![CDATA[Once again you've helped me a lot.<br /><br />Now I have to get the last step, extract images from the news that match the search.<br /><br /><br />Great! Thank you Jason.<br />]]></description>
          <pubDate>Tue, 14 Aug 2012 01:55:52 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217439#post2217439</guid>
        </item>
                <item>
          <title>Re: [Jason] MultiSearch</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217422#post2217422</link>
          <description><![CDATA[Hi guys,<br /><br />i'm trying to do a multisearch page but i can't understand how search fields works.<br /><br />Here is my code:<br /><code>//SEARCH CODE<br /><br />    $searchOptions = array(); <br />    $searchOptions['keywords'] = @$FORM['q']; <br />    $searchOptions['perPage'] = &quot;15&quot;; <br />    $searchOptions['debugSql'] = &quot;0&quot;; <br /><br />    $searchTables = array(); <br />    <br />    $searchTables['thome'] = array( <br />    'viewerUrl' =&gt; 'index.php', <br />    'titleField' =&gt; 'title', <br />    'summaryField' =&gt; 'text', <br />    'searchFields' =&gt; array('text'), <br />    ); <br />    <br />    $searchTables['history'] = array( <br />    'viewerUrl' =&gt; 'history.php', <br />    'titleField' =&gt; 'title', <br />    'summaryField' =&gt; 'text', <br />    'searchFields' =&gt; array('title','text'), <br />    ); <br />    <br />    $searchTables['news'] = array( <br />    'viewerUrl' =&gt; 'news.php', <br />    'titleField' =&gt; 'title', <br />    'summaryField' =&gt; 'text', <br />    'searchFields' =&gt; array('title','text'), <br />    ); <br />    <br />    list($searchRows, $searchDetails) = searchMultipleTables($searchTables, $searchOptions);<br />    <br />    $searchRow = @$searchRows[0];</code><br /><br /><code>&lt;form method=&quot;post&quot; action=&quot;/search.php&quot;&gt;<br />&lt;input type=&quot;text&quot; name=&quot;q&quot; value=&quot;&quot; /&gt;<br />&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Search&quot; class=&quot;submit&quot; /&gt;<br />&lt;/form&gt;<br /><br />&lt;?php foreach ($searchRows as $record): ?&gt;<br />   &lt;p&gt;&lt;a href=&quot;&lt;?php echo $record['_link']; ?&gt;&quot; title=&quot;&lt;?php echo htmlspecialchars($record['title']); ?&gt;&quot;&gt;&lt;?php echo htmlspecialchars($record['title']); ?&gt;&lt;/a&gt;&lt;/p&gt;<br />&lt;?php endforeach; ?&gt;</code><br /><br /><br />My questions:<br /><br />Is possible to set form search field with multiple keywords?<br />e.x: &lt;input type=&quot;text&quot; name=&quot;preview_text,text,type,line,meta_description&quot; value=&quot;&quot; /&gt;<br />$searchOptions['keywords'] = @$FORM['preview_text,text,type,line,meta_description']; <br /><br />I dont understand how works these params:<br />'titleField' =&gt; 'title', <br />'summaryField' =&gt; 'text',<br /><br />I'm getting error Undefined index: title. Please help me a little.<br /><br />Thank you, regards!<b><br />]]></description>
          <pubDate>Mon, 13 Aug 2012 03:34:18 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217422#post2217422</guid>
        </item>
                <item>
          <title>Re: [Jason] Auto regenerate RSS</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217379#post2217379</link>
          <description><![CDATA[Thanks for the explanation Jason.<br /><br />Now I have a doubt. Every time someone accesses the file rss.php, the server has to process the page to return the result. What I wanted was to create a rss.xml file is created only when the content changed.<br /><br />What do you think about this?<br />]]></description>
          <pubDate>Thu, 09 Aug 2012 03:54:17 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217379#post2217379</guid>
        </item>
                <item>
          <title>Auto regenerate RSS</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217357#post2217357</link>
          <description><![CDATA[Hi guys,<br /><br />I just created my page RSS but I wonder if there is a trigger to catch new content in the CMS  so you can return to rebuild the xml file.<br /><br />When I say trigger I mean functions like newContent(), updateContent(), etc. So, for example:<br /><br /><code>if (newContent() || updateContent()){<br />     createRSS();<br />}</code><br /><br />Thank you!<br />]]></description>
          <pubDate>Wed, 08 Aug 2012 05:31:24 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217357#post2217357</guid>
        </item>
                <item>
          <title>Re: [Jason] Rebuild CMS Schema</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217330#post2217330</link>
          <description><![CDATA[Sorry Jason,<br /><br />was working in the wrong directory. Everything is correct.<br /><br />Regards!<br />]]></description>
          <pubDate>Tue, 07 Aug 2012 01:13:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217330#post2217330</guid>
        </item>
                <item>
          <title>Rebuild CMS Schema</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217302#post2217302</link>
          <description><![CDATA[Hi guys,<br /><br />I tried to find a &quot;News&quot; section schema file but I can't found it.<br />However, I find that there are deleted sections schema files.<br /><br />Is there any way to rebuild all the schema files in order to have a data / schema clean?<br /><br /><br />Thank you in advance!<br />]]></description>
          <pubDate>Mon, 06 Aug 2012 05:15:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217302#post2217302</guid>
        </item>
                <item>
          <title>Re: [Jason] Notice: Undefined offset: 1 in [&apos;DOCUMENT_ROOT&apos;]/CMS/lib/database_functions.php on line 507</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217251#post2217251</link>
          <description><![CDATA[Hi Jason,<br /><br />I dont know why but I tried groupBy sentence in getRecords method and didn't work. Now I tried it again and now its works, maybe I typed it wrong [laugh]<br /><br />Thank you!<br />]]></description>
          <pubDate>Wed, 01 Aug 2012 01:19:01 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217251#post2217251</guid>
        </item>
                <item>
          <title>Re: [Dave] Notice: Undefined offset: 1 in [&apos;DOCUMENT_ROOT&apos;]/CMS/lib/database_functions.php on line 507</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217240#post2217240</link>
          <description><![CDATA[Hi!<br /><br />I used the 'mysql_query_fetch_all_assoc' to create a custom query with GROUP BY clause, but I got a problem.<br /><br />This works great:<br /><code>$pressRecords = mysql_query_fetch_all_assoc(&quot;SELECT * FROM {$TABLE_PREFIX}press GROUP BY country&quot;);<br />  foreach ($pressRecords as $record) { <br />    print &quot;title: {$record['title']}&lt;br/&gt;\n&quot;; <br />  }</code><br /><br />but I cant access to Uploads fields like:<br /><code>foreach ($pressRecords as $record):<br />   foreach ($record['images'] as $upload):<br />      &lt;img src=&quot;&lt;?php echo $upload['urlPath']; ?&gt;&quot; alt=&quot;&lt;?php echo $upload['info1']; ?&gt;&quot; /&gt;<br />   endforeach;<br />endforeach;</code><br /><br />What can I do?<br />]]></description>
          <pubDate>Tue, 31 Jul 2012 10:10:35 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217240#post2217240</guid>
        </item>
                <item>
          <title>Re: [Jason] Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217228#post2217228</link>
          <description><![CDATA[2nd Level Support sent!<br />]]></description>
          <pubDate>Mon, 30 Jul 2012 03:37:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217228#post2217228</guid>
        </item>
                <item>
          <title>Re: [Jason] Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217169#post2217169</link>
          <description><![CDATA[Thanks Jason for take a look of my project.<br /><br />I thought the folders were automatically created by CMSB.<br />In fact if you look the folders are automatically created in the CMS directory: webroot/cms/section<br /><br />instead: webroot/uploads/images/section<br /><br />If I create manually a directory in webroot/uploads/images/section, its works but CMSB still creating the same directory on webroot/cms/section<br /><br />Can anyone explain me this 'double dir creation'?<br /><br />Thanks you again!<br />]]></description>
          <pubDate>Wed, 25 Jul 2012 11:45:32 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217169#post2217169</guid>
        </item>
                <item>
          <title>Re: [alissibronte] Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217161#post2217161</link>
          <description><![CDATA[2nd Level Support Request sent!<br /><br />I have given full access to my CMSB hoping that you can solve the problem.<br /><br />Thank you, best regards.<br />]]></description>
          <pubDate>Wed, 25 Jul 2012 06:19:14 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217161#post2217161</guid>
        </item>
                <item>
          <title>Re: [Jason] Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217158#post2217158</link>
          <description><![CDATA[Thank you Jason,<br /><br />I'll finish setting up and completing the CMS content. When finished I will send a ticket to test uploads configuration.<br /><br />Regards.<br />]]></description>
          <pubDate>Wed, 25 Jul 2012 02:09:26 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217158#post2217158</guid>
        </item>
                <item>
          <title>Re: [Jason] Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217136#post2217136</link>
          <description><![CDATA[Hi Jason,<br /><br />Thanks for your help but still not working.<br /><br />I do not understand may be happening, so I thought it might be a bug in CMSB.<br /><br />Any other help please?<br /><br />Thank you.<br />]]></description>
          <pubDate>Tue, 24 Jul 2012 09:51:11 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217136#post2217136</guid>
        </item>
                <item>
          <title>Problem with CMS Builder 2.15 and uploads dirs</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2217119#post2217119</link>
          <description><![CDATA[Hi IT team,<br /><br />I recently updated to 2.15 CMSBuilder and I got an upload dirs issue.<br /><br />My General Settings:<br />[IMG]http://i47.tinypic.com/fk8j13.png[/IMG]<br /><br />My History section custom upload dirs:<br />[IMG]http://i50.tinypic.com/117fyvq.png[/IMG]<br /><br />And this, my result:<br />[IMG]http://i50.tinypic.com/w8ni43.png[/IMG]<br /><br />As u can see, I got a good result like left directorie tree, but CMSB created a empty <b>history</b> folder (right tree) in CMS dir.<br /><br />Is this a CMSB issue? I'm doing something wrong?<br /><br />Plz help me! Thank you.<br />]]></description>
          <pubDate>Mon, 23 Jul 2012 08:16:04 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2217119#post2217119</guid>
        </item>
                <item>
          <title>Re: [Jason] CMSB project multidomain. Custom upload dir issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216912#post2216912</link>
          <description><![CDATA[Thank you Jason, <br /><br />2nd Level Support Request sent!<br />]]></description>
          <pubDate>Mon, 09 Jul 2012 11:38:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216912#post2216912</guid>
        </item>
                <item>
          <title>CMSB project multidomain. Custom upload dir issue</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2216905#post2216905</link>
          <description><![CDATA[Hi CMSB team,<br /><br />We bought 4 CMSB licenses 1month ago to create 4 copies of the same CMSB installation on different domains.<br /><br />We tried to relative all directories: Web root directory, custom upload dirs (one for each section) but when I copy my installation in other domain, the upload don't work.<br /><br />My settings:<br /><br />Web Root Directory: /<br />Custom Directory Path: /uploads/images/news/<br />Custom Folder Url: /uploads/images/news/<br /><br /><br />In summary, how can I make a unique project (only license key change) that works in all my domains?<br /><br /><br />Please I need quick help!<br /><br />Thank you!<br />]]></description>
          <pubDate>Mon, 09 Jul 2012 05:55:08 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2216905#post2216905</guid>
        </item>
              </channel>
    </rss>
  