Page MenuHomePhabricator
Feed Advanced Search

Sep 29 2016

mim awarded T5427: Force a line break in a table cell a Like token.
Sep 29 2016, 1:26 PM · Remarkup

Jan 13 2015

mim created T6954: Feature request: It would be nice if we could use conpherence with hubot.
Jan 13 2015, 11:35 AM · Conpherence

Aug 3 2014

mim awarded T5722: Support meta-audit of arbitrary baskets of nonadjacent commits a Like token.
Aug 3 2014, 7:17 PM · Audit
mim added a comment to T5770: Errors for `bin/storage upgrade` before `bin/config set mysql.*` are perplexing.

Ok i finally done with this bug.
It appeared this bug came with me using PHABRICATOR_ENV environment variable in my setup. When i configured my phabricator long time ago there wasn't any of conf/local/ENVIRONMENT option. After setting my environment configuration in that file i finally get all working.

Aug 3 2014, 4:04 PM
mim added a comment to T5770: Errors for `bin/storage upgrade` before `bin/config set mysql.*` are perplexing.

I'm using Phabricator for 1.5 years and update it approximately once in a month. I have small script for upgrade and and start/stop of phd daemons:

1#!/bin/sh
2
3### BEGIN INIT INFO
4# Provides: phd
5# Required-Start: $network
6# Required-Stop: $network
7# Default-Start: 2 3 4 5
8# Default-Stop:
9# Short-Description: starts|stops phd daemon for phabricator
10# Description: Starts|stops phd daemon for phabricator also provides way to upgrade phabricator totally
11### END INIT INFO
12
13
14ROOT=`pwd`
15PHABRICATOR_ENV=custom/myconfig
16
17stop() {
18 sudo -u www-data PHABRICATOR_ENV=$PHABRICATOR_ENV $ROOT/phabricator/bin/phd stop
19}
20
21upgrade(){
22 /etc/init.d/php5-fpm stop
23
24 git -C $ROOT/phabricator pull
25 git -C $ROOT/arcanist pull
26 git -C $ROOT/libphutil pull
27 $ROOT/phabricator/bin/storage upgrade -f --user root --password password
28
29 /etc/init.d/php5-fpm start
30}
31
32start() {
33 sudo -u www-data PHABRICATOR_ENV=$PHABRICATOR_ENV $ROOT/phabricator/bin/phd start
34}
35
36case "$1" in
37
38 start)
39 log_begin_msg "Starting phd daemon..."
40 start
41 log_end_msg $?
42 ;;
43
44 stop)
45 log_begin_msg "Stopping phd daemon..."
46 stop
47 log_end_msg 0
48 ;;
49
50 log_begin_msg "Restarting phd daemon..."
51 stop
52 start
53 log_end_msg $?
54 ;;
55
56 upgrade)
57 log_begin_msg "Restarting phd daemon..."
58 stop
59 upgrade
60 start
61 log_end_msg $?
62 ;;
63
64
65 *)
66 echo "Usage: /etc/init.d/iptables {start|stop|restart|upgrade}" >&2
67 exit 1
68 ;;
69esac
70
71exit 0

Aug 3 2014, 7:25 AM
mim edited P1223 Upgrade with trace.
Aug 3 2014, 7:21 AM
mim updated the language for P1222 Upgrade phabricator, start, stop phd daemons from autodetect to bash.
Aug 3 2014, 7:11 AM
mim edited P1222 Upgrade phabricator, start, stop phd daemons .
Aug 3 2014, 7:11 AM

Aug 2 2014

mim added a comment to T5770: Errors for `bin/storage upgrade` before `bin/config set mysql.*` are perplexing.

Originally it was with correct flags. That one was after experiments of trying to do something different.

Aug 2 2014, 7:09 AM
mim edited P1220 Problems during upgrade.
Aug 2 2014, 7:06 AM · Phabricator

Aug 1 2014

mim created T5770: Errors for `bin/storage upgrade` before `bin/config set mysql.*` are perplexing.
Aug 1 2014, 10:12 PM
mim edited P1220 Problems during upgrade.
Aug 1 2014, 10:09 PM · Phabricator
mim edited P1220 Problems during upgrade.
Aug 1 2014, 10:07 PM · Phabricator

Jul 28 2014

mim awarded T3967: Build a 2-up preview mode into the fullscreen Remarkup editor a Like token.
Jul 28 2014, 7:53 AM · Remarkup
mim added a comment to T3967: Build a 2-up preview mode into the fullscreen Remarkup editor.

Had same complains and I think this feature will be reasonably useful.
Hopefully will be implemented any time soon.

Jul 28 2014, 7:53 AM · Remarkup
mim awarded T3975: Add the ability to show Google Docs in Remarkup a Like token.
Jul 28 2014, 7:46 AM · Remarkup

Feb 11 2014

allan.laal awarded T4316: Allow a comment to be added on the Maniphest edit interface a Haypence token.
Feb 11 2014, 8:26 PM · Maniphest

Jan 15 2014

mim added a comment to T4316: Allow a comment to be added on the Maniphest edit interface.

Yap that would be full task handling process inside of that view. If i would like just to add some comments i would just live all other fields untouchable.

Jan 15 2014, 9:50 AM · Maniphest

Jan 14 2014

mim raised the priority of T4316: Allow a comment to be added on the Maniphest edit interface from to Needs Triage.
Jan 14 2014, 6:23 PM · Maniphest
mim raised the priority of T4315: Main activity button (like create task in maniphest task create on) keyboard shortcuts for mac user from to Needs Triage.
Jan 14 2014, 6:02 PM · Maniphest

Jan 9 2014

mim raised the priority of T4299: Close/remove mocks in Pholio from to Needs Triage.
Jan 9 2014, 3:08 PM · Pholio