We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 32241
    • 1,495 Posts
    I just tested 776, the modxgreen looks awesome. Still amaze with what Banzai did smiley
    Btw, I don’t really like the big red error warning for first installation. Can we make it a little friendlier? grin
      Wendy Novianto
      [font=Verdana]PT DJAMOER Technology Media
      [font=Verdana]Xituz Media
      • 18397
      • 3,250 Posts
      Still getting this problem with 795 from the trunk

      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 78
      
      Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 81
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 94
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 114
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 124
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 136
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 152
      
      Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 172
      Couldn't determine next publish event!
      Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 218
      Couldn't determine next unpublish event!
      Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/httpd/vhosts/modxdev.net/httpdocs/MODx_795/manager/processors/cache_sync.class.processor.php on line 228
      


      And I still can’t login. This is on the same server that runs modxcms.com so this is a BIG problem...
        • 7455
        • 2,204 Posts
        Had a quick look
        so far i saw lots of icons missing or having a wrong path looks like some have the path to the modxtheme and some to the original theme:
        /manager/media/style/MODx/images/icons/copy.gif is missing but when duplicating in a document its refering to:
        /manager/media/images/icons/copy.gif , that folder is not there anymore.

        the path to the modx logo on the loginscreen is wrong:
        http://www.hilverda.net/manager/media/style/MODx//images/logoaccess.jpg
        must be:
        http://www.hilverda.net/manager/media/style/MODx/images/misc/logoaccess.jpg

        when installing I got no errors.
        will try it again download a fresh version and start over see if it forget copying any files.

        Dimmy
          follow me on twitter: @dimmy01
          • 6726
          • 7,075 Posts
          Quote from: Dimmy at Mar 21, 2006, 01:06 AM
          Had a quick look
          so far i saw lots of icons missing or having a wrong path looks like some have the path to the modxtheme and some to the original theme:

          Yeah you might have missed it but I made a list of what was missing above on this post

          @Wendy : agree with you about this error message, a little stressful for newbie, I guess... it’s nice to attract attention, but maybe to much red here...
            .: COO - Commerce Guys - Community Driven Innovation :.


            MODx est l'outil id
            • 25663 MODX Staff
            • 12,272 Posts
            Mark, funny thing is, I’ve got it running on the same server. Did you replace all the files, including the stuff in the assets folder before running the upgrade?
              Ryan Thrash, MODX Co-Founder
              Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
              • 18397
              • 3,250 Posts
              Ryan, It was a clean install from scratch.
                • 25663 MODX Staff
                • 12,272 Posts
                Mind you my install was actually an upgrade on an existing site... hmmm...
                  Ryan Thrash, MODX Co-Founder
                  Follow me on Twitter at @rthrash or catch my occasional unofficial thoughts at thrash.me
                  • 33337
                  • 3,975 Posts
                  RE-Factored grin

                  here is little replacement from me, if it looks good:

                  In main index.php (0.9.2-pre)

                  Replace:
                  <?php  // <- strip me out!
                  
                  // get the required includes
                  if($database_user=="") {
                  	$rt = @include_once "manager/includes/config.inc.php";
                  	if(!$rt) {
                  	echo "
                  		<style type=\"text/css\">
                  		* {margin: 0px; padding: 0}
                  		body {
                  			margin: 50px;
                  			background: #eee;
                  			}
                  		.install {
                  			padding: 10px;
                  			border-top: 10px solid #f22;
                  			border-bottom: 5px solid #f22;
                  			background: #f99;
                  			margin: 0 auto;
                  			font: 120%/1em Georgia, Arial, Helvetica, sans-serif;
                  			text-align: center;
                  			}
                  		p {
                  			margin: 20px 0 20px 0;
                  			}
                  		.link a:link, .link a:visited{
                  			font-size: 200%;
                  			color: #f22;
                  			text-decoration: underline;
                  			margin-top: 30px;
                  			padding: 5px;
                  			}
                  		.link a:hover {
                  			background: #f22;
                  			color: #fff;
                  			}
                  		</style>
                  				<div class=\"install\">
                  					  <p>It seems you haven't installed MODx yet, because MODx couldn't found the configuration file.</p>
                  					  <p class=\"link\"><a href='install'>Install Now!</a></p>
                  				</div> ";
                  		exit;
                  	}
                  }
                  


                  With:
                  <?php  // <- strip me out!
                  
                  // get the required includes
                  if($database_user=="") {
                  	$rt = @include_once "manager/includes/config.inc.php";
                  	if(!$rt) {
                  	echo "
                  		<style type=\"text/css\">
                  		* {margin: 0px; padding: 0}
                  		body {
                  			margin: 50px;
                  			background: #eee;
                  			}
                  		.install {
                  			padding: 10px;
                  			border-top: 10px solid #690;
                  			border-bottom: 5px solid #690;
                  			background: #9c6;
                  			margin: 0 auto;
                  			font: 120%/1em Georgia, Arial, Helvetica, sans-serif;
                  			text-align: center;
                  			color: #444;
                  			}
                  		p {
                  			margin: 20px 0 20px 0;
                  			}
                  		.link a:link, .link a:visited{
                  			font-size: 200%;
                  			color: #000;
                  			text-decoration: underline;
                  			margin-top: 30px;
                  			padding: 5px;
                  			}
                  		.link a:hover {
                  			background: #000;
                  			color: #fff;
                  			}
                  		</style>
                  				<div class=\"install\">
                  					  <p>It seems you haven't installed MODx yet, because MODx couldn't found the configuration file.</p>
                  					  <p class=\"link\"><a href='install'>Install Now!</a></p>
                  				</div> ";
                  		exit;
                  	}
                  }
                  


                  See the preview of changes here.

                  NOTE: Also check if phrase/sentence/words are correct. tongue

                  Thanks

                  zi
                    Zaigham R - MODX Professional | Skype | Email | Twitter

                    Digging the interwebs for #MODX gems and bringing it to you. modx.link
                    • 2762
                    • 1,198 Posts
                    Quote from: davidm at Mar 21, 2006, 02:24 AM


                    Yeah you might have missed it but I made a list of what was missing above on this post

                    @Wendy : agree with you about this error message, a little stressful for newbie, I guess... it’s nice to attract attention, but maybe to much red here...


                    Thanks David I’ve fixed all these missing images in this release.
                    Everyone can try it at http://test.tattoocms.it/manager/ (user guest pass modxcms)
                      Free MODx Graphic resources and Templates www.tattoocms.it
                      -----------------------------------------------------

                      MODx IT  www.modx.it
                      -----------------------------------------------------

                      bubuna.com - Web & Multimedia Design
                      • 2762
                      • 1,198 Posts
                      I’ve a problem with
                      files.dynamic.action.php - all links to images after line 382 doesn’t works

                      All these lines starts with

                      $files_array[$filecounter][’text’] = "<img src=’media/style/…..

                      I’ve tried

                      media/style/’.$theme.’images/

                      media/style/$manager_theme/

                      media/style/<?php echo $manager_theme ? "$manager_theme/":""; ?>images/..


                      but not works L
                      Some icons are broken in the file manager (see test server)
                        Free MODx Graphic resources and Templates www.tattoocms.it
                        -----------------------------------------------------

                        MODx IT  www.modx.it
                        -----------------------------------------------------

                        bubuna.com - Web & Multimedia Design