Can't login to Magento admin

前端 未结 12 2681
谎友^
谎友^ 2020-11-30 09:31

I have magento installed in a subdirectory. www.domain.com/subdir/magento

This site worked perfectly at one point. I changed nothing, until my client said he could

12条回答
  •  我在风中等你
    2020-11-30 10:08

    If a login error message ("invalid password", etc.) isn't being displayed it's almost always a session cookie problem. In order to rule it our entirely, use Use your browser's cookie viewer and/or your favorite HTTP traffic sniffer and check

    1. That all the cookies have proper expiration dates after being set

    2. That the session cookie has a consistent token name/value for each request

    3. That PHP, when running through Magento, has the various session lifetime ini settings at a reasonable value

    4. That PHP can write to whatever it's using as a cookie storage medium

    5. That the server's time matches the real time, and that PHP itself has a timezone set

提交回复
热议问题