XF 1.3 Cant log in unless "remember me" box is checked

The website wont let users log in unless they check the "remember me" box.
  • Xenforo 1.3.0
  • Addons:
    • AdminCP Firewall
    • Auto Link Titles
    • Conversation on moderator action
    • Easy ban users
    • Last post avatar
    • Library
    • live update
    • Login as user
    • Nodes as tabs
    • password protected nodes
    • status notifications
    • thread ban
    • cta countdown widget
    • Xencarta
    • xenporta
    • Xenrio
    • AdminCP notepad
    • Tag Me
    • widget framework
    • minecraft status
    • xentag
  • Skin: UIX Dark by audentio design
  • The problem occurs in all browsers
  • The issue is experienced by all users
  • The problem occurs after i transferred my existing installation over to a webhost from a dedicated server
  • The issue cannot be reproduced on this website
 
Try it with all add-ons disabled and see if the issue goes away. If it does, it's an add-on issue, in which case re-enable them one by one until you find the culprit and then post in that add-on's thread for support.
 
The problem isnt that its too hard to check the box, the problem is that i cant use the widget framework hook view part to see where i can hook widgets into, because sessions arent working. Thats why im trying to fix this issue.
 
PHP:
<?php

$config['db']['host'] = 'localhost';
$config['db']['port'] = '3306';
$config['db']['username'] = 'username';
$config['db']['password'] = 'password';
$config['db']['dbname'] = 'database';

$config['superAdmins'] = '1';
 
So nothing in there then that is relating to caching the sessions etc.

Does the host have / allow any custom php.ini sessions that could be affecting the php session storage?
 
As per your ticket, your IP is being changed via cloudflare. You can disable cloudflare to confirm, and will need to determine what header is storing the real IP and setting that appropriately in config.php.
 
Top Bottom