@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix permissions on Aphlict log

Summary: Currently, the Aphlict server created the log file (if it doesn't exist) but then immediately fails with "Unable to open logfile". It seems that we don't set the permissions correctly.

Test Plan: Deleted log file and was able to start the Aphlict server.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11351

+1 -1
+1 -1
support/aphlict/server/lib/AphlictLog.js
··· 17 17 var options = { 18 18 flags: 'a', 19 19 encoding: 'utf8', 20 - mode: 066 20 + mode: 0664, 21 21 }; 22 22 23 23 var logfile = fs.createWriteStream(path, options);