Category Archives: Dreamweaver

New Versions of WordPress Abort MORE

WordPress is getting to be more and more a nuisance to debug in dreamweaver. Loading WordPress in Dreamweaver causes an immediate shutting of Dreamweaver. This was happening in the past because of the inclusion of the files dashicons.css and dashicons.min.css in the includes/css directory. They were not needed for testing and typical development, so, they could simply be deleted. dashicons.css and dashicons.min.css offer simple use CSS icons that are used primarily in the admin area, though they could be used in any of your development. Deleting dashicons.css and dashicons.min.css left the admin area without icons, but, the icon text descriptions remained and you could live with for preliminary testing. However, now we are back to the same crash problem.

More oversize strings have been added to other files in WordPress and they cause Dreamweaver to exhaust its workspace memory and crash. . Now, to do debugging in Dreamweaver, the following files and directories must be deleted from WordPress:

  • wp-includes/css/dashicons.css
  • wp-includes/css/dashicons.min.css
  • wp-content/themestwentyfourteen/genericons (full directory)
  • wp-content/themestwentythirteen/genericons (full directory)
  • uploads/am_assets

Deleting these files/directories allow debugging in Dreamweaver. Again when testing, the situation relates to availabiliity of CSS icons and assets … for the development. These deletions increase the number of items that vanish in your use of wordpress, but, maybe you can live knowing that in preliminary debug icons and assets will be missing, but, available in an integration test. If you understand what you are deleting and what you can expect from these deletions, no problem. When you load a full version of WordPress in a full installation all icon functionality returns, but, the nuisance level of development is increasing. Someday, we will want to upgrade your Dreamweaver or start using NetBeans or Eclipse to avoid the problem.

Personally, I find Eclipse or NetBeans will be a reasonably good replacement for Dreamweaver. They are free and have some very nice features. In some cases, they have nicer features than Dreamweaver, though they do miss a few features I do like in Dreamweaver. Their big problem is they are harder to install and interface with the test server, but, if Dreamweaver continues to be a nuisance, they will be far better alternative.

Dreamweaver Closes as it is Opening

Are you having a problem with Dreamweaver closing down (vanishing) as it starts to open new versions of WordPress?

Recent versions of WordPress have a new CSS file that is causing Dreamweaver no end of trouble. Attempting to load WordPress in Dreamweaver causes a partial load, then suddenly the load crashes and Dreamweaver vanishes from the screen. This is being caused by the recent change in WordPress to update the administration panel.

WordPress has added the CSS file /wp-includes/css/dashicons.min.css. This file is intended to add icons to the administration panel by using Font-face. Unfortunately this font face is enormous. The string incorporated in the font-face declaration is too large to be supported by Dreamweaver, causing Dreamweaver to crash.

Luckily, there is a solution to this problem. The solution is simple. If your version of Dreamweaver has the size limitation that causes crashes, simply delete the files /wp-includes/css/dashicons.min.css and /wp-includes/css/dashicons.css from your WordPress development environment. This will have little impact on your development.

Deleting the dashicons files from your development environment will have minor impact, but, probably none that bother your development. The deletion may cause the absence of font-face created icons in the administration area of your WordPress work environment, But, you will still see the alternate text associated with the icons. You can continue to work conveniently.

Warning: Remember as you load your work on your target website, you have deleted the dashicons files. Remember to include the dashicons files in your official release or your target site will have missing icons in the administration area.