skip to Main Content

I have a subdomain say dev.domain.com that points to document root public_html/dev.

Worked fine, but for good reasons I renamed the folder dev to devm19, also modified the subdomain to point to public_html/devm19.

Problem is I can’t login to the admin – The form for UN and PW is there, credentials are correct, but the form key in URL bar keeps refreshing, you just can’t get inside to admin.

Any idea?

2

Answers


  1. Chosen as BEST ANSWER

    I was able to solve the issue by modifying app/etc/local.xml.

    Added/replaced records for:

    <session_save><![CDATA[files]]></session_save>
    <session_save_path><![CDATA[/tmp/session]]></session_save_path>
    

  2. See the result of the below SQL

    select * from core_config_data where path like '%web/cookie/cookie_domain%';
    

    If it gives you “dev.domain.com” in the value field, then either make it blank or give “devm19.domain.com” as value.

    Then flush the cache, open the admin panel in private window and you will be able to login.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search