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

You are not logged in.

Announcement

#1 2015-09-04 16:10:32

Tawre
Member
Registered: 2015-09-04
Posts: 2

Dashboard still redirecting on itself

I have succesfully installed LHC, but when I try to log in, I got redirect loop on dashboard.

When I try different page, like configuration, everything is fine.

My server is nginx on debian.
Here is my configuration on nginx:

server {
    listen *:80;
	listen *:443 ssl;	   
	   
	ssl on;
	ssl_certificate     /usr/share/nginx/www/core/cert/xxxxxxxxxxx.crt;
    ssl_certificate_key /usr/share/nginx/www/core/cert/xxxxxxxxxxx.key;
	
	ssl_protocols TLSv1.2 TLSv1.1 TLSv1 SSLv2;

	   
    server_name     lhc.mysite.com;
    root           /usr/share/nginx/chat;

    index index.html index.htm index.php;
    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }
    
    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    sendfile off;

    client_max_body_size 100m;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_intercept_errors off;
    }

    location ~ /\.ht {
        deny all;
    }   

}

All directories are readable and I had yes on everything in installation.

Thanks for help smile

Last edited by Tawre (2015-09-04 16:10:47)

Offline

#2 2015-09-04 19:59:42

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

Re: Dashboard still redirecting on itself

Hi,

I'm afraid it's just to hard to tell what's causing this redirection.

Offline

#3 2015-09-05 23:13:29

Tawre
Member
Registered: 2015-09-04
Posts: 2

Re: Dashboard still redirecting on itself

Solved by reinstalling it like 3 times. Now I just hope it'll work in long term.

Thanks for trying to help me smile

Offline

Board footer