<?xml version="1.0" encoding="UTF-8"?>    <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
      <channel>
        <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
        <link>https://interactivetools.com/forum/forum-posts.php?Notice-CMSB-v2_63-Beta-1-Aug-20th-2014-79675</link>
        <description></description>
        <pubDate>Mon, 20 Apr 2026 05:17:15 -0700</pubDate>
        <language>en-us</language>
        <atom:link href="https://interactivetools.com/forum/forum-posts.php?rss=1&amp;Notice-CMSB-v2_63-Beta-1-Aug-20th-2014-79675" rel="self" type="application/rss+xml" />

                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234821#post2234821</link>
          <description><![CDATA[<p>Thanks Djulia, </p>
<p>I've emailed you some patches to try.  Let's discuss via email and I'll post back here when it's resolved. </p>
<p>Thanks!</p>]]></description>
          <pubDate>Thu, 28 Aug 2014 16:18:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234821#post2234821</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234818#post2234818</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>Your adaptation seems to correct the first error.<br /><br />But, I always obtain error on the common.php file.</p>
<p>[28-Aug-2014 21:15:04] PHP Notice:  Undefined index:  path in ..common.php on line 666<br />[28-Aug-2014 21:15:04] PHP Notice:  Undefined index:  path in ..common.php on line 669</p>
<p>An idea?</p>
<p>Thanks!</p>
<p>Djulia</p>]]></description>
          <pubDate>Thu, 28 Aug 2014 13:38:39 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234818#post2234818</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234811#post2234811</link>
          <description><![CDATA[<p>Thanks Djulia, That's a great find.</p>
<p>Can you try this code block instead?  I've re-arranged the code so none of it will run unless IS_CMS_ADMIN is set (which is set when admin.php is run directly, not by cron).</p>
<p><code>  // adminUrl - update if url path has changed<br />  if (defined('IS_CMS_ADMIN')) {<br />    $hasAdminPathChanged = parse_url(thisPageUrl(), PHP_URL_PATH) != parse_url(@$SETTINGS['adminUrl'], PHP_URL_PATH);<br />    if ($hasAdminPathChanged) { // only update adminUrl when in the CMS admin<br />      $SETTINGS['adminUrl'] = @array_shift(explode('?', thisPageUrl()));  // added in 2.12 - this must be set when admin.php is being access directly so we get the right URL<br />      saveSettings();<br />    }<br />  }</code></p>
<p>Let me know how it goes.</p>]]></description>
          <pubDate>Thu, 28 Aug 2014 11:23:45 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234811#post2234811</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234810#post2234810</link>
          <description><![CDATA[<p>Hi Dave,</p>
<p>I have just noticed that the hours when the errors are recorded, correspond to some scripts (php) which are programmed (executed) on a cron server.</p>
<p>I also obtain this error with these files programmed :<br />[28-Aug-2014 12:15:04] PHP Notice:  Undefined index:  path in ../common.php on line 666<br />[28-Aug-2014 12:15:04] PHP Notice:  Undefined index:  path in ../common.php on line 669</p>
<p>The scripts does not use cron.php. They are programmed directly on the server.</p>
<p>Thanks again!</p>
<p>Djulia</p>]]></description>
          <pubDate>Thu, 28 Aug 2014 10:56:27 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234810#post2234810</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234809#post2234809</link>
          <description><![CDATA[<p>Hi Djulia, </p>
<p>Was that on install or upgrade? </p>
<p>We use the path of the admin script to figure out where other files are, and there's some code on that line that detects the path like this:</p>
<p><code>// adminUrl - update if url path has changed<br /> $hasAdminPathChanged = parse_url(thisPageUrl(), PHP_URL_PATH) != parse_url(@$SETTINGS['adminUrl'], PHP_URL_PATH);</code></p>
<p>It could be that $SETTINGS['adminUrl'] isn't set. You could try adding a @ in front of parse_url.  or this:</p>
<p><code>// adminUrl - update if url path has changed<br /> $hasAdminPathChanged = !@$SETTINGS['adminUrl'] || (parse_url(thisPageUrl(), PHP_URL_PATH) != parse_url(@$SETTINGS['adminUrl'], PHP_URL_PATH));</code></p>
<p><span>Let me know if either of those fix it for you.  Thanks!</span></p>]]></description>
          <pubDate>Thu, 28 Aug 2014 10:07:12 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234809#post2234809</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234805#post2234805</link>
          <description><![CDATA[<p>Hi dave,</p>
<p>I obtain errors on parse_url (http://): <br /><br />PHP Warning:  parse_url (http://): Unable to parses URL in ..init.php one line 541 </p>
<p>Already with the previous version (v2.62).</p>
<p>An idea?</p>
<p>Thanks!</p>
<p>Djulia</p>]]></description>
          <pubDate>Wed, 27 Aug 2014 13:01:00 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234805#post2234805</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234803#post2234803</link>
          <description><![CDATA[<p>Thanks Deborah! :) </p>]]></description>
          <pubDate>Tue, 26 Aug 2014 18:34:44 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234803#post2234803</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234799#post2234799</link>
          <description><![CDATA[<p>Hi. I gave the new beta a test drive and all looks great. I like the new 'live view' for the upload URL and directory.</p>
<p>Looking forward to the release!</p>
<p>~ Deborah</p>]]></description>
          <pubDate>Tue, 26 Aug 2014 10:31:36 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234799#post2234799</guid>
        </item>
                <item>
          <title>Notice: CMSB v2.63 Beta 1 (Aug 20th, 2014)</title>
          <link>https://interactivetools.com/forum/forum-posts.php?postNum=2234785#post2234785</link>
          <description><![CDATA[<p>Hi All, </p>
<p>We've just released CMSB v2.63 Beta 1 (beta list members will get an email with a download link shortly).</p>
<p>This is mostly a maintenance release with the following changes and updates:</p>
<p>MINOR CHANGES<br />- Upload Settings: Upload dir and url now shows live path preview for relative paths<br />- Upload Settings: New admin section "Server Upload Settings" shows PHP settings to assist in identifying server issues</p>
<p>CODE CHANGES &amp; BUG FIXES<br />- Images: Fixed issue where transparent backgrounds weren't being saved when creating thumbnails of larger images<br />- Uploads: 100x faster renaming when larger number of duplicate filenames. Eg: photo.jpg yeilds: photo.jpg, photo_001.jpg, photo_002.jpg, etc<br />- Uploads: Added link to check if flash is installed beside flash uploader option under admin menu<br />- Install: Improved internet connectivity checking for web hosting servers (detects when server firewalls would prevent access to 3rd party APIs)<br />- Install: Improved PHP version detection check code so it works on PHP 4.4 (displays message to upgrade to PHP v5.2.4+)<br />- Codebase: getAbsolutePath() now renamed as absPath() and can calculate filepaths even if they don't exist (unlike PHP's realpath function)<br />- Misc Code and other minor improvements</p>
<p><span>If you're not already on the beta tester email list and you'd like to help beta test (you must own at least 1 CMSB license) you can sign up here: <a href="http://www.interactivetools.com/news/manage.php" rel="nofollow">http://www.interactivetools.com/news/manage.php</a></span></p>
<p>Please post any feedback, questions, or bugs you find! Thanks! </p>
<p>Thanks! :) </p>]]></description>
          <pubDate>Wed, 20 Aug 2014 17:05:54 -0700</pubDate>
          <guid isPermaLink="true">forum-posts.php?postNum=2234785#post2234785</guid>
        </item>
              </channel>
    </rss>
  