Jump to content

PanSevence

Clients
  • Posts

    28
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by PanSevence

  1. @Jim M I have a Let's Encrypt certificate installed, but in the configuration I have HTTPS set before the domain, so the URL is always HTTPS. Here's my nginx configuration. You can check my forum, as I've provided all the necessary information in the client area. server { listen 443 ssl; # managed by Certbot ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem; root /var/www; index index.php index.html; server_name domain.com; location / { try_files $uri $uri/ =404; } location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.1-fpm.sock; } }
  2. Hello, Yesterday I configured a server running on nginx, php8.1-fpm, and mysql57. Unfortunately, I am having a rather unusual problem with logging into the Admin CP panel. Logging into the forum works perfectly fine, but logging into the Admin CP is causing issues. When I try to access the Admin CP through the AdminCP button after logging into the forum, sometimes I am redirected to the AdminCP and I am logged in right away. My URL then looks like this: domain.com/admin and I am logged in. However, sometimes I get a window where I have to enter login credentials. I enter the correct login details and only the URL changes. At first, it looks like this: domain.com/admin/?app=core&module=system&controller=login&ref= and when I enter the correct credentials and click login, it changes to admin/?app=core&module=system&controller=login&error=&ref= and I am unable to log in. There is no message or error, only the page refreshes and &error=&ref= is added to the URL. This doesn't always happen, sometimes I am logged in right away, and sometimes the login window appears, causing this issue. If I log out of the AdminCP after being redirected and logged in right away, I am unable to log in again, and the above problem occurs once again. I would greatly appreciate any assistance. Thank you.
×
×
  • Create New...