Skip to main content
September 21, 2012
Question

CF9 Admin Page wierd behavior

  • September 21, 2012
  • 2 replies
  • 662 views

Hello,

This is more of a nuisance rather than a functional problem. I have CF9.0.2 installed on a Windows 2008R2 server (iis7.5) configured with 2 instances. While making changes in any CF instance using the CF Admin Page (including the cfusion instance), the page would randomly return me to the login page. This happens at radom when I click on different links or when I commit any changes. I'd have to login to the site again and re-enter the configuration change. All configuration changes are saved successfully on the second attempt. I have tried firefox and chrome and both have the same problem.

Thanks

David Kwang

    This topic has been closed for replies.

    2 replies

    November 26, 2012

    Did you change the cookie-path or the cookie-domain with jrun-web.xml ?

    Adobe use the JSESSIONID for the admin part as well now !

    In order to remove the cookie-path and the cookie-domain for the Admin Console, i added a virtual host in Apache for the console, with the module mod_headers, and i added this :

    loadModule headers_module modules/mod_headers.so
    Header edit Set-Cookie "(JSESSIONID\s?=[^;,]+?)((?:;\s?(?:(?i)Comment|Max-Age|Path|Version|Secure)[^;,]*?)*)(;\s?(?:(?i)Domain\s?=)[^;,]+?)?((?:;\s?(?:(?i)Comment|Max-Age|Path|Version|Secure)[^;,]*?)*)(,|$)" "$1$2$4$5"
    Header edit Set-Cookie "(JSESSIONID\s?=[^;,]+?)((?:;\s?(?:(?i)Comment|Max-Age|Domain|Version|Secure)[^;,]*?)*)(;\s?(?:(?i)Path\s?=)[^;,]+?)?((?:;\s?(?:(?i)Comment|Max-Age|Domain|Version|Secure)[^;,]*?)*)(,|$)" "$1$2$4$5"

    Regards.

    Legend
    September 24, 2012

    Debugging & Logging > Log Files > application.log

    David, I would think something would be in the application.log?

    HTH, Carl.