Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
htdocs
/
phppgadmin-5.6
/
tests
/
simpletests
/
testcase
/
Public
/
//srv/admin/htdocs/phppgadmin-5.6/tests/simpletests/testcase/Public/common.php
<?php /** * This file just declare global variables. * * @author Allen Xiao * @copyright 2005 by Augmentum, Inc. */ // The home page of phpPgAdmin. global $webUrl; $webUrl = 'http://localhost/phpPgAdmin'; // The user name of phpPgAdmin. // "root" is the superuser (createdb and create user). // "tester" is the power user (createdb). // "guest" is the normal user. global $SUPER_USER_NAME; $SUPER_USER_NAME = 'super'; global $POWER_USER_NAME; $POWER_USER_NAME = 'tester'; global $NORMAL_USER_NAME; $NORMAL_USER_NAME = 'guest'; //The password for these users. global $SUPER_USER_PASSWORD; $SUPER_USER_PASSWORD = 'super'; global $POWER_USER_PASSWORD; $POWER_USER_PASSWORD = 'tester'; global $NORMAL_USER_PASSWORD; $NORMAL_USER_PASSWORD = 'guest'; ?>