ATutor

Learning Management Tools







Pages:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15


Front Page


  • 2007-10-10 19:27:52

    Front Page

    First let me say that I have used ATutor for all my classes for two years now and tested all the other open source LMS/LCMS systems and this is by far the best. Course creation is simple, and the testing functions are non-pareil.

    I only have one problem with it. There is no way to welcome new viewers to my site. The login page is the first thing they see and it doesn't permit any welcome message or explanation of the site.

    Is there any way the login functions could be moved to a sidebar and an announcement module added to the center of the page?

    I've tried using the hello_world module but I can't make the default front page.

    Is my only option to try to reproduce the look in Dreamweaver and link the home page ATutor?

  • 2007-10-11 03:26:19

    Re: Front Page

    sure, this is quite easy, you just need a tiny bit of HTML / CSS knowledge.

    ftp in to your server, and find the atutor/themes/[theme-name]/login.tmpl.php file - open this, and you see the code that controls the login page. you are probably able to see what is what there if you know a little bit of HTML / PHP.

    if you have only one language on your site you can add the welcome text where you'd like it in this page, and if you have more languages, add a language term as an administrator and call it in that file. this is the code used to call a term:

    [php]
    echo _AT('confirm_account_text');
    [/php]

    ..where what's in the (' ') is the name of the term. here you can see a login page that is modifies a bit: http://www.atutor.no/atutor/login.php

    remember to document your changes for yourself, so you remember it when you upgrade Atutor the next time :)

  • 2007-10-11 07:31:33

    Re: Front Page

    II really appreciate your input, Vegard. It was nice of you to respond. At your suggestion I tried monkeying around in Dreamweaver but none of the changes I tried showed up in the browser. I don't know enough about php to pull it off properly.

  • 2007-10-11 09:03:38

    Re: Front Page

    that was strange.. you did download the file, edit it, and upload it again - replacing the one on the server? (do have a backup of it!)

    did you edit the correct file? if you use the default theme it should be this:

    atutor/themes/default/login.tmpl.php

    try the one attached here, you see where I have edited it (welcome to my site etc) - I've tried it and it works.

    note again: do have a backup of the old file! :)