{% 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 %} A recent update has changed the media setup on the server. This may require manual updates to the web server configuration. Please see the "Media Changes" section on the Required Server Updates page for instructions on fixing your setup. {% endblocktrans %}