root/releases/elgg0.8rc2/_elggadmin/config.php

Revision 758, 0.9 kB (checked in by sven, 2 years ago)

set svn property eol-style native on some files without it

  • Property svn:eol-style set to native
Line 
1 <?php
2         
3     /*
4     
5         Elgg admin panel
6         Configuration options
7         
8         Assumes main Elgg config.php exists.
9     
10     */
11
12     global $ADMINCFG;
13     
14     // Location of main Elgg installation root (relative to this file or absolute)
15             $ADMINCFG->admin->elggdir = "../";
16             
17     // Username for admin panel
18             $ADMINCFG->admin->username = "admin";
19             
20     // Password for admin panel
21     // (Admin panel will not work if this is left blank!)
22             $ADMINCFG->admin->password = "";
23             
24     // Include the names of any configuration parameters here that you
25     // don't want to be editable
26             $ADMINCFG->admin->noedit = array(
27                                             );
28     
29     // Filename of main Elgg config file (99.99% of the time this will be config.php)
30             $ADMINCFG->admin->configfile = "config.php";
31
32 ?>
Note: See TracBrowser for help on using the browser.