{% load i18n %}

{% trans "Media directory changes" %}

{% blocktrans %} Your Review Board installation does not have a {{MEDIA_ROOT}}/uploaded/images directory. {% endblocktrans %}

{% trans "If this is a new installation..." %}

{% blocktrans %} Create both {{MEDIA_ROOT}}/uploaded and {{MEDIA_ROOT}}/uploaded/images on the server and make both directories writable by the web server. You can do so with the following commands: {% endblocktrans %}

  $ cd {{MEDIA_ROOT}}
  $ mkdir -p uploaded/images
  $ sudo chown -R www-data.www-data uploaded
 

{% trans "If this is an existing installation..." %}

{% blocktrans %} Something may have changed with your filesystem. Please check that the above directory structure exists and is accessible by the web server. {% endblocktrans %}