The ACP login password is the same as your username password. If you forgot it, just click on forgot password.
Try getting in on mobile. Maybe it's an ad or some mod blocking.
src/config.php
file temporarily to see if it changes anything:$c->extend('session', function(\XF\Session\Session $session)
{
$session->setConfig([
'ipv4CidrMatch' => 0,
'ipv6CidrMatch' => 0
]);
return $session;
});
src/config.php
:$config['enableListeners'] = false;
It's really difficult to know from what you have said what might be causing this.
If you are logging in OK on the front end but not the back then it is obviously not the password.
So we'd really then be looking at it being an issue with the server, or an issue with an add-on you have installed.
Server issues could be things like problems with cached session storage, or your IP address changing frequently.
For the latter of those, it might be worth adding the following to yoursrc/config.php
file temporarily to see if it changes anything:
PHP:$c->extend('session', function(\XF\Session\Session $session) { $session->setConfig([ 'ipv4CidrMatch' => 0, 'ipv6CidrMatch' => 0 ]); return $session; });
If that enables it to work then your IP address is changing every request and that invalidates your login session. Common reasons for a changing IP address would be some sort of VPN or proxy service being enabled on your internet connection, or some other proxy layer between the internet and your server, and your server is seeing different IPs from the proxy service rather than your real IP address.
If it's an add-on problem, then one way to rule that out is to add the following tosrc/config.php
:
PHP:$config['enableListeners'] = false;
If that enables you to login then I'd recommend disabling all add-ons from the "Add-ons" page, removing the config line above and then re-enabling them one-by-one to see which one causes the issue.
If you get into the Admin CP it may also be useful to see if there have been any server errors logged that provide any hints.
Ok. Before we get to that, did either of my suggestions make a difference?
Ok. Before we get to that, did either of my suggestions make a difference?
The red banner which says “Server errors have been logged”, you may need to look in there and report back in case there are any clues as to what might have been causing the issue.
Can you submit a ticket from your customer area? We may need to take a closer look.
Ideally we’d need an Admin login and FTP/cPanel login details. We will check some more things and this may be easier if we do it directly rather than you having to deal with us and your host.
We use essential cookies to make this site work, and optional cookies to enhance your experience.