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

« back to all changes in this revision

Viewing changes to doc/setup/faq.txt

  • Committer: matt.giuca
  • Date: 2009-01-14 10:10:12 UTC
  • mto: This revision was merged to the branch mainline in revision 1090.
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:branches%2Fstorm:1132
The new ivle.database.User class is now used in Request and usrmgt, which
    means it is now almost universally used in favour of ivle.user.User (now
    deprecated).

Noticeable change: The minor bug where the change to a user object in the
    database is not reflected in the user's session (eg. changing nick doesn't
    update title until log out).

ivle.dispatch:
    Session now contains 'login' (username string) rather than 'user' (full
        ivle.user.User object). This is a unicode string now.

    req.user is now a ivle.database.User object rather than an ivle.user.User
        object. This makes for a whole lot of really subtle differences, but
        largely conforms to the same interface. Note that strings must now all
        be unicode.

    login: Removed use of ivle.db. Now uses User object.

    html: Now handles unicode login and config options.

ivle.db: Removed update_user. Now replaced with Storm model.

ivle.database: Renamed has_cap back to hasCap (saved for later). Fixed small
    unicode bug.

ivle.makeuser.make_svn_auth now takes a store object.

usrmgt-server: Use new User class.

userservice: Now uses User class internally.
    get_user action now returns ISO 8601 date format, rather than a
        time tuple. (Wasn't being used).
    get_user action no longer transmits local_password (small security risk;
        note that it wasn't possible to see this for any user other than
        yourself unless admin).

ivle.util - added function object_to_dict.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
This is a guide for administrators trying to configure IVLE. It answers
5
5
questions about common installation mistakes.
6
6
 
 
7
Two IVLE headings, and 404 error message "There is no application called 'php'.
 
8
===============================================================================
 
9
 
 
10
This is an Apache conf problem - you are missing the following section:
 
11
 
 
12
    <Directory "/opt/ivle/www/php">
 
13
        SetHandler None
 
14
    </Directory>
 
15
 
 
16
The easiest way is to ensure you copied ivle.conf.
 
17
 
 
18
All the CSS and images are missing
 
19
==================================
 
20
 
 
21
There are a couple of causes of this problem.
 
22
 
 
23
1. You could be missing the part of Apache conf which configures the
 
24
    "/opt/ivle/www/media" directory. In this case, hyperlinks will be correct.
 
25
2. You may have set your "root_dir" setting incorrectly. Make sure it
 
26
    corresponds to the URL space where IVLE lives on the web server, or all
 
27
    the URLs will be wrong. In this case, hyperlinks will be wrong as well.
 
28
 
7
29
IVLE displays a generic Terms of Service notice
8
30
===============================================
9
31
 
10
 
You should customize the TOS notice at /var/lib/ivle/notices/tos.html.
 
32
You should customize the TOS notice at trunk/www/apps/tos/license.html.
11
33
 
12
34
Apache Server isn't Restarting
13
35
==============================
14
36
 
15
37
Make sure no console processes are lying around (e.g. sudo killall
16
 
python), then restart with "sudo /etc/init.d/apache2 restart".  If the issue
 
38
python), then restart with "sudo apache2ctl restart".  If the issue
17
39
persists, try stopping the server and starting it in two separate
18
40
steps, so you see the errors reported by the start script.
19
41
 
28
50
is set to the place you want. Then, you need to manually make sure that
29
51
directory exists.
30
52
 
31
 
The default is /var/lib/ivle/sessions.
 
53
The default is /home/informatics/sessions.