Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 5 of 5

Thread: Timeout Issue in Admin on Local Install

  1. #1
    hunter0781 is offline Member
    Join Date
    Apr 2010
    Posts
    34

    Exclamation Timeout Issue in Admin on Local Install

    Anyone else experiencing an annoying timeout issue within the admin on their local install? I maybe get 2-3 clicks then the admin times out.

    Thanks!

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    That's unusual behavior. It could be hardware resources or environmental factor. Do you see anything from your application's event viewer in the control panel?

  3. #3
    hunter0781 is offline Member
    Join Date
    Apr 2010
    Posts
    34

    Default

    Sure do...below is the error from the application log. Any ideas?

    - System

    - Provider

    [ Name] ASP.NET 2.0.50727.0

    - EventID 1316

    [ Qualifiers] 16384

    Level 4

    Task 3

    Keywords 0x80000000000000

    + TimeCreated

    [ SystemTime] 2010-10-28T05:32:26.000000000Z

    EventRecordID 29995

    Channel Application

    Computer WIN7ULT

    Security


    - EventData

    4009
    Viewstate verification failed. Reason: The viewstate supplied failed integrity check.
    10/27/2010 10:32:26 PM
    10/28/2010 5:32:26 AM
    4921fe3bccdc42d397928361986f3cb0
    572
    1
    50203
    /LM/W3SVC/2/ROOT-1-129327158438662109
    Full
    /
    C:\9013\Web\
    WIN7ULT

    9612
    w3wp.exe
    IIS APPPOOL\DefaultAppPool
    http://localhost/admin/topics.aspx
    /admin/topics.aspx
    ::1
    a4370f36-962a-4d71-95a8-000c3154bb82
    True
    Forms
    IIS APPPOOL\DefaultAppPool
    Invalid viewstate.
    ::1
    64733
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
    /wEPDwUIMzAyMjA4MzgPFgQeDEVkaXRpbmdUb3BpY2ceDkVkaXR pbmdUb3BpY0lEBQI3
    http://localhost/admin/topics.aspx
    /admin/topics.aspx

  4. #4
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Thanks for posting the log. This looked to be something to do with your App Pool resets. IIS periodically recycle the application pool to maintain its health. At the instance when the application pool is being recycled, browser requests may sometimes result in an invalid viewstate error. You may try do the either of the following: (a) adjust the setting on the application pool so that recycling is less likely to occur (b) open your web.config file, try changing the <MachineKey> value to static. See KB.

    Let us know if either of those resolves the issue.

  5. #5
    hunter0781 is offline Member
    Join Date
    Apr 2010
    Posts
    34

    Thumbs up

    Setting a static machine key has seemed to resolve the issue. Thx.