Article

  • 4 months

    4 months

    YetiShare / Core

    388

Login Page Not Working - Refreshing on Successul Login

Login page reloads when using valid login credentials

This relates to sessions not correctly being started on your server/hosting. There's a number of things you can try to resolve the issue:

  1. 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.
  2. Ensure you've not run out of HD space, this may cause the session information to not be written.
  3. 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';