Koozali.org: home of the SME Server

Moodle install on 7.1.2

Offline william_syd

  • *****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
Moodle install on 7.1.2
« Reply #15 on: March 15, 2007, 10:25:27 PM »
Quote from: "skydivers"
Does anyone know if it is possible to disable the authentication of this contrib.

When I access myserver.be/moodle I get a login prompt before I actually see the moodle homepage.

Could I disable this?

Thanx


Don't edit a dungog contrib template for what you want.
Code: [Select]
to limit access to the web app.

config setprop WEBAPP PublicAccess OPTION

OPTION is either of the following.

        none             => No access
        local            => Local network  (no password required)
        local-pw         => Local network  (password required)
        global           => Entire Internet(no password required)
        global-pw        => Entire Internet(password required)
        global-pw-remote => Entire Internet(password required outside local network)


You want..
Code: [Select]
config setprop moodle PublicAccess global
expand-template /etc/httpd/conf/httpd.conf
svc -h /service/httpd-e-smith
Regards,
William

IF I give advise.. It's only if it was me....

Offline skydivers

  • *
  • 178
  • +0/-0
Moodle install on 7.1.2
« Reply #16 on: March 15, 2007, 10:33:06 PM »
You want..
Code: [Select]
config setprop moodle PublicAccess global
expand-template /etc/httpd/conf/httpd.conf
svc -h /service/httpd-e-smith
[/quote]

Thanx,
This is indeed what i want  :)