Login Page Not Working - Refreshing on Successul Login
Login page reloads when using valid login credentialsThis relates to sessions not correctly being started on your server/hosting. There's a number of things you can try to resolve the issue:
- Ensure session support has been enabled within your PHP install and correctly configured. Your web host or server admin will be able to confirm this.
- Ensure you've not run out of HD space, this may cause the session information to not be written.
- Try switching to database based sessions within the script. You can do this by accessing the database via phpMyAdmin (or similar) and executing the following SQL statement:
UPDATE site_config SET config_value = 'Database Sessions' WHERE config_key = 'user_session_type';