0

i installed Zend Studio-5.5.0 in ubuntu 13.04. but when i try to open it from bin folder it is not open. every time it open as a text editor.

Shivam
  • 101
  • When you say "it opens as a text editor" do you mean that a new text editor window opens and tries to display the contents of the executable or that the program executes and displays an empty text editor window? Can you add a screenshot please? – hmayag Oct 17 '13 at 09:11

1 Answers1

0

You'll need to make it executable. This is just a simple permission flag. Either:

  • chmod +x filename
  • Right click it, Properties, Permission tab, check the executable box.
Oli
  • 293,335