Jump to content

bgk

Friends
  • Joined

  • Last visited

  1. KiwiGym started following bgk
  2.    Michael.J reacted to a post in a topic: Auto Welcome Support
  3. bgk replied to Michael.J's post in a topic in Marketplace
    Happy to test out a beta release. Just noticed validation emails were down and people were still getting dupe messages.
  4. No such file or directory suggests the file isn't there. You'd get permission denied or something else if it were a permission problem. I suggest checking that ipsRegistry.php is on the server in that path ...
  5. The three digits in chmod refer to the USER GROUP AND OTHER permissions respectively. Depending on which process is running your webserver, you will find either 755 or 750 work. If the webserver is in the group that owns the public_html directory then 750 will work (since 5 is referring to the group having read and execute permissions). Otherwise you will need 755, so that others (including the webserver) can access it. Hope that helps you all.