Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After installing phabricator when I logged in the Blank page appears

I have succefully installed phabricator on ubuntu but when I registered the admin user blank page appears. Even I tried to recover the user using ./bin/auth recover user but it did not work. It just shows the login page and then white blank page. Even I have to clear the browser cache to see the login page again. Please help.

like image 524
Javed Ahmed Avatar asked Apr 07 '17 11:04

Javed Ahmed


2 Answers

I will assume your project name is my_project:

   - sudo apt-get php-gd php-curl php-apc php-cli php-mbstring –y    

   - sudo chown -R www-data:www-data /var/www/html/my_project

   - sudo systemctl restart apache2 
like image 194
Amr Aly Avatar answered Oct 26 '22 14:10

Amr Aly


I had this problem, it was finally solved by installing this package

sudo apt-get install php7.1-gd

I had previously installed

sudo apt-get install php7.1 php7.1-mbstring php7.1-curl php7.1-mysql

Note - I am running php7.1 on Linux Mint 18.1 by following the instructions here
https://www.vultr.com/docs/how-to-install-and-configure-php-70-or-php-71-on-ubuntu-16-04
As Phabricator does not work on php7.0 which is the default in ubuntu 16.04 / Linux Mint 18.1.

Similar packages will exist for other versions of PHP.

like image 26
Tom Watts Avatar answered Oct 26 '22 16:10

Tom Watts