How can I fix the MediaWiki error “Wiki uses cookies to log in users. You have cookies disabled. Please enable them and try again.”?

前端 未结 12 2342
春和景丽
春和景丽 2021-02-14 02:03

The problem I am having is that I can not log on to my newly created wiki that I made using MediaWiki. I have searched the web for an answer, and the ones I found did not help w

12条回答
  •  被撕碎了的回忆
    2021-02-14 02:34

    Be root:

    su -
    

    Then edit the php.ini file:

    nano /etc/php5/apache2/php.ini
    

    And set those variables to /tmp:

    session.save_path = "/tmp"   
    session.cookie_path = "/tmp"
    

    You can also correct the permissions just in case:

    chmod -R 1777 /tmp
    

提交回复
热议问题