How To Fix “Cannot Obtain File Lock” With Mediawiki Uploads

When trying to upload any files i was getting an error “could not acquire lock for …”. I initially thought this was some sort of permission error since it makes sense. I tried setting the permissions for the entire images folder to 777 and made sure the ownership of the directories was correct, yet it didn’t make a difference. After a lot of googling It would seem that a common cause of the issue is SELinux.

In order to get over this problem you need to navigate to the images directory for your Mediawiki install. E.g. /var/www/html/mediawiki/images. When in this directory execute the following command.

setsebool -P httpd_unified 1

If you are using a command line tool you should see that the highlighting of the folder has changed to a green color. Go back to Mediawiki and check the file upload again. The file should now correctly upload without any error with acquiring a lock with the lock dir.

If this solution didn’t work there are a few other things to try as the problem might not be related to SELinux.

Set permissions of the directory to 777 and make sure apache is the owner and can correctly write to this directory.
Delete the contents of the lockdir folder.

Adding the following to LoadSettings.php will hopefully dump some additional error information to use for debugging.

$wgShowSQLErrors = true;
$wgDebugDumpSql = true;
$wgShowExceptionDetails = true;
$wgShowDBErrorBacktrace = true;

Related Articles

Related Questions

Which Linux Distro Should I Install on My Brother’s Old Laptop?

I'm looking for some guidance on installing Linux on my brother's old laptop. He's been using it, but Windows 10 is too slow due...

Is it Smart to Use ChatGPT While Learning Java?

I'm planning to start learning Java next month, and I've heard that many people suggest using ChatGPT for practice. I'm curious if it's a...

Why Am I Getting Low FPS and Stuttering on My Gaming PC?

Hey everyone, I'm running a pretty robust setup with an RTX 4070 and an i5 12600k, and while I usually get around 170-180 FPS in...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Latest Tools

Scavenger Hunt Team Randomizer

Planning a scavenger hunt and need to split participants into random teams? Whether you're organizing a school activity, a corporate team-building event, or a...

File Hash Generator Online – Get Instant MD5 and SHA-256 Hashes

Whether you are validating downloads, checking for corruption, or comparing files for duplicates, having a fast and secure way to generate file hashes is...

Visual CSS Editor for Modern Glass UI Effects

Modern UI design is all about clean, layered aesthetics, and few styles deliver this better than glassmorphism. If you're designing sleek user interfaces and...

Fast and Accurate Tap BPM Counter – Free Web Tool

Whether you're producing music, DJing live, or just figuring out the tempo of a song, knowing the BPM (beats per minute) can be critical....

Glassmorphism CSS Generator with Live Preview

Glassmorphism is one of the most visually striking design trends in modern UI. Its soft, frosted-glass effect adds depth and elegance to web interfaces,...

Add Custom Speech and Caption Boxes to Any Image Online

Creating comic-style images used to require complex design tools or specialist software. Whether you're making memes, teaching graphics, social media posts or lighthearted content,...

Latest Posts

Latest Questions