Im trying to use this: [Snippet] IP-Logging ausschalten (de)
But i cant find the code: $this->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? htmlspecialchars($_SERVER['REMOTE_ADDR']) : ''; in includes/session.php the closest i can find is: $this->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? (string) $_SERVER['REMOTE_ADDR']
I was trying to typing the code $this->ip = '127.0.0.1'; under the first line and what i can se it works, but i dont know if something is wrong anyway?
If i change the second line: 'session_ip' => (string) $this->ip, to 'session_ip' => '127.0.0.1', Everything is just White...
whats wrong?