by EverPress
3.7 (3 reviews)
SnapShots
Quickly Create SnapShots of your development sites and restore them with a click.
Tested up to WP 6.7.4 (Current: 6.8.2)
v2.8.2
Current Version v2.8.2
Updated 1 year ago
Last Update on 04 Dec, 2024
Synced 1 week ago
Last Synced on
Rank
#28,041
—
No change
Active Installs
10+
—
No change
KW Avg Position
31
—
No change
Downloads
5.4K
—
Total downloads
Support Resolved
0%
—
No change
Rating
74%
Review 3.7 out of 5
3.7
(3 reviews)
Next Milestone 20
10+
20+
2,403
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 2 more installs to reach 20+
Rank Changes
Current
#28,041
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
3.7
3 reviews
Overall
74%
5
2
(67%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
1
(33%)
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| snapshots | 31 | — | Tag | 1 week ago |
Unlock 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.8.2
- Last Updated
- Dec 04, 2024
- Requires WP
- 6.6+
- Tested Up To
- 6.7.4
- PHP Version
- 7.4 or higher
- Author
- EverPress
Support & Rating
- Rating
- ★ ★ ★ ★ ☆ 3.7
- Reviews
- 3
- 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,740
Master Addons For Elementor – White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#927
Query Monitor – The developer tools panel for WordPress
200K+ installs
#252
Header and Footer Scripts
200K+ installs
#257
Performance Lab
200K+ installs
#266
Frequently Asked Questions
Common questions about SnapShots
You need WP CLI installed (at least version 2.2) and PHP must be able to execute external programs with PHPs exec
No, WP CLI is essential here and SnapShots will not work without it. You will not be able to activate the plugin without the addon.
Yes, the plugin has been tested with the amazing tool from WPEngine and works out of the box. Snapshots requires the php in your PATH environment SnapShots tries to find the php binary on your system. If it can't find it, you will get this error. You can define the location of your php binary by open your terminal and running ` dirname $(which php) ` This returns the directory of your php binary. Use this location to define the constant SNAPSHOTS_PHP_PATH in your wp-config.php file. For example: ` define( 'SNAPSHOTS_PHP_PATH', '/usr/local/bin' ); `
Your Home URLs do not match Snapshots checks if the home URL of your site matches the one from wp option get home. If they are not equal it often that the DB_HOST variable is not defined correctly. This also happens if you use a socket for your MySql connection (Local WP). Update your DB_HOST variable in your wp-config.php file to something like this: ` define( 'DB_HOST', 'localhost:/tmp/ysql/mysqld.sock' ); ` This should not affect the regular usage of your site. If you encounter any problems, You can wrap the statement like so: ` if ( defined( 'WP_CLI' ) && WP_CLI ) { define( 'DB_HOST', 'localhost:/tmp/ysql/mysqld.sock' ); }else{ define( 'DB_HOST', 'localhost' ); } ` Snapshots requires the "exec" method SnapShots uses the PHP exec method to execute the WP CLI commands. ` Snapshots requires WP-CLI! SnapShots requires the WP-CLI to be installed on your system. Please install it and make sure it is available in your PATH environment.