Make WordPress Core

Ticket #32798: wp-config.php

File wp-config.php, 716 bytes (added by bogdan.ionescu, 9 years ago)

Wordpress config file

Line 
1<?php
2# Wordpress 4.2.2
3# PHP 5.4.x
4# MySQL 5.6.x
5
6#
7# ...
8#
9
10/** The name of the database for WordPress */
11define('DB_NAME', 'wp_demo1');
12
13/** MySQL database username */
14define('DB_USER', 'wp_demo1');
15
16/** MySQL database password */
17define('DB_PASSWORD', 'pa$$w0rd');
18
19/** MySQL hostname */
20define('DB_HOST', '.:\\\\.\\pipe\\mysql56.pipe'); # syntax = ".:\\.\pipe\name.pipe"
21
22/** MySQLi extension (optional) */
23#define('WP_USE_EXT_MYSQL', false); # for mysqli set to false
24
25/** Database Charset to use in creating database tables. */
26define('DB_CHARSET', 'utf8');
27
28/** The Database Collate type. Don't change this if in doubt. */
29define('DB_COLLATE', 'utf8_general_ci');
30
31#
32# ...
33#