For enhanced security, CodeIgniter can be configured to regenerate session IDs every ________ requests.
- 100
- 1000
- 50
- 500
In CodeIgniter, the session ID regeneration interval is determined by the setting $config['sess_regenerate']. When set to 100, for example, the session ID will be regenerated every 100 requests, enhancing security by reducing the risk of session fixation attacks.
Loading...
Related Quiz
- The use of 'Opcode caching' in CodeIgniter is beneficial for:
- In CodeIgniter, unit tests are typically written in which programming language?
- What is the significance of using regular expressions in form validation?
- How does CodeIgniter support RESTful controller methods?
- Why is user input validation important in preventing SQL injection?