Comments on: Install Mautic on Ubuntu 14.04 https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/ Premium Linux Tutorials Since 2001 Fri, 03 Jun 2022 08:44:07 +0000 hourly 1 https://wordpress.org/?v=6.5.3 By: admin https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-47080 Thu, 28 Jun 2018 18:50:06 +0000 https://www.rosehosting.com/blog/?p=17883#comment-47080 In reply to Clebson.

The error messages says it is a problem with the permissions. Open your PHP-FPM pool and check the value for listen.owner and listen.group. Make sure that the Mautic files are owned by that user. Thanks

]]>
By: Clebson https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-47078 Thu, 28 Jun 2018 17:23:10 +0000 https://www.rosehosting.com/blog/?p=17883#comment-47078 Follow the steps and ended with a 502 Bad Gateway. Whats wrong?

Here is the nginx error log:
2018/06/28 18:45:24 [crit] 24073#0: *11 connect() to unix:/var/run/php-fpm/php-fpm.sock failed (13: Permission denied) while connecting to upstream, client: XX.XXX.XX.XXX, server: server.mydomain.com, request: “GET /index.php HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php-fpm/php-fpm.sock:”, host: “server.mydomain.com”

]]>
By: admin https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44759 Sat, 04 Jun 2016 17:26:41 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44759 In reply to Razi Khan.

You can check your log files for errors or more information about the problem you are experiencing. Thanks.

]]>
By: Razi Khan https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44758 Sat, 04 Jun 2016 13:06:56 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44758 In reply to admin.

can you please guide ? , I am getting “The site is currently offline due to encountering an error”
my default site conf
” server {
listen 80;
server_name domain.com;

access_log /var/log/nginx/domain.com.access_log;
error_log /var/log/nginx/domain.com.error_log;

root /var/www/html;
index index.php index.htm index.html;

include /etc/nginx/global/wordpress.conf;
include /etc/nginx/global/restrictions.conf;
include /etc/nginx/global/mautic.conf;
}

and mautic.conf
“server {
server_name domain.com/mautic;
listen 80;
root /var/www/html/mautic/public_html;

access_log /var/www/html/mautic/logs/access.log;
error_log /var/www/html/mautic/logs/error.log;

index index.php;

location / {
try_files $uri $uri/ /index.php?$query_string;
}

sendfile off;

location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
}

location ~ /\.ht {
deny all;
}
}

]]>
By: admin https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44757 Sat, 04 Jun 2016 06:17:27 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44757 In reply to Razi Khan.

Yes, you can install Mautic in a subdirectory. As for creating Nginx virtual config it is totally up to you.

]]>
By: Razi Khan https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44756 Sat, 04 Jun 2016 05:51:16 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44756 How do I install mautic on subfolder ? using nginx , do I still need to create user and sites-available/(my subfolder conf)

]]>
By: Marcos https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44591 Thu, 25 Feb 2016 20:54:42 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44591 In reply to admin.

Just find out it was a typo. Sorry to bother :)

]]>
By: admin https://www.rosehosting.com/blog/install-mautic-on-an-ubuntu-14-04-vps/#comment-44587 Thu, 25 Feb 2016 16:17:19 +0000 https://www.rosehosting.com/blog/?p=17883#comment-44587 In reply to Marcos.

Please check the Nginx error log for more info

]]>