0

I'm currently doing some web dev on osx and I need to give netbeans and apache write access to my local Sites directory, at the moment only one of them has that right (netbeans) should I modify group rights and add apache to the group or look into creating an ACL (never done that before)

Dark Star1
  • 1,385
  • 7
  • 22
  • 37

1 Answers1

1

If this is a single-user desktop development environment running a local apache instance (listening locally for testing), just chmod 777 the directory and be done with it. In production this would be a more complex issue, though I suspect netbeans wouldn't be writing to a production directory (I hope!)

Kyle Smith
  • 9,683
  • 1
  • 31
  • 32
  • yeah you're right, but I may need to debug the site remotely later. That will be on a linux server though but I guess the access issues will be different then. – Dark Star1 Jun 10 '11 at 14:28