Guest User

Untitled

a guest
Jul 18th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. I've set up a .htaccess file to password protect a directory, the code below is a php.ini file a placed in the same directory and added the last line of code: session.gc_maxlifetime = 60 , so I can set how long the session lasts, because i've set it to 60 for testing i was hoping the password had to be readded after a minute, but it's not working, any ideas?
  2.  
  3. disable_functions = show_source, passthru, exec, popen, proc_open, allow_url_fopen
  4. memory_limit = 64M
  5. max_execution_time = 30
  6. magic_quotes_gpc = on
  7. magic_quotes_runtime = off
  8. max_input_time = 60
  9. upload_max_filesize = 24M
  10. post_max_size = 40M
  11. extension_dir = "/usr/local/lib/php/extensions/no-debug-non-zts-20060613"
  12. zend_extension = "/usr/local/IonCube/ioncube_loader_lin_5.2.so"
  13. zend_extension_ts = "/usr/local/IonCube/ioncube_loader_lin_5.2_ts.so"
  14. zend_extension_manager.optimizer = /usr/local/Zend/lib/Optimizer-3.3.3
  15. zend_extension_manager.optimizer_ts = /usr/local/Zend/lib/Optimizer_TS-3.3.3
  16. zend_optimizer.version = 3.3.3
  17. zend_extension = /usr/local/Zend/lib/ZendExtensionManager.so
  18. zend_extension_ts = /usr/local/Zend/lib/ZendExtensionManager_TS.so
  19. extension = suhosin.so
  20. suhosin.executor.include.max_traversal = 6
  21. suhosin.apc_bug_workaround = On
  22. suhosin.memory_limit = 256
  23. suhosin.upload.disallow_elf = On
  24. suhosin.post.max_vars = 2000
  25. suhosin.request.max_vars = 2000
  26. suhosin.log.syslog.facility = 9
  27. suhosin.log.use-x-forwarded-for = Off
  28. session.gc_maxlifetime = 60
Add Comment
Please, Sign In to add comment