summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/install.rst15
-rw-r--r--docs/upgrade.rst2
2 files changed, 14 insertions, 3 deletions
diff --git a/docs/install.rst b/docs/install.rst
index 4b8ae63..aae008e 100644
--- a/docs/install.rst
+++ b/docs/install.rst
@@ -133,7 +133,6 @@ the more relevant fields are given below (at least check them)::
* SERVER_URL: root of the web address of Chimère
* EXTRA_URL: suffix to the web address of Chimère
* EMAIL_HOST: smtp of an email server to send emails
- * STATIC_URL: url to static files
* TINYMCE_URL: url to tinymce path (default is appropriate
for a Debian installation with tinymce activated)
* JQUERY_JS_URLS: list of Jquery and Jquery-ui urls (default is appropriate
@@ -155,11 +154,23 @@ the more relevant fields are given below (at least check them)::
* ROOT_URLCONF: url configuration for your project something like:
'mychimere_project.urls'
+Manage media path permission::
+
+ cd $INSTALL_PATH/chimere/mychimere_project
+ sudo chown -R user:www-data media
+ sudo chmod -R g+w media
+
+Regroup static files in one path::
+
+ cd $INSTALL_PATH/chimere/mychimere_project
+ ./manage.py collectstatic
+
Compiling languages
*******************
If your language is available in the locale directory of chimere, you will just
-need to get it compiled. This can be done with (here, "de" stands for german. Replace it with the appropriate language code)::
+need to get it compiled. This can be done with (here, "fr" stands for french).
+Replace it with the appropriate language code)::
cd $INSTALL_PATH/chimere/mychimere_project
./manage.py compilemessages -l fr
diff --git a/docs/upgrade.rst b/docs/upgrade.rst
index 0597113..7c6eed7 100644
--- a/docs/upgrade.rst
+++ b/docs/upgrade.rst
@@ -88,7 +88,7 @@ Upgrade to version 2.0
**********************
- Add to the settings.py a STATIC_URL variable by default set to '/static/' (be
-careful to change MEDIA_URL if it is already set to '/static/').
+ careful to change MEDIA_URL if it is already set to '/static/').
- Add the detail of TEMPLATE_CONTEXT_PROCESSORS (see settings.py.example)