|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 27.77 GB of 70.42 GB (39.44%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
http/
guitar/
sites/
- drwxr-xr-x
|
Viewing file: example.sites.php (1.74 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
<?php
/** * @file * Configuration file for Drupal's multi-site directory aliasing feature. * * Drupal searches for an appropriate configuration directory based on the * website's hostname and pathname. A detailed description of the rules for * discovering the configuration directory can be found in the comment * documentation in 'sites/default/default.settings.php'. * * This file allows you to define a set of aliases that map hostnames and * pathnames to configuration directories. These aliases are loaded prior to * scanning for directories, and they are exempt from the normal discovery * rules. The aliases are defined in an associative array named $sites, which * should look similar to the following: * * $sites = array( * 'devexample.com' => 'example.com', * 'localhost.example' => 'example.com', * ); * * The above array will cause Drupal to look for a directory named * "example.com" in the sites directory whenever a request comes from * "example.com", "devexample.com", or "localhost/example". That is useful * on development servers, where the domain name may not be the same as the * domain of the live server. Since Drupal stores file paths into the database * (files, system table, etc.) this will ensure the paths are correct while * accessed on development servers. * * To use this file, copy and rename it such that its path plus filename is * 'sites/sites.php'. If you don't need to use multi-site directory aliasing, * then you can safely ignore this file, and Drupal will ignore it too. */
/** * Multi-site directory aliasing: * * Edit the lines below to define directory aliases. Remove the leading hash * signs to enable. */ # $sites['devexample.com'] = 'example.com'; # $sites['localhost.example'] = 'example.com';
|