🔞 ADULT: Changeset/ - High Quality

Changeset 1480064


Ignore:
Timestamp:
08/21/2016 04:41:55 PM (9 years ago)
Author:
hypertextranch
Message:

Release v1.1.0

https://github.com/xyu/secure-db-connection/releases/tag/v1.1.0

Location:
secure-db-connection
Files:
7 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • secure-db-connection/trunk

    • Property svn:ignore
      •  

        old new  
        11.git
         2assets
  • secure-db-connection/trunk/readme.txt

    r1480049 r1480064  
    44Requires at least: 3.9
    55Tested up to: 4.6
    6 Stable tag: 1.0
     6Stable tag: 1.1.0
    77License: GPLv3
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
    99
    10 Sets SSL keys and certs for encrypted database connections.
     10Sets SSL keys and certs for encrypted MySQL database connections.
    1111
    1212== Description ==
     
    4646Once SSL keys and certs have been configured you via the defines above define an WP core constant to pass a use SSL flag to the mysqli client also in your `wp-config.php` file.
    4747
    48 ```
    49 define( 'MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL );
    50 ```
     48    define( 'MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL );
    5149
    5250If you are using the MySQL Native Driver and MySQL 5.6 or later `mysqli_real_connect()` will verify the server SSL certificate before connecting. If the SSL cert installed on the MySQL server your are connecting to is not valid PHP will refuse to connect. A flag was added to disable server certificate validation. If your server has an invalid certificate turn on SSL and turn off validation like so:
    5351
    54 ```
    55 define( 'MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT );
    56 ```
     52    define( 'MYSQL_CLIENT_FLAGS', MYSQLI_CLIENT_SSL | MYSQLI_CLIENT_SSL_DONT_VERIFY_SERVER_CERT );
    5753
    5854== Installation ==
     
    6056For detailed installation instructions, please read the [standard installation procedure for WordPress plugins](http://codex.wordpress.org/Managing_Plugins#Installing_Plugins).
    6157
    62 1. Install and activate plugin.
    63 1. Symlink or copy the `db.php` file from the `/plugins/secure-db-connection/includes/` directory to the `/wp-content/` directory.
    64 1. Set the relevant defines in your `wp-config.php` file.
     581. Install and activate plugin, if the filesystem is writable the Secure DB Connection dropin will be installed for you automatically. If not proceed to step 2
     592. Symlink or copy the `db.php` file from the `/wp-content/plugins/secure-db-connection/lib/` directory to the `/wp-content/` directory.
     603. Set the relevant defines in your `wp-config.php` file.
     61
     62== Screenshots ==
     63
     641. An at a glance item is added showing the status of the MySQL connection when this plugin is activated. If the connection is encrypted the SSL version and cipher used will also be shown.
    65