~ubuntu-branches/ubuntu/karmic/phppgadmin/karmic

« back to all changes in this revision

Viewing changes to selenium/tests/config.inc.php

  • Committer: Bazaar Package Importer
  • Author(s): Peter Eisentraut
  • Date: 2008-12-31 19:32:22 UTC
  • mfrom: (1.3.1 upstream) (8.1.2 sid)
  • mto: (8.1.4 sid)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: james.westby@ubuntu.com-20081231193222-swr5hb1fie1enl4l
* New upstream release
  - Fixes local file inclusion vulnerability (CVE-2008-5587) (closes: #508026)
* Removed register_globals from debian/apache.conf (closes: #508026)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
require('../../lang/recoded/english.php');
3
 
 
4
 
$webUrl = 'http://boox/~ioguix/ppa/ppa.test';
5
 
$serverName = '8.3'; // one of your $conf['servers'][*]['desc'] in conf/config.inc/php
6
 
#deprecated $superuser = 'ppatests_super'; // according to your selenium/tests/data/config.sql
7
 
#deprecated $superpass = 'super'; // according to your selenium/tests/data/config.sql
8
 
$superuser = 'postgres'; //only use to create and drop the following admin role
9
 
$superpass = 'pgpass';
10
 
$admin_user = 'admin_user';
11
 
$admin_user_pass = 'super';
12
 
$user = 'ppa_tests_user';
13
 
$user_pass = 'ppa_tests_user_pass';
14
 
$testdb = 'ppatests_db';
15
 
?>