run arc liberate to build a new library map, so your new class can be found by Phabricator.
You can use the "Abandon" action to close revisions you no longer intend to pursue.
git,code-review,revision,phabricator,arcanist
You can use arc diff origin/master to generate a diff between the origin's master branch and your local master branch. You can move your changes to a local branch, as though you had started on an empty branch. This is a general git workflow and you can search for...
You can use arc patch to create a branch. It will create a branch called arcpatch-D### where D### is your Diff ID. Once you have that branch, you can use git commands to create a new branch based from the head of that branch and name it however you like....
Firstly you need to login as administrator. Then you can find the option "Approval Queue" in Queries part of /people page. You can also go to /people/query/approval/ to see the pending approvals.
mysql,amazon-web-services,docker,elastic-beanstalk,phabricator
The OP javvaji kiran adds in the comments: The service was not available for the location which I selected. But service are available in other locations Original answer: It depends on the error message you have, but note that all values of a Dockerrun.aws.json are normally in double quotes. {...
These are supposed to be symlinks. For example, if you look at "phd" in the repository on GitHub, you can see that the file type is "symbolic link": https://github.com/facebook/phabricator/blob/master/bin/phd Something in your environment is incorrectly turning the symlinks into normal files. I'm not aware of any Git configuration which can...
Your .arcconfig file is probably not being read. Usually, this is because you've accidentally put it in the wrong place. To troubleshoot this: Make sure arc is up to date (by running arc upgrade). Use arc lint --trace to see where configuration is loaded from. The first few lines of...
I asked the same question in phabricator's own Phabricator bug report site. Here is the link to that question. This behavior is by design but there is a function provided by phabricator that can help you fix the issue afterwards....
Turned out to be an OSX Keychain issue. Cleared it out and was given a prompt on the next push.
First step Go to the configuration interface at <your-hosted-phabricator>/config/all/. Second step Edit the following two parameters: In bugtraq.logregex set: /[Ii]ssues?:?(\s*,?\s*\d+)+/ /(\d+)/ In bugtraq.url set: https://<your-issue-tracker>/issue/%BUGID% If you are using these same config settings for another tracking system, you will have to pick and choose. But, we found this very useful...
php,nginx,fastcgi,phabricator,hostheader
Have you tried HTTP_HOST? The following works for me: fastcgi_param HTTP_HOST phabricator.localhost; ...
Try this: git stash (make sure it's your only stash via git stash list) git checkout master (switch to your master branch) git branch -D arcpatch-D37 (delete the old branch) git reset --hard origin/master (reset your current branch) git pull (update the master branch) arc patch D37 (create a fresh...
http://phabricator.org/applications/differential/ You can use the Key words Ref T123 or Fixes T123 in your commit message to link them automatically. Fixes T123 will link and close the task....
We don't have plans to allow admins to set individual user preferences, as we feel it's up to the user. You can write a registration event listener though and run whatever code you want in there on your own install.
This was pilot error - php5-fpm was not listening on 9000 since I was using the php5-fpm.sock instead (configured in /etc/php5/fpm/pool.d/)
This is not possible. You would need the original author to commandeer it back.
I assume that with column, you mean a column on a projects workboard? In that case, no, it's not currently possible to change the state of a task by moving it to another column. However, it's a feature that's requested and that's being worked on, see Support workboard column triggers...
The logo was updated may weeks ago, I would recommend clearing cache or making sure the new images are actually on the server. We don't have any other reports on this.
According this commit, the extension requires PHP 5.4.
That error indicates you are not running the command from the correct directory. When I run my destroy command, I browse to the location I have installed Phabricator to and run the command ./bin/remove destroy ...
php,apache,ubuntu,php-fpm,phabricator
Thanks to my friend, I quickly found a solution. I simply added : RewriteRule ^/php5-fcgi - [L] To my vhost configuration : RewriteEngine on RewriteRule ^/rsrc/(.*) - [L,QSA] RewriteRule ^/favicon.ico - [L,QSA] RewriteRule ^/php5-fcgi - [L] RewriteRule ^(.*)$ /index.php?__path__=$1 [B,L,QSA] Thanks....
Use "?" to bring up keyboard shortcuts for that screen. "\" toggles the Conpherence panel on/off....
The storage now works with a new DB credentials if I pass in the username/password in the storage upgrade command but its not picked up correctly from the conf file. I will check the conf and update this accordingly. ./bin/storage upgrade --user "actual username" --password "actual password" ...
svn,version-control,phabricator
I think we figured out the issue. I did not specify the "Import Only" directory until after I started the import, which caused Phabricator to import all the files for the entire repo. We deleted the repo from Phabricator and then specified the "Import Only" directory before starting the import....
phabricator,ticket-system,maniphest
There is a batch edit feature. You can access it on any search. Go to the Maniphest application Use the advanced search (or a saved search) to get the old tasks that you want to remove Select all the tasks that you want to remove by pressing the shift button...