forked from mainwp/mainwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme.txt
1253 lines (1082 loc) · 63.5 KB
/
readme.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=== MainWP Dashboard - The WordPress Manager for Professional Website Maintenance ===
Contributors: mainwp
Tags: WordPress Manager, WordPress Management, Managed WordPress, Manage Multiple Sites, Control multiple sites, WordPress site management, WordPress management dashboard
Author: mainwp
Author URI: https://mainwp.com
Plugin URI: https://mainwp.com
Requires at least: 3.6
Tested up to: 5.5.1
Requires PHP: 5.6
Stable tag: 4.1
License: GPLv3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
The MainWP WordPress Manager Dashboard allows control of unlimited WordPress sites from your own private self-hosted WordPress install. More than just updates!
== Description ==
The [MainWP WordPress Manager](https://mainwp.com) Dashboard plugin allows you to control unlimited WordPress sites from your own private self-hosted WordPress install.
The MainWP WordPress management system is a free and open source. The system is designed for WordPress professionals who realize that WordPress management for yourself or your clients is more than just plugin and theme updates.
And, just because it is free does not mean it's not effective. MainWP allows you to control virtually all of your daily WordPress maintenance tasks at absolutely no cost.
The Dashboard plugin allows you to connect and control all the WordPress sites you administer, even those on different hosts and servers.
MainWP is the perfect solution for WordPress consultants, marketers, developers, WordPress shops, or anyone with multiple WordPress sites.
= How does MainWP work? =
First, Install and Activate this MainWP Dashboard plugin on a WordPress site you will use for controlling all other sites; this is your Dashboard Site. We highly recommend this be a new, clean WordPress installation and not on one of your operating sites. Using a clean site helps to eliminate any unnecessary plugin conflicts or security issues.
Next, Install and Activate the MainWP Child plugin on a WordPress site you want to connect to your MainWP Dashboard. WordPress sites connected to your Dashboard are referred to as Child sites.
Lastly, you securely connect your child site to your MainWP Dashboard. Once connected, your Dashboard can control most aspects of the Child site.
Still not sure how MainWP works? [Review these detailed steps on installing your Dashboard and connecting your first Child site.](https://mainwp.com/getting-started-with-mainwp/)
= How is MainWP free? What's the catch? How will you continue to pay development costs? =
We make money by selling [Extensions](https://mainwp.com/mainwp-extensions/).
Extensions enhance your MainWP Dashboard with additional features. The catalog of [MainWP Extensions](https://mainwp.com/mainwp-extensions/) includes additional features for backups, marketing, SEO, maintenance, security, monitoring, and other tools to help you build a better network.
= Everything below and more is included in with MainWP at absolutely no charge, no tricks, no hidden fees, no nickel and diming you for every little feature and absolutely no gotchas! =
= Some Included MainWP Features: =
= Easy Management =
The MainWP WordPress management system takes the hassle out of managing your themes and plugins. The MainWP Dashboard allows easy review of which of your WordPress sites have themes and plugins that need updating.
Just one click will update all of your plugins and themes across all your sites.
= Effortless Upgrades =
Do you have a busy schedule and dread all of the work you'll be putting into upgrading to WordPress's latest version? Worry no more! With the click of a button from your MainWP WordPress Manager Dashboard, all of your WordPress sites will be upgraded to the latest stable version.
= One-Click Access =
Do you have too many WordPress sites to remember? Accessing all of your WordPress sites is now a breeze with our intuitive one-click access. With the click of a button, you're instantly and securely logged in and ready to work in that WordPress site!
= Automated Updates =
Using the Trusted Plugin and Theme option in your MainWP Dashboard will automatically update all Plugins and Themes you trust with no further interaction. Your MainWP Dashboard will alert you by email with available updates and then auto-update them the next day.
= Abandoned Plugin and Theme Alerts =
When a plugin or theme hasn't had an update in a long time, we tend to forget about it, which could lead to security or compatibility issues. Your MainWP Dashboard will alert you of possibly abandoned plugins or themes so that you can look for a more updated plugin or theme.
= Multiple Reliable Backup Options =
The MainWP Dashboard offers multiple backup options. We have integrated some of the most popular backup plugins and released them as [Free Backup Extensions](https://mainwp.com/mainwp-extensions/extension-category/backup/) this allows you to use the backup plugins you know and trust directly from your MainWP Dashboard.
= Self-Hosted =
Your MainWP Dashboard is hosted on your own WordPress install and not on our private servers. We do not keep records of your actions, sites, passwords, or anything else. [Why that's important!](https://mainwp.com/protect-your-data/)
= Private =
We have 100% respect for your privacy. The developers do not have access to any of your WordPress sites or information. [Why that's important!](https://mainwp.com/protect-your-data/)
= Ignore Updates =
Is there a plugin or theme that you do not want to update for compatibility or other issues? Just tell your MainWP Dashboard to ignore it, and it will no longer alert you of the update.
= Content Management =
With the power of the MainWP WordPress management system, publishing content to sites is now as easy as possible. Pick your site from a list, write content, and publish, without the hassles of logging into each and every site. It's just as easy to manage links, comments, and spam using our mass publish and delete functions.
= Bulk Posting =
Posting content to multiple websites can prove difficult with WordPress alone. With the MainWP Dashboard, posting content to multiple blogs couldn't be more natural. Create the content, select your blogs, and enjoy the time you saved.
= Open Source Code =
Both the MainWP WordPress Manager Dashboard and Child plugin are fully open source and GPL compliant with no obfuscated code, so you always know what is running on your server. Both plugins are also maintained on [GitHub](https://mainwp.com/github/) for easy code access.
= Discovery Protection =
MainWP protects you from your competitors, search engines, or anyone else with prying eyes. No one will ever know you are using the MainWP WordPress management system unless you tell them.
= Customize MainWP =
Extensions offer custom functions and features so that each user can tailor their WordPress management experience to their needs.
= Developer? Code your own Extensions =
Building on WordPress's core principles, the MainWP plugin allows third-party developers to "hook" into it, so anything you want can be developed for your MainWP Dashboard. You can find more information in the [Develop MainWP Extensions](https://mainwp.com/develop-mainwp/) page. Build around a proven WordPress Management System!
= More Information =
[MainWP Documentation](https://kb.mainwp.com/)
[MainWP Community](https://meta.mainwp.com/)
[MainWP Support](https://mainwp.com/support/)
[MainWP Videos](http://www.youtube.com/user/MyMainWP)
[MainWP Extensions](https://mainwp.com/mainwp-extensions/)
[Develop MainWP Extensions](https://mainwp.com/develop-mainwp/)
[MainWP on Github](https://mainwp.com/github/)
== Installation ==
= Note: MainWP is not tested on or designed for multisite installs. =
However, we have reports that most functions work correctly, but support will be limited. We DO NOT recommend installing the MainWP Dashboard plugin on a multisite install.
1. We HIGHLY recommend a NEW WordPress install for your MainWP Dashboard.
Using a new WordPress install will help cut down on Plugin Conflicts and other issues caused by trying to run your MainWP Main Dashboard from an active site. Most hosting companies provide free subdomains ("demo.yourdomain.com"), and we recommend creating one if you do not have a specific dedicated domain to run your MainWP Dashboard.
If you are not sure how to set up a subdomain, contact your hosting companies support.
You can even install your MainWP Dashboard on a WordPress site located on your local computer using [DesktopServer](https://mainwp.com/how-to-use-desktopserver-to-run-your-mainwp-dashboard-locally/), WAMP or any other setup that allows you to run [WordPress locally](https://make.wordpress.org/core/handbook/tutorials/installing-a-local-server/).
2. Once you have set up the separate WordPress install, you can install the MainWP Dashboard plugin following your normal installation procedure, either the Automatic process by searching MainWP or by uploading the MainWP plugin to the '/wp-content/plugins/' directory.
3. Once installed then Activate the plugin through the Plugins menu in WordPress
4. Add your first child site to the MainWP Dashboard - [Documentation](https://kb.mainwp.com/docs/set-up-the-mainwp-plugin/add-site-to-your-dashboard/)
5. Set your MainWP Settings - [Documentation](https://kb.mainwp.com/docs/set-up-the-mainwp-plugin/mainwp-dashboard-settings/)
== Frequently Asked Questions ==
= Do I need any other plugins for MainWP? =
Yes, you need to install the [MainWP Child Plugin](https://wordpress.org/plugins/mainwp-child/) on the sites you want to control with the Dashboard plugin.
= Do you have any documentation? =
Yes, please review the [documentation site](https://kb.mainwp.com).
= I just want to start using MainWP, do you have a Quick Start Guide? =
Yes, please read the [Quick Start – Setting up your MainWP](https://kb.mainwp.com/docs/set-up-the-mainwp-plugin/) guide on the doc site.
= Where do I go for support or to ask for help? =
Please post in the [MainWP Community](https://meta.mainwp.com)
= What is the difference between ManageWP and MainWP? =
Essentially MainWP and ManageWP provide the same type of service but with different philosophies on WordPress management.
ManageWP is a Service as a Solution (SaaS) property owned by Godaddy. The SaaS system makes ManageWP a type of "Walled Garden" with limited customization options.
MainWP follows the tradition of WordPress and is [open source](https://github.com/mainwp/mainwp), [private](https://mainwp.com/protect-your-data/), and [fully extendable](https://mainwp.dev). The fact that MainWP is open source and extendable means you have almost unlimited customization option, this allows you to run your WordPress management business as you see fit.
= How do I know my sites are secure using MainWP? =
We take security very seriously at MainWP. We welcome any peer review of our [100% open source code](https://github.com/mainwp/mainwp) to ensure nobody's MainWP management system is ever compromised or hacked.
We also participate in the [HackerOne](https://www.hackerone.com) bug bounty program; this allows ethical hackers to review MainWP code and directly share any vulnerability information with us in return for a monetary reward.
= How do I customize MainWP for my needs? =
If you want to make some basic changes to the look of your Dashboard, you can use our prebuilt [Custom Dashbboard](https://mainwp.com/extension/mainwp-custom-dashboard-extension/) Extension, or if you want to dig in and build Extensions, you can learn all about Extension creation at [MainWP.dev](https://mainwp.dev)
= I have an idea for MainWP; how do I let you know? =
Please follow the steps outlined in the [MainWP Feature Requests](https://meta.mainwp.com/c/feature/16) so you can add your idea to the MainWP Community to be voted on.
= I have more questions, do you have any other information? =
Sure we have a quick FAQ with a lot more questions and answers [here](https://mainwp.com/presales-faq/).
== Screenshots ==
1. Quick Setup Wizard
2. Add New Site Screen
3. Manage Sites Screen
4. Install Plugins Screen
5. Install Themes Screen
6. Add New User Screen
7. Manage Posts Screen
8. MainWP Settings Screen
9. Global Dashboard Screen
== Changelog ==
= 4.1 - 9-9-20 =
* Fixed: Problem with running automated sites checks
* Fixed: Multiple cosmetic and usability problems
* Fixed: Multiple PHP Warnings
* Added: Over 500 hooks
* Added: Basic uptime monitoring feature
* Added: Email settings feature
* Added: Quick sites shortcuts sidebar
* Added: phpDocs blocks for code documentation
* Added: Child site preview feature
* Added: The Update Everything action to the Bulk Actions menu on Manage Sites page
* Updated: Refactored the code to meet WordPress coding standards
* Updated: Multiple usability and cosmetic updates
* Updated: Multiple performance improvements
* Updated: WordPress 5.5 compatibility
* Updated: Multiple text notifications
* Updated: Default order of items in Manage Plugins and Manage Themes tables
* Updated: Sites filters options on the Manage Sites page
* Updated: Plugin installation process indicator
* Updated: The Updates table to show plugin and theme status
* Preventative: Multiple security improvements
* Removed: Unused files
* Removed: Unused code
= 4.0.7.3 - 8-6-20 =
* Fixed: WordPress 5.5 compatibility
= 4.0.7.2 - 2-3-20 =
* Fixed: An issue with loading Manage Sites table with AJAX
* Fixed: An issue with dismissing the broken email functionality warning messages
* Added: link to MainWP Community to the header element
* Updated: renamed the "assets" directory to "assets."
* Updated: multiple cosmetic improvements
* Updated: removed some steps from the quick setup wizard
= 4.0.7.1 - 1-22-20 =
* Updated: multiple notification texts
= 4.0.7 - 1-17-20 =
* Fixed: encoding problem in error messages
* Fixed: encoding problem posts categories selection
* Fixed: multiple cosmetic problems
* Added: a new feature to easily copy system report
* Added: site ID parameter in the sync request
* Updated: multiple notification texts
* Updated: multiple layout tweaks
* Preventative: security improvements
= 4.0.6 - 12-9-19 =
* Fixed: an issue with sending daily email notifications
* Fixed: an issue with backup type selection
* Fixed: MySQL 8 compatibility problems
* Fixed: multiple typos
* Added: 'mainwp_check_current_user_can' filter
* Added: feature to check if the site can send emails
* Added: support for the Pro Reports extension
* Preventative: security improvements
= 4.0.5 - 11-15-19 =
* Fixed: an issue with daily sync frequency
* Fixed: multiple PHP warnings
* Fixed: multiple typos
* Added: 'mainwp_ui_use_wp_calendar' filter to replace Semantic UI date picker with the WordPress default one
* Added: 'mainwp-users-manage-roles' filter to add support for searching users with custom roles
* Added: 'mainwp_deletesite' filter
* Updated: multiple usability and cosmetic updates
* Updated: multiple text notifications
* Preventative: security improvements
= 4.0.4 - 10-7-19 =
* Fixed: An issue with applying extensions settings when adding a new site.
* Fixed: issues with the Custom Post Types extension
* Fixed: multiple PHP warnings
* Fixed: problem with loading styles and scripts in Custom Post Types
* Fixed: problem with sites selection
* Added: new Quick Setup Wizard steps
* Updated: multiple usability and cosmetic updates
= 4.0.3 - 9-20-19 =
* Fixed: broken Reconnect button in the Connection Status widget
* Fixed: An issue with saving the MainWP Child auto-update feature option in the QuickStart Wizard
* Fixed: multiple typos
* Fixed: various cosmetic issues
* Fixed: An issue with ignoring individual updates
* Fixed: redirection to Quick Start Wizard for new installations
* Added: Twitter brag notifications
* Added: additional links in the actions menu in the Posts, Pages and Users table
* Added: 'mainwp-widgets-screen-options' filter for managing extensions widgets on the Overview page
* Added: option to set a specific time for automatic daily synchronization
* Added: option to set automatic daily synchronization frequency
* Added: Support for the MainWP Custom Dashboard Extension
* Updated: improved hiding unwanted Manage Sites table columns
* Updated: default value for the "Are you planning to use MainWP for backups?" option
= 4.0.2 - 9-6-19 =
* Fixed: An issue with incorrect backups count number in the Client Reports system
* Fixed: multiple cosmetic issues
* Fixed: multiple typos
* Fixed: An issue with short appearance for feedback message after reconnecting site
* Fixed: An issue with displaying the Screen Options button in wrong screens
* Added: The ability to disable update confirmations only for single updates
* Added: The option to show sites favicons
* Added: warning and button to the header element if any updates detected on the MainWP Dashboard site
* Added: groups info in the Site Info widget
* Added: individual site info about abandoned plugins and themes
* Updated: Connection status widget view saves the last selection
= 4.0.1 - 9-3-19 =
* Fixed: a
n issue with incorrect plugin info links
* Fixed:
an issue with clearing and preloading WP Rocket cache
* Fixed: displaying child sites in the Manage Sites issue on some setups
* Fixed: the extensions settings synchronization issue
* Fixed: multiple typos
* Fixed: multiple cosmetic issues
* Added: option to disable updates confirmations popups
* Added: the option to add plugins to favorites after upload
* Updated: notification in the Manage Sites table when there are no results for selected filters
* Updated: extensions installation modal logic
* Updated: multiple text notifications
= 4.0 - 8-27-19 =
* Fixed: various functionality problems
* Fixed: various performance problems
* Fixed: various cosmetic problems
* Fixed: various usability problems
* Added: Semantic UI framework integration
* Added: DataTables JS library integration
* Added: multiple DataTables extensions JS libraries integration
* Added: Dragula JS library integration
* Added: the Usersnap bug reporting system as optional
* Added: the option to hide the Update Everything button
* Updated: multiple performance improvements
* Updated: plugin UI/UX redesign
* Updated: Updates Overview widget simplified
* Updated: the Updates page redesigned to provide easier updates management
* Updated: redesigned Sites table
* Updated: disabled the "Managed Client Reports for WooCommerce" settings page by default and added the option to enable it
* Updated: extensions icons
* Updated: notifications texts
* Updated: email notification template
* Removed: The "Hide MainWP Child plugin from search engines" option since enabled by default with MainWP Child 4.0
* Removed: redundant options from the MainWP Settings section
* Removed: unused files
* Removed: unused code
= 3.5.3 - 12-7-18 =
* Fixed: An issue with special characters in passwords
* Fixed: An issue with displaying WP-Admin footer
* Fixed: incorrect charset in notification emails
* Fixed: An issue with displaying Yoast SEO data on some setups
* Fixed: An issue with displaying extensions activation status in the Extensions widget
= 3.5.2 - 11-27-18 =
* Fixed: An issue with connecting new sites caused by recent OpenSSL update
* Fixed: An issue with marking plugins as Trusted
* Fixed: An issue with activation notices for 3rd party plugins
= 3.5.1 - 11-14-18 =
* Fixed: an issue with generating incorrect URL for the Test Connection feature
* Fixed: an issue with redirecting to the Overview page
* Fixed multiple PHP warnings
* Fixed: an issue with updating stagings sites
* Added: support for custom extension icons
* Added: a new feature for refreshing site favicons
* Added: multiple security enhancements
* Added: mainwp_getmainwpdir hook
* Added: mainwp_updated_site hook
* Added: mainwp_synced_all_sites hook
* Added: mainwp_left_menu_sub hook
* Added: mainwp_subleft_menu_sub hook
* Added: mainwp_removed_extension_menu hook
* Added: mainwp_extensions_top_header_after_tab hook
* Added: support for the upcoming 3rd party extension
= 3.5 - 9-27-18 =
* Fixed: multiple PHP warnings
* Fixed: an issue with special characters used in HTTP passwords
* Fixed: session start issues
* Added: mainwp_detect_premiums_updates filter as a support for detecting updates for Premium plugins that don't use standard WP update API
* Added: mainwp_text_format_email hook to change MainWP notification emails to clean text format
* Added: a new option for fixing security issues 'Scripts and Stylesheets registered version'
* Added: support for the security fix option
* Added: support for the new UpdraftPlus plugin options
* Updated: support for detecting premium plugins updates
= 3.4.9 - 7-23-18 =
* Fixed: connection issues caused by HTTP Basic Authentication on some setups
* Fixed: issues with Themes widget actions
* Fixed: conflict with the Divi theme
* Fixed: a few cosmetic issues
* Fixed: An issue with the number of total updates calculation
= 3.4.8 - 6-26-18 =
* Fixed: syncing issues detected on specific hosts
* Fixed: multiple issues caused by deprecated functions
* Fixed: the issue with saving the SSL Version settings
* Added: Export Sites feature
* Added: Disconnect Sites feature
* Added: mainwp_update_pluginthme_max filter for managing the maximum number of updates to fix update issues on specific setups
* Improved: PHP 7.2 compatibility
= 3.4.7 - 4-17-18 =
* Fixed: An issue with displaying a plugin name in the available updates section
* Fixed: WP Cli issues caused by a conflict with the MainWP Team Control Extension
* Fixed: An issue with syncing plugin data when the plugin contains UTF8 character in the title
* Fixed: MainWP Dashboard and the Postman plugin conflict
* Updated: multiple cosmetic updates
= 3.4.6 - 2-21-18 =
* Fixed: an issue with encoding some special characters
* Added: multiple security enhancements
= 3.4.5 - 1-22-18 =
* Fixed: An issue with missing hook parameter
* Fixed: An issue with database encoding which caused incorrect display of some special characters
* Fixed: An issue with passing metadata for featured images
* Fixed: An issue with caching the Username and Password field values on the Test Connection page
* Fixed: An issue with resetting User passwords on child sites
* Fixed: the sync popup layout issue
* Fixed: An issue with displaying extensions changelogs
* Fixed: multiple typos
* Fixed: multiple incorrect URLs
* Fixed: multiple cosmetic issues
* Added: a new feature to open any Overview widget as a popup
* Added: a new 'mainwp_disablemenuitems' hook
= 3.4.4 - 12-4-17 =
* Fixed: An issue with the Unfix function for the removed readme.html security issue
* Fixed: An issue with permissions for cookie files
* Fixed: An issue with displaying site notes
* Fixed: conflict with the SecuPress plugin
* Fixed: An issue with the auto-installation of the extensions on specific server setups
* Added: Support for the upcoming Extension
* Added: The ability to search posts and pages by keyword in the title and/or body
* Added: the mainwp_getallposts hook for fetching posts and pages
* Added: the mainwp_updatescheck_disable_sendmail hook for disabling email notifications for available updates
* Added: Support for the WordPress proxy setting for curl requests
* Added: WP Admin and Open action links to the Connection Status widget
* Updated: individual site mode navigation layout
* Updated: sort method on the Manage Plugins and Themes page
* Updated: confirmation messages for performing the update process
* Updated: various layout updates
= 3.4.3 - 8-24-17 =
* Fixed: An issue with saving Posts and Pages status
* Fixed: multiple minor issues related to the Client Reports extension
* Fixed: An issue with the Password field
* Fixed: An issue with running updates on WP Engine hosted sites
* Fixed: connection issue with WP Engine hosted sites
* Added: Screen Options (show/hide columns) for the Manage Posts and Manage Pages pages
* Added: the new 'mainwp_limit_updates_all' hook for the support of limiting the number of updates to be performed at once
* Added: a new Advanced Options setting to force IPv4 usage
* Added: a new Advanced Options setting to allow custom configuration for the OpenSSL.cnf
* Added: a new WP CLI command to list all plugins and themes (for example wp mainwp plugin --list-all and wp mainwp theme --list-all)
* Added: Support for the new Yoast SEO features in the Manage Posts and Manage Pages table
* Added: pull request to allow 0 as a non-default value in the Import Sites feature - Thanks [viawest-davidsix](https://github.com/viawest-davidsix)
* Added: pull request to fix incorrect changelog URLs and CSS classes - Thanks [Filoz](https://github.com/Filoz)
* Added: new CSS classes for each table row in the Manage Sites table
* Updated: the Media Upload popup box layout for the Add Media feature on the Add Post and Add Page pages
* Updated: various cosmetic updates
* Updated: compatibility with the new version of the Managed Client Reports for WooCommerce plugin
= 3.4.2 - 7-11-17 =
* Fixed: An issue with sorting posts and pages by the publish date
* Fixed: sync error caused by the WP-SpamShield plugin
* Fixed: JavaScript (moment.js) conflict with the Gutenberg plugin
* Fixed: An issue with sending email notifications about available updates for some users
* Fixed: An issue with triggering unwanted backups
* Fixed: a usability issue with displaying incorrect last sync time
* Fixed: incorrect changelog links
* Added: mainwp_updatescheck_disable_notification_mail hook to disable email notifications about available updates
* Updated: the Update Everything process includes Translations updates
* Updated: the Update process will not check for required backups if a primary backup system is not set
= 3.4.1 - 5-15-17 =
* Fixed: an issue with displaying Last Sync time
* Fixed: an issue with triggering MainWP native backup system backups
* Added: $information parameter in the mainwp_website_updated hook
= 3.4 - 5-11-17 =
* Fixed: an issue with encoding HTML tags in Notes view
* Fixed: an issue with abandoned Themes and Plugins checks
* Fixed: an issue with detecting Extension updates
* Fixed: a database query issue while performing updates
* Fixed: various PHP Warnings and Errors
* Fixed: redirect issue for users that don't have permission to access MainWP Dashboard
* Fixed: an issue with sorting Posts and Pages by Date
* Fixed: multiple layout issues
* Fixed: an issue with email notificatios for available updates
* Fixed: multiple translation issues
* Added: MainWP Side menu
* Added: mainwp_before_save_sync_result filter
* Added: mainwp_get_all_pages_data filter
* Added: mainwp_get_all_posts_data filter
* Added: mainwp_updatescheck_sendmail_at_time filter
* Added: mainwp_website_updated action
* Added: mainwp_added_new_site action
* Added: mainwp_update_site action
* Added: mainwp_delete_site action
* Added: multiple cosmetic improvements
* Updated: multiple text notifications
= 3.3.1 - 2-23-17 =
* Fixed: An issue with displaying Vulnerability data on individual Overview page when the Extension is not installed
* Updated: the Vulnerability Extension info on the MainWP Extensions page.
= 3.3 - 2-22-17 =
* Added: Check HTTP header response after update feature
* Added: Backup Extensions support for the Require backup before update feature
* Added: Support for the MainWP Vulnerability Checker Extension
* Updated: links to MainWP Documentation
* Performance: removed excessive queries
* Preventative: security improvements
= 3.2.3 - 1-19-17 =
* Fixed: An issue with selecting Posts, Pages and Users
* Fixed: An issue with selecting Plugins and Themes on the Manage Plugins and Manage Themes page
* Fixed: security checking issue
* Fixed: multiple PHP Warnings and Notices
* Added: site Info widget in the individual site overview page
* Added: PHP Version column in the manage sites table
* Added: Sync Now button for all online sites in connection status widget
* Added: verification when a user tries to delete Plugins, Pages, Posts, Themes and Users
* Added: The ability to sort Manage Sites table by WP, Plugin and Theme updates column
* Added: Coding for future WooCommerce Extension
* Preventative: Security improvements
= 3.2.2.2 - 1-5-17 =
* Fixed: an issue with connecting HTTPS sites caused by the Select2 library bug
= 3.2.2.1 - 12-30-16 =
* Fixed: a fatal error on PHP versions less than 5.5
* Added: a message for users on PHP versions less than 5.5 to upgrade
= 3.2.2 - 12-30-16 =
* Fixed: An issue with adding a new child site when a group is not selected
* Fixed: An issue with updating translations in the Updates Overview widget
* Fixed: An issue with sorting sites by a group name in Manage Sites table
* Fixed: An issue with creating groups on the Add New Site form
* Added: The ability to dismiss the Tour notices - [Trello Card](https://trello.com/c/nJfApKsn/48-hide-tours)
* Added: plugin changelog link into the email notification
* Added: new Font Awesome version font-awesome
* Added: hook mainwp_format_email to custom notification email
* Added: site note preview feature - [Trello Card](https://trello.com/c/KVrkXJZf/49-notes-section)
* Added: new columns in the Manage Sites table WP Core, Plugins, Themes updates number - [Trello Card](https://trello.com/c/Amio60MQ/33-add-core-plugin-theme-update-columns-to-sites-list-view)
* Added: icon for trusted plugins and themes in the Updates and Updates Overview sections - [Trello Card](https://trello.com/c/2Zk8aXDj/5-trusted-status-indicator-for-individual-plugins-and-themes-listed-in-main-dashboard-display)
* Added: Sync Now button for all sites in the Connection Status widget - [Trello Card](https://trello.com/c/TEqC9ERt/52-sync-now-available-for-all-sites-in-the-connection-status-widget)
* Updated: load Select2 Javascript library only on MainWP Dashboard pages
* Updated: auto-request extensions update information
* Updated: display child site favicon feature
* Updated: Select2 library
* Updated: site connection process (MD5 encryption not supported)
* Updated: multiple functions refactored
* Removed: unused Google js API reference
* Preventative: Security improvements
= 3.2.1 - 12-01-16 =
* Fixed: An issue with saving site groups on the Add New site form
* Fixed: An issue with false alert with PHP Max Execution time set to -1
* Fixed: issue with allowed tags in the notes popup
* Fixed: An issue with opening a site WP-Admin section
* Fixed: An issue with updating site URL on the Site Edit page
* Fixed: An issue with the Fix All (security issues) button in the Security Issues widget
* Added: support for %sitename% and %site_url% tokens for directory path settings for the UpdraftPlus extension
* Added: Support for the new Edit Posts and Pages process
* Added: 'mainwp_create_post_custom_author' hook
* Added: Add and Edit Site hooks
* Added: Last Update time stamp in the Notes column of the Manage Sites table
* Updated: auto-request extensions update information
* Updated: PHP recommendation bumped to 5.6
* Removed: Test Connection action from the action row of the Manage Sites table
* Removed: Links for opening Child Site WP Admin in an iframe
= 3.2 - 10-26-16 =
* Fixed: An issue with loading themes on the Auto Updates page
* Fixed: Multiple typos and grammar issues
* Fixed: An issue with displaying disconnected sites in the Sync Status widget
* Fixed: An issue with activating backup extensions from the QuickStart Wizard
* Fixed: An issue with displaying extensions in incorrect categories
* Fixed: Potential security issues reported by HackerOne
* Added: The MainWP Welcome page
* Added: Help tab on all MainWP Dashboard page
* Added: MainWP Blogroll widget
* Added: Helpful Links widget
* Added: Updates per group selection in the Update Overview widget and Updates page
* Added: Help tours on all MainWP Dashboard plugin pages
* Added: Scheduled filter in the Recent Posts widget
* Added: Scheduled filter in the Recent Pages widget
* Added: Ability to move columns in the MainWP tables
* Added: Ability to move and collapse all Option Boxes in the MainWP pages
* Added: New checks in the Server Information page
* Added: Ability to enable/disable auto-updates for Plugins, Themes and WP Core separately
* Added: Ability to set multiple email addresses for notifications
* Added: Option on the Settings page to enable legacy backups feature
* Added: Ability to edit users directly from Dashboard
* Added: Select style to all select form fields
* Added: General UI improvements
* Added: Sites selection to cached search results
* Updated: Add New Site page layout
* Updated: Groups selection field on the Add New Site page
* Updated: Manage Groups page
* Updated: The Select Sites metabox layout
* Updated: Extensions page layout
* Updated: Extensions widget layout
* Updated: Dashboard page renamed to Overview
* Updated: Right Now widget renamed to Update Overview
* Updated: Sync Status Widget renamed to Connection Status
* Updated: Future status renamed to Scheduled on the Search Posts box
* Updated: Future status renamed to Scheduled on the Search Pages box
* Updated: The Sync and Update popup box style
* Updated: The Auto Updates page layout
* Updated: MainWP native backups deactivated for new users
* Updated: Tabs order on the MainWP Settings page
* Updated: Form fields type on the MainWP Advanced Options page
* Updated: Data return options moved to Manage Posts and Manage pages with the ability to set separately
* Updated: Manage Users page layout
* Updated: Search Users mechanism
* Updated: Import Sites feature extracted to a separate page
* Updated: Import Users feature extracted to a separate page
* Updated: General CSS styles
* Updated: Extension icons optimized for faster loading and plugin size-reduction
* Updated: Email Notification template
* Updated: Notes dialog
* Updated: Plugins Widget style
* Updated: Themes Widget style
* Removed: How to widget
* Removed: Help widget
* Removed: Unreferenced CSS classes
* Removed: Basic SEO stats
* Removed: Documentation page
= 3.1.8.1 - 9-8-16 =
* Fixed: Grammar issues
* Fixed: Cosmetic issues
* Removed: Unused Code
= 3.1.8 - 9-6-16 =
* Fixed: CSS issues with update notices
* Added: Updates page
* Added: Missing info for MainWP Buddy and Custom Post Types Extensions
* Updated: Right Now widget style
= 3.1.7.1 - 8-19-16 =
* Fixed: Issue where some server setups were unable to use the Manage Plugins feature
= 3.1.7 - 8-18-16 =
* Fixed: Issues with PHP 7 - The MainWP Dashboard is now PHP 7 friendly! :-)
* Fixed: Themes Installation (upload) page layout issue
* Security Fix: Fixed minor XSS vulnerabilities (thanks hat_mast3r via Hackerone)
* Security Fix: Fixed minor CSRF vulnerability where the admin can hide MainWP (thanks jaypatel via Hackerone)
= 3.1.6 - 8-2-16 =
* Fixed: PHP Warnings
* Fixed: Issues with escaping HTML attributes
* Fixed: Copyright footer year (thanks dipakcg)
* Fixed: Spelling issues (thanks jorrit)
= 3.1.5 - 6-12-16 =
* Fixed: Issue with displaying double sites in the Status row of the Right Now widget
* Fixed: Issue with displaying restricted sites by the Team Control extension
* Fixed: Incorrect tooltip text for the Backups on Server tooltip
* Fixed: Issue with extensions auto-activation in the Quick Setup process
* Fixed: PHP Notices
* Fixed: Variable naming issue that throws a ReferenceError
* Added: Maximum sync request settings in Advanced Options
* Added: Support for the new version of the MainWP Rocket Extension
* Added: Support for the new version of the MainWP iThemes Security Extension
* Added: Support for the upcoming Extension
= 3.1.4 - 5-11-16 =
* Added: Backup process timeout to prevent updates from failing
= 3.1.3 - 4-28-16 =
* Fixed: Available updates sorting issue
* Fixed: Incorrect OpenSSL.cnf file name and OpenSSL warning on the Server Information page
* Fixed: Quick Setup Wizard loop bug
* Fixed: Fatal error introduced by incorrect class name
* Fixed: Incorrect URL
* Fixed: Favorites extension bug
* Added: Bulk Settings Manager promo notice
* Added: Support for publishing Image Galleries in Posts and Pages
* Added: French translation files
* Added: MU-Plugins support in Plugin overview
* Added: Extra feedback on test connection
* Updated: Auto Backup process to exclude zip files, known backup locations, non WordPress directories to prevent timeout issues
* Updated: Disabled auto-complete for the HTTP Auth Username and Password fields
* Updated: Update process to not run in case backup process is running
* Updated: Quick Start Wizard steps
* Removed: Plugin and Theme conflicts check feature
* Removed: Unused old code
* Cosmetic: Removed slashes added in sitenames with quotes
= 3.1.2 - 3-15-16 =
* Fixed: Slashes added in sitenames when using quotes
* Fixed: Multiple mixed content warnings
* Fixed: Conflict with wpMandrill and Postman SMTP plugins
* Added: Support for the new Team Control feature
* Tweaked: Page loading times and syncing times reduced
= 3.1.1 - 3-3-16 =
* Fixed: Fix All Security Issues feature not running in a non-English language
* Fixed: JavaScript conflict with download monitor plugin
* Fixed: Potential XSS/CSRF issues
* Added: Server Information items
* Updated: API URL
* Tweaked: Reduce server load when updating themes/plugins in bulk
= 3.1 - 2-17-16 =
* Fixed: Not all plugin and theme updates in the email notification
* Fixed: PHP notices
* Fixed: Typo's
* Fixed: Update issue for the iThemes Security Pro and the Monarch plugin
* Fixed: Issue with localhost setups (Quick Setup Wizard)
* Added: Basic WP-CLI support [MainWP WP-CLI Commands](http://docs.mainwp.com/wp-cli-commands/)
* Added: WordPress translation updates for child sites
* Added: Add/Remove to MainWP Menu function for Extensions
* Added: Server self-connect check in the Server Information page
* Added: Auto install the plugin and apply extension settings when adding a new site
* Added: Support for the new API management
* Updated: API Manager messages
= 3.0.2 - 1-22-16 =
* Fixed: Bug that was stripping long plugin and theme names
* Fixed: Issue adding sites when SSL is set to no
= 3.0.1 - 1-18-16 =
* Updated: Extensions Icons
* Fixed: Issue with reconnecting child site with a unique ID
* Fixed: PHP Warning
* Fixed: Issue with displaying Twitter brag messages
* Fixed: Issue with Available Updates in an email notification
* Fixed: Backup task javascript error
* Fixed: Setup wizard loop on a multisite setup
* Added: Warning message for multisite setup
* Added: Hooks to enable extension logging
= 3.0 - 1-12-16 =
* Fixed: Issue with "empty" Theme Conflicts
* Fixed: Issue with including incorrect file when configuring cron jobs
* Fixed: Stripe Slashes for site names issue
* Fixed: Various PHP warnings
* Fixed: Various PHP notices
* Fixed: Verify certificates on test site page
* Fixed: Translation issues
* Fixed: Error Reporting issues on certain server setups
* Fixed: SSL bug
* Fixed: Google index stats reporting
* Fixed: database error some user experienced when adding new sites
* Added: Quick Setup wizard
* Added: Information filter on the Child Server information Page
* Added: Missing Extensions in the Available Extensions list
* Added: Direct Cart link to the Order Now button in the Available Extensions list
* Added: Section retirement notice on the Offline Checks feature
* Added: Section retirement notice on the Offline Checks option on the Settings page
* Added: How To widget on the main Dashboard page
* Added: Select All and Select None button in the Extension Bulk Installation section
* Added: Missing translation support
* Added: Twitter promo notification for upgrade bulk actions in Manage Sites page
* Added: Twitter promo notification for individual upgrades in the Right Now widget
* Added: MainWP Settings info on the Server Information page
* Added: Bulk Update WordPress Core action on the Manage Sites page
* Added: New Table JS library for Plugins management
* Added: New Table JS library for Themes management
* Added: Hints for various Site Connection issues
* Added: Filters for available Extensions in the Available MainWP Extensions box
* Added: SSL version selection to site
* Added: Allow to see MainWP child plugin in plugins search
* Added: Ability to change site URL in Dashboard from Http to https via the site edit screen
* Added: Dashboard widget showing sites not synced in last 24 hours
* Added: Better notation in plugin code for non-MainWP Developers
* Updated: Refactored code to meet WordPress Coding standards
* Updated: API licensing management
* Updated: Child Server Information page layout
* Updated: Multiple buttons style
* Updated: Main Sync Data button title
* Updated: Font Awesome version
* Updated: Notification message on Posts, Pages, Users, Themes and Plugins page
* Updated: Layout on the Bulk Add Sites and Bulk Add Users page
* Updated: Layout on the Manage Users Page
* Updated: Layout on the Install Plugins page
* Updated: Layout on the Install Themes page
* Updated: Image icons replaced by Iconic Font on the Manage Sites page, Offline Checks page and in the Right Now widget
* Updated: Manage Plugins and Manage Themes table layout
* Updated: "Backups on External Sources" option label tweaked to "Backups on Remote Storage."
* Updated: form-table CSS class layout
* Updated: "Hide MainWP Child Plugin" option box renamed to "Network Optimization".
* Updated: "Hide Network on Child Sites" option label renamed "Hide MainWP Child Plugin from Search Engines."
* Updated: "Optimize for Shared Hosting or Big Networks" moved to the Network Optimization" options box
* Updated: Various small updates to match design consistency
* Updated: Groups page layout
* Updated: Reworded "Overwrite Existing" option label
* Updated: Text messages on the Bulk Install and Activate section
* Updated: mainwp-search-box class width
* Updated: No-item message in the Scheduled Backups table
* Updated: CSS to get a more responsive layout
* Updated: Translation files
* Updated: Text messages and input labels in the Bulk Install and Activate Extensions box
* Updated: List of purchased Extensions is divided into Extension Groups
* Updated: Sync in last 24-hour message
* Updated: URL for displaying WordPress.org plugin information
* Removed: Spinner Extension "Free" label
* Removed: Redundant messages on the Add New User and Bulk Add Sites page
* Removed: View Updates per Site option from the Settings page
* Removed: Forum signup form from the Settings page
* Removed: Unused images
* Removed: Form fields custom styles
* Removed: URL row from the Select Sites box
* Removed: Get MainWP Extensions promo box from the Extensions page
* Removed: License link in the Plugin links on the WP > Plugins page
* Removed: Ignored theme/plugin updates from the daily reminder email
* Improved: Speed of Extension page
= 2.0.30 - 12-7-15 =
* Code changes for WP 4.4 Compatibility
= 2.0.29 - 9-22-15 =
* Fixed: Bulk Actions at the bottom of Manage Sites page
* Added: Option to view upgrades per site or per plugin/theme in the Dashboard Right Now widget
* Added: Message in the Security Issues widget in case all issues have been fixed
* Updated: Layout of the error message in the Right Now widget
* Updated: Twitter brag message
* Removed: Unused Code
= 2.0.28 - 9-10-2015 =
* Fixed: Dashboard layout issue
* Fixed: Typo
* Added: Notice if MainWP Child plugin is not set to auto-update and a quick add button
= 2.0.27 - 9-7-2015 =
* Added: Confirmation before Upgrading Plugins and Themes
* Added: Scan child sites for known issues
* Updated: Success message after adding a new child site and reconnecting a disconnected child site
* Updated: Welcome Panel layout on the main and individual child site dashboard
= 2.0.26 - 8-31-2015 =
* Fixed: Element title for the Available Updates status in the Manage Sites page
* Added: Counts for Brag feature
* Added: Unignore feature for Abandoned Plugins
* Added: Unignore feature for Abandoned Themes
* Added: Various info messages
* Updated: Message format for Twitter messages
* Updated: Various info messages
* Updated: Default value for the Hide MainWP Footer option
* Updated: Default status for the Plugins search
* Updated: Default status for the Themes search
* Updated: Ignored Plugins and Themes will not show up in email summary
* Removed: MainWP Heatmap Extension from the "Available Extensions" list
* Removed: News Widget
= 2.0.25 - 8-20-2015 =
* Added: New message showing how many actions performed and the time it took with a Brag button
* Added: Option to remove the message and brag button to Settings --> Dashboard Options
* Fixed: Bug with the filter manage sites by an available update with ignored items
= 2.0.24 - 8-17-2015 =
* Fixed: Compatibility issue with WordPress 4.3
* Updated: Default value for the Abandoned Plugins & Themes Tolerance
= 2.0.23 - 8-7-2015 =
* Fixed: Potential security issue
* Fixed: Incorrect URL in Email template
* Fixed: Syntax error in the Right Now widget
* Fixed: Incorrect URL for the FileSystem tooltip icon
* Fixed: An issue with loading JS and CSS scripts
* Fixed: An issue with Heatmaps not loading
* Added: MultiSite detection on the Server Information page
* Added: max_input_time detection on the Server Information page
* Added: Tools page under the Settings page
* Added: Establish New Connection feature on the Tools page
* Added: Dashboard Options page under the Settings page
* Added: Option to hide MainWP Dashboard custom footer
* Added: Option to hide MainWP Dashboard tip
* Added: Abandoned Plugins detection feature
* Added: Abandoned Themes detection feature
* Updated: Extensions API management system
* Updated: Use Child Site favicons option moved from General Option to Dashboard Options page
* Updated: CSS style
* Updated: Responsive CSS style
= 2.0.22 - 7-22-2015 =
* Fixed: Bug where extensions updates were failing when updating in bulk
* Fixed: Bug with extensions updates detection
* Fixed: Bug with displaying slashes if an apostrophe has been used in a site name
* Fixed: Incorrect arrows direction for Alexa index in the SEO widget
* Fixed: Issue with insecure links
* Added: cURL & SSL notice in the Sites > Add New page
* Added: Hooks for the upcoming Extension
* Updated: Footer bar shows for Admin users and on MainWP pages only
* Updated: Layout of the Right Now widget
* Updated: Columns width in the Manage Sites table
* Updated: Incorrect text on the Sync popup window
* Updated: CSS Style
* Removed: Google PR from SEO check
* Removed: Redundant text from multiple pages
= 2.0.21 - 7-9-2015 =
* Fixed: Bug where extensions updates were failing
* Fixed: Bug where up to date extensions were showing available updates
* Fixed: Timeout issue with a blocked request by CloudProxy
* Fixed: Footer sites menu keyboard shortcut prevented typing of capital S (Keyboard shortcut changed to Shift + Ctrl + S)
* Fixed: An issue with HTML tags in notes
= 2.0.20 - 7-6-2015 =
* Fixed: An issue with Extension updates
* Fixed: An issue where lower Alexa Rank has been marked as negative
* Fixed: An issue with the Available Update filter in Manage Sites list
* Added: Reconnect child sites bulk action
* Added: Verify Certificate preset based on OpenSSL version detection
* Added: Auto retry Extension authentication with Verify Certificate change in case authentication fails
* Added: Keyboard Shortcut (Shift + S) for toggling the footer sites menu
* Added: Missing translation support markups
* Improved: OpenSSL check on the Server Information page
* Improved: Footer Sites menu filter, after opening the menu, filter filed is auto-focused
* Updated: CSS style
* Updated: Layout on the Add New Site and Test Connection page
* Updated: SEO Widget layout
* Updated: Security Scan page style
* Removed: Unused images
= 2.0.19 - 6-11-15 =
* Fixed: issue with some Dashboards not adding new Child sites
= 2.0.18 - 6-10-15 =
* Added: HTTP Auth option when adding Child sites
* Added: Responsive Mobile Friendly Design
* Added: Sites menu in the plugin footer
* Added: Additional links in the footer
* Added: File System check on the Server Information page
* Fixed: Extension API activation error notice
* Fixed: Calculation error for the PHP Memory Limit, PHP Max Upload Filesize and PHP Post Max Size checks
* Updated: CSS style
* Updated: Plugin footer layout
= 2.0.17 - 5-30-15 =
* Fixed: Extension activation issue
= 2.0.16 - 5-23-15 =
* Added: Connection Timeout
* Added: French language files
* Fixed: Issue where the Security widget disappears if not using default backup option
* Updated: Extensions Bulk installation process
* Updated: Quick Jump navigation while working on single sites
* Updated: Extensions widget layout
* Updated: CSS Style
= 2.0.15 - 5-14-15 =
* Added: Update Plugs in bulk action on the Manage Sites page
* Added: Update Themes bulk action on the Manage Sites page
* Added: Actions column in the Manage Sites table
* Added: New documents to the Documentation page
* Added: Support for translation for missed strings
* Added: Invitation for review on WordPress.org messages
* Added: New links to the Shortcuts widget
* Added: New checks to the Server Information page
* Added: Support for the upcoming Extension
* Fixed: Multiple PHP Warning
* Fixed: Multiple spelling errors
* Fixed: Individual site Require backup before upgrade settings bug
* Updated: Required values on the Server Information page
* Updated: Layout of the Server Information page
* Updated: Layout of the Manage Sites tabletop navigation
* Updated: Layout of the Install Plugins page (install process screen)
* Updated: Layout of the Install Themes page (install process screen)
* Updated: Plugin CSS style
* Updated: Form fields labels
* Updated: Layout of the bulk Extension installing process screen
* Updated: Extensions sub-menu (removed the "MainWP" and "Extension" from menu items)
* Updated: Individual site Require backup before upgrade setting
* Removed: Unnecessary checks from the Server Information page
= 2.0.14 - 4-28-15 =
* Added: OpenSSL Notification and the SSL Verify option for Extension site connection
* Fixed: Issues with some updates on the Extensions page
* Fixed: Issue deleting Child sites from Dashboard when the Child plugin disabled or removed
* Fixed: PHP Warning
* Updated: Plugin install page layout
* Updated: Theme install page layout
* Changed: PHP required version on the Server Information page
* Changed: Various small cosmetic features
= 2.0.13 - 4-22-15 =
* Fixed: Security issue with add_query_arg and remove_query_arg
* Fixed: Additional fixes for displaying favicon
* Fixed: PHP Warning
* Added: OpenSSL notification and sslverify option for Extension login
= 2.0.12 - 4-16-15 =
* Fixed: Typo on the Plugins widget
* Added: Various Notices
* Added: New Extension in the Available Extensions box on the Extensions page.
* Tweaked: Layout of the Backup Options box on the Settings Page
= 2.0.11 - 4-12-15 =
* Fixed: Displaying favicon bug
= 2.0.10 - 4-06-15 =
* Added: Display Favicon for child sites feature
* Added: Support for upcoming Extension
* Added: New CSS style
* Fixed: Select sites by group bug in the Team Control Extension
* Fixed: Multiple PHP Warnings
= 2.0.9 - 3-01-15 =
* Fixed: For some languages titles not displaying correctly in the latest posts/latest pages widget
* Fixed: Dashboard download permission issue which was causing plugin bulk installation not working properly
* Tweaked: Better performance (memory usage) and fewer PHP notices
* Added: Hooks for upcoming extensions
= 2.0.8.2 - 2-25-15 =
* Fixed: PHP Fatal error when hiding warnings
= 2.0.8.1 - 2-23-15 =
* Fixed: Security issue - Unrestricted file upload
* Fixed: Security issue - Path traversal in file download
* Fixed: Possible high resource allocation in logger
* Added: IP address in test connection result
= 2.0.8 - 2-11-15 =
* Fixed: Database issue when removing sites
* Added: Better log file handling