~ubuntu-branches/ubuntu/trusty/moodle/trusty

« back to all changes in this revision

Viewing changes to config-dist.php

  • Committer: Package Import Robot
  • Author(s): Thijs Kinkhorst
  • Date: 2014-01-21 13:40:52 UTC
  • mfrom: (1.1.13)
  • Revision ID: package-import@ubuntu.com-20140121134052-ym2qvsp2cd9vq0p6
Tags: 2.5.4-1
* New upstream release, fixing security issues:
  - MSA-14-0001 Config passwords visibility issue [CVE-2014-0008]
  - MSA-14-0002 Group constraints lacking in "login as" [CVE-2014-0009]
  - MSA-14-0003 CSRF vulnerability in profile fields [CVE-2014-0010]
* Move /var/lib/moodle directory into package.
* Revert back to bundled yui3. Unfortunately, version in Debian and
  of upstream are not compatible (closes: #735312).

Show diffs side-by-side

added added

removed removed

Lines of Context:
561
561
// $CFG->behat_prefix = 'bht_';
562
562
// $CFG->behat_dataroot = '/home/example/bht_moodledata';
563
563
//
564
 
// Behat uses http://localhost:8000 as default URL to run
565
 
// the acceptance tests, you can override this value.
 
564
// To set a seperate wwwroot for Behat to use, use $CFG->behat_wwwroot; this is set automatically
 
565
// to http://localhost:8000 as it is the proposed PHP built-in server URL. Instead of that you can,
 
566
// for example, use an alias, add a host to /etc/hosts or add a new virtual host having a URL
 
567
// poiting to your production site and another one poiting to your test site. Note that you need
 
568
// to ensure that this URL is not accessible from the www as the behat test site uses "sugar"
 
569
// credentials (admin/admin) and can be easily hackable.
 
570
//
566
571
// Example:
567
572
//   $CFG->behat_wwwroot = 'http://192.168.1.250:8000';
 
573
//   $CFG->behat_wwwroot = 'http://localhost/moodlesitetesting';
568
574
//
569
575
// You can override default Moodle configuration for Behat and add your own
570
576
// params; here you can add more profiles, use different Mink drivers than Selenium...