W
by Marko Heijnen and Kurt Payne
5 (7 reviews)
WP DB Driver
An improved database layer for WordPress
Tested up to WP 4.4 (Current: 6.9.4)
v2.1.0
Current Version v2.1.0
Updated 10 years ago
Last Update on 27 Dec, 2015
Refreshed 6 hours ago
Last Refreshed on
Rank
#19,502
—
No change
Active Installs
60+
—
No change
KW Avg Position
8
—
No change
Downloads
10.3K
+2 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(7 reviews)
Next Milestone 70
60+
70+
977
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 5 more installs to reach 70+
Rank Changes
Current
#19,502
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
7 reviews
Overall
100%
5
7
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.1.0
- Last Updated
- Dec 27, 2015
- Requires WP
- 4.2.0+
- Tested Up To
- 4.4
- PHP Version
- N/A
- Author
- Marko Heijnen and Kurt Payne
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 7
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,711
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
InfiniteWP Client
200K+ installs
#253
Optimole – Optimize Images in Real Time
200K+ installs
#254
Firelight Lightbox
200K+ installs
#257
Frequently Asked Questions
Common questions about WP DB Driver
PDO > MySQLi > MySQL
In your wp-config.php, add a new constant: define( 'WPDB_DRIVER', 'wpdb_driver_pdo_mysql' ); You can specify wpdb_driver_pdo_mysql, wpdb_driver_mysqli, or wpdb_driver_mysql. Any other driver will cause an error.
They should all function equally well for WordPress. The MySQL extension is being retired. In PHP 5.5, using this extension issues E_DEPRECATED errors. In PHP 5.6, it will no longer be available. The two alternative drivers are PDO and MySQLi. If WordPress switches to MySQLi or PDO, some cool new features become available to developers. http://net.tutsplus.com/tutorials/php/pdo-vs-mysqli-which-should-you-use/
You can set defined in your wp-config.php to make it work. This only works for MySQLi and PDO. These defines are: DB_SSL_KEY, DB_SSL_CERT, DB_SSL_CA, DB_SSL_CA_PATH and DB_SSL_CIPHER. In case of a different port number then you can pass this to your database host like: 127.0.0.1: For more information see: - http://dev.mysql.com/doc/refman/5.5/en/ssl-connections.html