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.
- Queries
- All Stories
- Search
- Advanced Search
- Transactions
- Transaction Logs
Feed Advanced Search
Advanced Search
Advanced Search
Sep 29 2016
Sep 29 2016
mim awarded T5427: Force a line break in a table cell a Like token.
Jan 13 2015
Jan 13 2015
Aug 3 2014
Aug 3 2014
mim awarded T5722: Support meta-audit of arbitrary baskets of nonadjacent commits a Like token.
mim added a comment to T5770: Errors for `bin/storage upgrade` before `bin/config set mysql.*` are perplexing.
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 | |
14 | ROOT=`pwd` |
15 | PHABRICATOR_ENV=custom/myconfig |
16 | |
17 | stop() { |
18 | sudo -u www-data PHABRICATOR_ENV=$PHABRICATOR_ENV $ROOT/phabricator/bin/phd stop |
19 | } |
20 | |
21 | upgrade(){ |
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 | |
32 | start() { |
33 | sudo -u www-data PHABRICATOR_ENV=$PHABRICATOR_ENV $ROOT/phabricator/bin/phd start |
34 | } |
35 | |
36 | case "$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 | ;; |
69 | esac |
70 | |
71 | exit 0 |
mim updated the language for P1222 Upgrade phabricator, start, stop phd daemons from autodetect to bash.
Aug 2 2014
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 1 2014
Aug 1 2014
Jul 28 2014
Jul 28 2014
mim awarded T3967: Build a 2-up preview mode into the fullscreen Remarkup editor a Like token.
Had same complains and I think this feature will be reasonably useful.
Hopefully will be implemented any time soon.
mim awarded T3975: Add the ability to show Google Docs in Remarkup a Like token.
Feb 11 2014
Feb 11 2014
allan.laal awarded T4316: Allow a comment to be added on the Maniphest edit interface a Haypence token.
Jan 15 2014
Jan 15 2014
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 14 2014
Jan 14 2014
mim raised the priority of T4316: Allow a comment to be added on the Maniphest edit interface from to Needs Triage.
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 9 2014
Jan 9 2014