Search found 1 match

by softsys
Wed Oct 03, 2012 6:02 pm
Forum: Linux
Topic: Launching an app in LINUX
Replies: 12
Views: 12563

Re: Launching an app in LINUX

mwieder wrote:...and if that fails, open a terminal prompt and type

Code: Select all

chmod 777 nameOfYourProgram
Don't do this, 777 will allow anyone to overwrite your appz.

You should use
chmod 755 nameOfYourProgram

and make sure the owner of nameOfYourProgram is not apache

Regards,