Live Helper Chat support forum.. Forum is locked. New place for questions - Github Discussions

You are not logged in.

Announcement

#1 2014-04-02 03:50:27

Paul T
Member
Registered: 2014-04-02
Posts: 1

404 error trying to install

Is there any special configuration required in the webserver config to get this to run?
I've confirmed php is working and can get a phpinfo() page to display. When I load the install url I just get 404 error
this is my nginx config
server {          listen 80;


           server_name ************;  //blanked out for security           access_log /var/log/nginx/nginx.livechat.access.log;           error_log /var/log/nginx/nginx.livechat.error.log;
           root /usr/share/nginx/livechat/;           index index.html index.php;

        location /doc/ {
                alias /usr/share/doc/;                autoindex on;                allow 127.0.0.1;                deny all;        }
        location ~ \.php$ {                fastcgi_split_path_info ^(.+\.php)(/.+)$;        #       # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini        #        #       # With php5-cgi alone:        #       fastcgi_pass 127.0.0.1:9000;        #       # With php5-fpm:                fastcgi_pass unix:/var/run/php5-fpm.sock;                fastcgi_index index.php;                include fastcgi_params;        }

        # deny access to .htaccess files, if Apache's document root        # concurs with nginx's one        #        location ~ /\. {                deny all;        }}
RegardsPaul

https://groups.google.com/forum/#!topic … W_WCUcGlIw

Offline

#2 2014-04-02 16:57:43

Remigijus Kiminas
Administrator
From: Lithuania
Registered: 2012-09-23
Posts: 3,661
Website

Re: 404 error trying to install

Hi,

I suggest to have a look at
http://livehelperchat.com/nginx-configuration-tips-132a.html



2014-04-02 4:50 GMT+03:00 Paul T <paultr...***.com>:

Offline

#3 2015-08-26 10:27:57

mattsmith
Member
Registered: 2015-08-26
Posts: 2

Re: 404 error trying to install

I tried using there configurations and it completely broke my site

Offline

Board footer