1. INFO
This tutorial is made for fresh installed Ubuntu and Debian

2. INSTALLING STALKER PORTAL (Apache2)
apt-get update && sudo apt-get -y upgrade && sudo apt-get install -y -u apache2 memcached mysql-server php5 php5-mysql php-pear nodejs upstart && sudo pear channel-discover

apt-get install -y unzip

apt-get install -y git

pear channel-discover pear.phing.info

pear install phing/phing

cd /var/www/html
wget https://github.com/azhurb/stalker_po...v4.9.28-r2.zip
unzip v4.9.28-r2.zip
rm -r v4.9.28-r2.zip
mv stalker_portal-4.9.28-r2 portal

mysql -u root -p
create database stalker_db;
grant all on stalker_db.* to 'YOURUSERNAMEHERE' identified by 'YOURPASSWORDHERE';
GRANT ALL PRIVILEGES ON stalker_db.* TO stalker@localhost IDENTIFIED BY '1' WITH GRANT OPTION;
exit

nano /var/www/html/portal/server/config.ini
edit these values
mysql_user = stalker
mysql_pass = 1
to
mysql_user = YOURUSERNAMEHERE
mysql_pass = YOURPASSWORDHERE

cd /var/www/html/portal/deploy/
phing

echo "max_allowed_packet = 32M" >> /etc/mysql/my.cnf
echo "short_open_tag = On" >> /etc/php5/apache2/php.ini
a2enmod rewrite
apt-get purge libapache2-mod-php5filter
cat /dev/null > /etc/apache2/sites-available/000-default.conf

nano /etc/apache2/sites-available/000-default.conf
<VirtualHost *:88>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html/portal
<Directory /var/www/html/portal/>
Options -Indexes -MultiViews
AllowOverride ALL
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

nano /etc/apache2/ports.conf
change 80 to 88

service apache2 restart


go visit to http://host:88
username: admin
password: 1
Enjoy