Menu
  • HOME
  • TAGS

How to write a custom mail adapter in phabricator?

php,email,phabricator

run arc liberate to build a new library map, so your new class can be found by Phabricator.

How to reject/delete/close a phabricator patch

phabricator,arcanist

You can use the "Abandon" action to close revisions you no longer intend to pursue.

How can i prepare a phabricator revision for a new repository?

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...

Restore deleted git branch from Phabricator revision

git,phabricator,arcanist

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....

How to approval new users in phabricator

phabricator

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.

Version error in AWS Elastic beanstalk for Multicontainer Docker Configuration

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. {...

Phabricator Making Assumptions About Environment

phabricator

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...

Phabricator - arc lint is not working even after I have Included an Linter Engine in .arconfig file

phabricator,arcanist

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...

Phabricator: Auditing a commit before Phabricator Import failed to notify the commiter

svn,phabricator

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....

Git (Diffusion / Phabricator) remote repo returns 403 after password reset

git,phabricator

Turned out to be an OSX Keychain issue. Cleared it out and was given a prompt on the next push.

Link to issue page from within Phabricator

issue-tracking,phabricator

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...

Nginx: Override host header when using fastcgi_pass

php,nginx,fastcgi,phabricator,hostheader

Have you tried HTTP_HOST? The following works for me: fastcgi_param HTTP_HOST phabricator.localhost; ...

arc land “Not possible to fast-forward, aborting.”

git,phabricator,arcanist

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...

'Smart commits' in phabricator? Commit comment to associate to Maniphest

git,phabricator,maniphest

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....

phabricator global email preferences

phabricator

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.

issue with configuring phabricator & nginx

php,nginx,phabricator

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/)

How to undo “Commandeer Revision” in phabricator

phabricator

This is not possible. You would need the original author to commandeer it back.

How do I create a column which automatically resolves tickets in phabricator?

phabricator

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 phabricator logo on the left corner broken after upgrade

phabricator

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.

Adding an extension to Phabricator causes PHP exceptions

php,phabricator

According this commit, the extension requires PHP 5.4.

How to delete Phabricator Pholio Mock

phabricator

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 ...

Error 500 on Phabricator installation on Ubuntu (Apache2 / php5-fpm / Mysql)

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....

How to hide “Messages” section in Phabricator

phabricator

Use "?" to bring up keyboard shortcuts for that screen. "\" toggles the Conpherence panel on/off....

Issue with Phabricator configuration for MySQL

php,mysql,phabricator

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" ...

Phabricator/SVN - What's the best way to manage multiple subdirectories of a repository?

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....

Batch ticket modification on Phabricator

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...