We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 28042 ☆ A M B ☆
    • 24,524 Posts
    The login and welcome screen can be found in the assets/templates/manager folder. The login page uses a style block in the document head.
      Studying MODX in the desert - http://sottwell.com
      Tips and Tricks from the MODX Forums and Slack Channels - http://modxcookbook.com
      Join the Slack Community - http://modx.org
      • 34162
      • 1 Posts
      Okay, I found it. Thanks Susan smiley

      Wouldn’t it make more sense that if the manager theme contains a login.html, or any of the other html files, this would replace the files in the assets/templates folder?

      That way a theme design can be kept in one place and would be easier to install.
        • 32725
        • 107 Posts
        Bug 1:
        Description: No alerts on deleting the keywords.
        Reason: Missing some part of code in manage_metatags.dynamic.php line 20
        Solution: replace the next code:
        	<?php for($i=0;$i<$limit;$i++) {
        		$row=mysql_fetch_assoc($rs);
        		?>
        

        with the folowing one
        <?php 	
        	$sql = "SELECT * FROM $dbase.`".$table_prefix."site_keywords` ORDER BY keyword ASC";
        	$rs = mysql_query($sql);
        	$limit = mysql_num_rows($rs); 
        	for($i=0;$i<$limit;$i++) {
        		$row=mysql_fetch_assoc($rs);
        	?>
        


        Bug 2:
        Description: Changing the template and then hitting "Cancel" button in javascript confirm window resets template to blank.
        Reason: Missing call of javascript function, that stores the template.
        Solution: Append the folowing code to the end of mutate_content.dynamic.php
        <script type="text/javascript">
        storeCurTemplate();
        </script>
        


        Bug 3:
        Description: Broken images in Image TV Preview using Internet Explorer.
        Reason: Not hiding image when it’s src attribute is empty and IE tries to render the this image.
        Solution: Add one line of code to Image TV Preview ln 86 (before "elem.getParent().adopt(div.adopt(img));")
                  if (url == '') img.setStyle('display', 'none');
        


        Bug 4:
        Description: Date and Image TV changing doesn’t work correct in docManager.
        Reason: Wrong base_url set in tv.ajax.php.
        Solution:
        Replace the line
        $base_url = MODX_BASE_URL;
        

        with the following
        $base_url = str_replace("assets/modules/docmanager/", "", MODX_BASE_URL);
        

        Replace "document.mutate" with "document.templatevariables" everywhere in the file.
        Replace "$base_url .’/manager/media" with "$base_url .’manager/media"

        All bugs were found by Temus (I’ve just translated them from Russian) in MODx 0.9.6.3 and they are still present in Evo.
          My portfolio
          Самурай без меча подобен самураю с мечом, только без меча.
          • 32725
          • 107 Posts
          Oh.. and some more:

          1.
          Hardcoded English "and" word on TV adding/editing page instead of "+"
          Replace "and" to "+" in mutate_tmplvars.dynamic.php line 258

          2.
          docManager still uses old version of datepicker.

          3.
          old phpMailer class has a bug. It breaks Russian email subject when splitting base64encoded UTF-8 string to chunks.
          Please update it with 2.0.0 version: http://sourceforge.net/projects/phpmailer/files/

          Update

          4.
          docManager TV editing has a bug with languages
          The button "insert" for image ang file TVs has no value attribute. So it’s just grey with no text on it.
          And text string "Ignore these Template Variables (comma-separated values): " is allways in English.
          Solution:
          Edit tv.ajax.php
          add
          $modx->getSettings();
          at line 11 after creating modx object, so getLang method can take the data from modx->config array.
          add
          global $dm
          in renderFormElement function, so it can use $dm->lang property
          replace
          $_POST['langInsert']
          with
          $dm->lang['DM_tv_ajax_insertbutton']
          everywhere in this file.
            My portfolio
            Самурай без меча подобен самураю с мечом, только без меча.
            • 10487 MODX Staff
            • 1,535 Posts
            Quote from: Wuron at Jul 26, 2009, 08:29 AM

            Bug 4:
            Description: Date and Image TV changing doesn’t work correct in docManager.
            Logged as MODX-1023 in Jira and fixed in SVN commit 5537.

            @Wuron: Thanks for the bug reports, it would help us tremendously if you could log bugs here: http://svn.modxcms.com/jira/

            Just helps us with keeping track of the bugs and not losing them in the forum smiley

            EDIT: The DocManager module has also been recently updated in SVN to use the new DatePicker.
              Garry Nutting
              Senior Developer
              MODX, LLC

              Email: [email protected]
              Twitter: @garryn
              Web: modx.com
              • 25663 MODX Staff
              • 12,272 Posts
              Is there a way to hide some fields or tabs on the front end? This is way too much for non-technical front end users (like clients) imho.
              Use Manger Manger, which should be working with 1.0 now.

              I have to fix line-ending in some of the include-files (empty rows after ?>), e.g. categories.inc.php and user_settings.inc.php.
              not shure what’s going wrong since RC2 here? probably, that error might only occours if you install a new system?
              Grrr. That shouldn’t be happening, and is a new problem. If you’re committing to SVN, PLEASE make sure you have line endings set to unix line endings in your editors and do not put any whitespace or lines after closing ?>.

              iRolf, could you submit a bug to JIRA with the offending files, please.

              was the one who made the 1000 issue,
              so.. did I win anything? smiley
              Fame, fortune and the loving adoration of the MODx community!
                Ryan Thrash, MODX Co-Founder
                Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
                • 15082
                • 195 Posts
                Just did an test-install and encountered a small installer issue:

                While doing the checks if necessary directorys are writable, the installer indicates that the ../assets/images/ directory isn’t writable, even if it is.
                After viewing the action.summary.php file of the installer, I figured out, that it also requires the ../assets/files, ../assets/flash and ../assets/media direcorys to be writable but only asks for the ../assets/images/ directory.

                BTW: Nice work - as usual!

                greetz
                JUSI
                  • 22668
                  • 718 Posts
                  What is this function for? $modx->event_params
                  Found it in ditto. $ditto_params =& $modx->event_params;
                    • 25663 MODX Staff
                    • 12,272 Posts
                    Something to do with Ditto, and I’m not sure we’ll get a clear answer on that... might be best to ask in Ditto forums.

                    $modx->event->params is where Evo keeps the snippet/plugin parameters, which Ditto uses.
                      Ryan Thrash, MODX Co-Founder
                      Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
                      • 25663 MODX Staff
                      • 12,272 Posts
                      Quote from: jusicgn at Jul 27, 2009, 06:11 AM

                      While doing the checks if necessary directorys are writable, the installer indicates that the ../assets/images/ directory isn’t writable, even if it is.
                      After viewing the action.summary.php file of the installer, I figured out, that it also requires the ../assets/files, ../assets/flash and ../assets/media direcorys to be writable but only asks for the ../assets/images/ directory.

                      The base english file does include these descriptions in the language file. I don’t think German has been updated yet.
                        Ryan Thrash, MODX Co-Founder
                        Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me