Posts

Showing posts from May, 2010

Zend Studio 5.5 Blank Main Window

After installing Zend Studio 5.5 bin files, when I start the Zend it displays blank window (Gray Colored). I googled it out and found that, the issue lies with some form of Java incompatibility. To Solve the issue, Open the ZDE files placed inside Application root (your home directory Path/Zend/ZendStudio-5.5.0/bin). On line 1694 you will find below code, debugOut "" unset POSIXLY_CORRECT Add options="$options -Dawt.toolkit=sun.awt.motif.MToolkit" on line 1693. So your edited file will be looked like this. options="$options -Dawt.toolkit=sun.awt.motif.MToolkit" debugOut "" unset POSIXLY_CORRECT Your problem will be resolved.