5

I have a small MediaWiki wiki in a hosted website. It works pretty well, except that I can't find where to configure the session timeout.

Right now, my session expires while I'm editing pages. I've seen all kinds of recomendations, including touching the PHP settings, but I can't find any authoritative answer.

Any suggestions?

ggambetta
  • 367

2 Answers2

5

If you are referring to PHP session timeout, it is set in php.ini and depends further on your PHP version.

This could be through session.gc_maxlifetime or session.cache-expire or even session.cookie_lifetime.

See also this thread for more info and this article.

harrymc
  • 498,455
0

The session timeout configuration is php stuff, not mediawiki's.

Look for session.cookie-lifetime in your php.ini file.

Toto
  • 417