vB4.2.2 Admin Panel Error

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • roncaruana
    New Member
    • Mar 2014
    • 9
    • 3.5.x

    vB4.2.2 Admin Panel Error

    I am experiencing another recurring error with my new vB 4.2.2 installation. When opening the admin panel, I often receive this error:
    Fatal error: Could not obtain file lock in ....\includes\class_datastore.php on line 820


    The odd thing is that there is no line 820 in the referenced php file. Any ideas what could be wrong here?


    Click image for larger version

Name:	Capturephp.JPG
Views:	35
Size:	101.4 KB
ID:	4234870
  • kh99
    Senior Member
    • Aug 2009
    • 533

    #2
    I think you're looking at an old version of that file (the date on the bottom is in 2007).

    Anyway, it appears to synchronize some operations by using a database field as a lock, specifically the table adminutil, where title='datastorelock', it sets the 'text' column to a timestamp, and then to 0 when it's done. So you could get past that error using this query:
    Code:
    UPDATE adminutil SET text = 0 WHERE title = 'datastorelock'
    But that doesn't fix the real problem or explain why it's happening periodically.

    Comment

    • roncaruana
      New Member
      • Mar 2014
      • 9
      • 3.5.x

      #3
      Thank you for the information.

      Comment

      • kh99
        Senior Member
        • Aug 2009
        • 533

        #4
        I see that you have another thread about an encoding problem. Maybe when you work that out, this problem will go away.

        Comment

        Related Topics

        Collapse

        Working...