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

Enable Evil^H^H^H^HJSON for PHP on Ubuntu 13.10

Summary:
Good news. Starting with Ubuntu 13.10, Phabricator can legally be used by evil dictators, mad scientists, and toxic derivative creators.

The JSON implementation prohibiting evil (http://www.phoronix.com/scan.php?page=news_item&px=MTQ0MTY) was ripped out and replaced by the Evil-friendly PHP license: https://github.com/remicollet/pecl-json-c/blob/master/LICENSE

Test Plan: ran the shell script, Phabricator no longer fails with "Call to undefined function json_decode".

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley

CC: Korvin, epriestley, aran

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

authored by

lesha and committed by
epriestley
8c114394 73e88bb1

+3 -1
+3 -1
scripts/install/install_ubuntu.sh
··· 43 43 set +x 44 44 45 45 sudo apt-get -qq update 46 - sudo apt-get install $GIT mysql-server apache2 php5 php5-mysql php5-gd php5-dev php5-curl php-apc php5-cli dpkg-dev 46 + sudo apt-get install \ 47 + $GIT mysql-server apache2 dpkg-dev \ 48 + php5 php5-mysql php5-gd php5-dev php5-curl php-apc php5-cli php5-json 47 49 48 50 # Enable mod_rewrite 49 51 sudo a2enmod rewrite