If you're unable to log in to your AlgoSphere admin panel, the issue is usually wrong credentials, a session problem, base URL mismatch, or a blank screen due to a PHP error.
1 — Wrong Username or Password
Passwords are case-sensitive. To reset the admin password directly via the database:
- Open phpMyAdmin and select your AlgoSphere database.
- Open the
stafftable and click Edit on your admin row. - Change the Function of the
passwordcolumn toMD5and enter your new password. - Click Go to save. You can now log in with the new password.
2 — Session / Cookie Issue
Clear your browser cookies and cache, then try again. Try incognito/private mode to rule out extension interference.
3 — Base URL Mismatch
If you recently moved AlgoSphere or changed from HTTP to HTTPS, update the base URL in application/config/config.php:
$config['base_url'] = 'https://manage.algosphere.co.in/';
4 — Blank White Screen After Login
Enable debug mode to see the actual error message:
- Open
index.phpin the root of your AlgoSphere installation. - Change
define('ENVIRONMENT', 'production');todefine('ENVIRONMENT', 'development'); - Try logging in again — the actual error message will now appear on screen.
- Fix the reported issue, then revert back to
production.
5 — IP or Brute-Force Lock
After repeated failed login attempts, AlgoSphere may temporarily lock your IP. Wait a few minutes and try again, or clear the login_attempts table in your database via phpMyAdmin.
Enable Two-Factor Authentication (2FA) from Setup → Settings → Security once you're logged in.