Make WordPress Core

Ticket #65033: 65033.patch

File 65033.patch, 1.7 KB (added by yasirkhalifa, 2 months ago)

patch file

  • wp-config-sample.php

     
    2828/** Database password */
    2929define( 'DB_PASSWORD', 'password_here' );
    3030
    31 /** Database hostname */
     31/**
     32 * Database hostname.
     33 *
     34 * You can use a hostname, and optionally append a TCP port and/or a Unix socket path.
     35 * General form: hostname[:port][:/path/to/socket]
     36 *
     37 * Examples: '127.0.0.1', '127.0.0.1:3307', 'localhost:/tmp/mysql.sock',
     38 * '127.0.0.1:3307:/var/run/mysqld/mysqld.sock'. IPv6 addresses use brackets, e.g. '[::1]:3306'.
     39 *
     40 * @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
     41 */
    3242define( 'DB_HOST', 'localhost' );
    3343
    3444/** Database charset to use in creating database tables. */