~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to doc/man/faq.rst

  • Committer: William Grant
  • Date: 2009-12-08 05:26:00 UTC
  • Revision ID: grantw@unimelb.edu.au-20091208052600-j5jpe25vgjtypex9
Fix missing GroupsView when creating a project set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
.. IVLE - Informatics Virtual Learning Environment
 
2
   Copyright (C) 2007-2009 The University of Melbourne
 
3
 
 
4
.. This program is free software; you can redistribute it and/or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 2 of the License, or
 
7
   (at your option) any later version.
 
8
 
 
9
.. This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
 
 
14
.. You should have received a copy of the GNU General Public License
 
15
   along with this program; if not, write to the Free Software
 
16
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
.. _ref-faq:
 
19
 
 
20
**************************
 
21
Frequently Asked Questions
 
22
**************************
 
23
 
 
24
This is a list of Frequently Asked Questions for IVLE. It answers questions 
 
25
about common issues encountered when configuring or running the system.
 
26
 
 
27
.. _ref-faq-how:
 
28
How can I...
 
29
============
 
30
 
 
31
... change the Terms of Service notice?
 
32
---------------------------------------
 
33
 
 
34
You should customize the ToS notice at :file:`/var/lib/ivle/notices/tos.html`.
 
35
 
 
36
 
 
37
.. _ref-faq-why:
 
38
Why does...
 
39
===========
 
40
 
 
41
... Apache not restart?
 
42
-----------------------
 
43
 
 
44
Make sure no console processes are lying around (e.g. sudo killall
 
45
python), then restart with ``sudo /etc/init.d/apache2 restart``.  If the issue
 
46
persists, try stopping the server and starting it in two separate
 
47
steps, so you see the errors reported by the start script.
 
48
 
 
49
... IVLE dump me back to the login screen with no error when I try to login?
 
50
----------------------------------------------------------------------------
 
51
 
 
52
This is usually because IVLE can't save your session information. IVLE saves
 
53
sessions to a sessions directory on disk. Unfortunately, this is not currently
 
54
configurable in :file:`./setup.py` config. You need to edit the Apache config 
 
55
file.
 
56
 
 
57
Look for ``PythonOption mod_python.file_session.database_directory``. Make
 
58
sure it is set to the place you want. Then, you need to manually make sure
 
59
that directory exists.
 
60
 
 
61
The default is :file:`/var/lib/ivle/sessions`.
 
62