Osclass oc-admin login issues can occur due to incorrect credentials, security restrictions, email server problems, or session-related issues. This guide covers the most common problems and their solutions to help you regain access to your Osclass admin panel.
If you enter an incorrect password, you will see the following error message:
"Sorry, incorrect password."
Double-check your credentials and try again. If you are unsure about your password, proceed with the password recovery process.
If you forgot your password, Osclass provides a built-in recovery system. Click on the “Have you lost your password?” link on the login page. Enter your email address, and Osclass will send a password reset link. Follow the instructions in the email to create a new password.
Osclass temporarily blocks login attempts if too many incorrect passwords are entered. The following message will be displayed:
"Sorry, you have entered incorrect password more than 5 times. You will be able to login again in 5 minutes."
The lockout period increases with repeated failed attempts as follows:
This mechanism is designed to protect your backoffice from brute-force attacks.
If the email server is not properly configured, Osclass may not be able to send password reset emails. In such cases, you will not receive the password recovery link, making it difficult to restore access.
If you cannot reset your password due to email server issues, follow these steps to manually update your admin password:
Now, you should be able to log in using the new password.
If you enter valid credentials but remain stuck on the login page without any error messages or changes, this is likely a server session issue.
<?php
session_start();
$_SESSION['test'] = "Session is working";
echo $_SESSION['test'];
?>
If this script does not display "Session is working," your server has session issues.
Open your server’s php.ini
file and check:
session.gc_maxlifetime = 1440
Increase this value if it’s too low.
By following these troubleshooting steps, you should be able to resolve common Osclass backoffice login issues effectively.