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

[Ubuntu Install Script] Automatically enable mod_rewrite

Summary: I needed to figure out how to do this, and it took a couple of minutes.

Test Plan: ran that command on my Ubuntu 12.04 system

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

lesha 26d62ee4 3d6f3e10

+3
+3
scripts/install/install_ubuntu.sh
··· 45 45 sudo apt-get -qq update 46 46 sudo apt-get install $GIT mysql-server apache2 php5 php5-mysql php5-gd php5-dev php5-curl php-apc php5-cli dpkg-dev 47 47 48 + # Enable mod_rewrite 49 + sudo a2enmod rewrite 50 + 48 51 HAVEPCNTL=`php -r "echo extension_loaded('pcntl');"` 49 52 if [ $HAVEPCNTL != "1" ] 50 53 then