This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1. Install the MySQL Community repository | |
| wget http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm | |
| rpm -Uvh mysql-community-release-el6-5.noarch.rpm | |
| 2. Installing MySQL 5.6 | |
| yum -y install mysql mysql-server | |
| 3. Verify the correct packages were installed | |
| rpm -qa | grep mysql | |
| it should be: | |
| mysql-community-release-el6-5.noarch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Remove Data Go Pricing (https://www.go-pricing.com/) plugin | |
| global $wpdb; | |
| $rows = $wpdb->get_results( "SELECT * FROM wp_posts where `post_type` = 'go_pricing_tables'"); | |
| foreach ( $rows as $row ) | |
| { | |
| wp_delete_post( $row->ID, true); | |
| } |
OlderNewer