Bringing up a Django site on a production Linux server using Apache with mod_python, I'm running the following code for a file upload:
from django.conf import settings
import os
# ...
upload_base_dir = "upload"
file_pointer = files['file']
file_path = os.path.join(settings.ROOT_SITE_DIR, upload_base_dir, event_name)
if not os.path.exists(file_path):
os.makedirs(file_path)
file = open(file_path + '/' + file_name, 'wb+')
for chunk in file_pointer.chunks():
file.write(chunk)
file.close()
The file_path is an absolute path to the file. I've done a little debugging to find that if the file_path doesn't exist, os.makedirs() fails (500 error returned to requester). If the file_path does exist, the file open fails. I've ensured that directory permissions are permissive enough.
The code works when I am running the Django development server. I've used this code before, and it works in other sites. I'm pretty sure the Apache configuration is the same for relevant settings.
Should be a simple fix, so this is driving me crazy. Does anyone have pointers for other things I should check? Can I rule out Apache as part of the issue?