Hi, i try to install Mautic on a fresh Ubuntu 15.04
cd ~
Install LAMP
sudo apt-get udpate
sudo apt-get install --assume-yes apache2 mysql-server php5 php5-mysql
sudo add-apt-repository -y ppa:ondrej/php5-5.6;sudo apt-get update;sudo apt-get -y install php5-fpm php5-cli php5-json php5-curl php5-gd php5-mysqlnd php5-imap php5-mcrypt
Install other needed stuff
sudo apt-get install --assume-yes unzip
Install these php5 modules
php-intl : to have the internationalization functions
php5-mcrypt
sudo apt-get install --assume-yes php5-intl mcrypt php5-mcrypt
sudo php5enmod mcrypt
sudo service apache2 restart
Download the latest mautic setup
cd /var/www
sudo wget --level=0 https://www.mautic.org/download/latest
sudo unzip latest -d mautic
sudo rm latest
sudo chown -R www-data:www-data /var/www/mautic
Installation opens but i can not see any error log.
The next page is not working
Does anybody have a idea ?
PHP 5.6
Memory 512
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerName marketing.crm-couch.com
DocumentRoot /var/www/mautic
Available loglevels: trace8, …, trace1, debug, info, notice, warn,
error, crit, alert, emerg.
It is also possible to configure the loglevel for particular
modules, e.g.
LogLevel notice
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
<Directory /var/www/mautic>
Options FollowSymLinks MultiViews
AllowOverride All
Require all granted
php_value date.timezone “Europa/Berlin”
~
~