Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 Trouble shooting for Ubantu OS:

 

If you are facing the issues andnot able to open the GUI interface even after doing the necessary steps mentioned aove, please follow the below steps:

 

 

below command may not work mentioned in the document above for Ubuntu: 
sudo nano /etc/apache2/sites-available/default

 

because you will not find the default file in the specified path, instead open: 
sudo pico /etc/apache2/sites-available/000-default.conf

 

go bottom of the file and add below lines before </VirtualHost>

 

		<Directory "/var/www/html">

 

        		AllowOverride All

 

		</Directory>

 

save changes.

 

Installing composer may fail with below error:

 

Loading composer repositories with package information: installing dependencies (including require-dev), Your requirements could not be resolved to an installable set of packages.

 

Please follow the below steps:

 

git checkout -b test origin/airavata-php-gateway-0.15-release

 

sudo composer install

 

If this ask for Mcrypt PHP extension required, then install mcrypt by

 

	sudo
apt-get install php5-mcrypt

 

...

 

locate
mcrypt.so to get its locaton

 

locate mcrypt.ini and open the mcrypt.ini file

 

sudo pico /etc/php5/mods-available/mcrypt.ini

 

change the at line a extension=<location of e mcrypt.so fil> eg:/usr/lib/php5/20121212+lfs/mcrypt.so

 

save changes.

 

 

 

provide
permission to storage by 
sudo chmod -R 777 app/storage

 

Now
restart the apache server again and test PGA web-interface.

 

...

 

User Hosted PGA with SciGaP in MAC OS

Installations

...

  1. To install MCrypt for PHP on MAC please follow the steps in http://coolestguidesontheplanet.com/install-mcrypt-php-mac-osx-10-9-mavericks-development-server/
  2. Once above is completed follow the steps given in http://sangatpedas.com/20140219/installing-laravel-osx-mavericks/ for
    1. Configuring Apache
    2. Installing Composer 

...

Download and Configure PGA

...