-
Notifications
You must be signed in to change notification settings - Fork 808
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a readme.md for the Jetpack GitHub Repository. #5
Labels
[Type] Enhancement
Changes to an existing feature — removing, adding, or changing parts of it
Comments
ghost
assigned georgestephanis
Dec 17, 2013
matticbot
pushed a commit
that referenced
this issue
Dec 16, 2020
Summary: This MC page https://[private link]?tags=hello&sort=popularity&_locale=en&refresh=0 was failing with this error: ``` Fatal error: Uncaught Error: Call to undefined function has_meta() in /home/wpcom/public_html/public.api/rest/sal/class.json-api-post-base.php:123 Stack trace: #0 /home/wpcom/public_html/public.api/rest/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php(264): SAL_Post->get_metadata() #1 /home/wpcom/public_html/public.api/rest/json-endpoints/class.wpcom-json-api-post-v1-1-endpoint.php(130): WPCOM_JSON_API_Post_v1_1_Endpoint->render_response_keys(Object(WPCOM_Post), 'display', Array) #2 /home/wpcom/public_html/public.api/rest/json-endpoints/class.wpcom-json-api-get-post-v1-1-endpoint.php(70): WPCOM_JSON_API_Post_v1_1_Endpoint->get_post_by('ID', 7265, 'display') #3 /home/wpcom/public_html/public.api/rest/wpcom-json-endpoints/class.wpcom-json-api-read-site-post-endpoint.php(35): WPCOM_JSON_API_Get_Post_v1_1_Endpoint->callback('/read/sites/%s/...', 131300129, 7265) #4 /home/wpcom/public_html/wp-content/lib/reader-site-post/class.wpcom-reader-site-post.php(23): WPCOM_JSON_API_Read_Site_Post_Endpoint->callback('/read/sites/%s/...', 131300129, 7265) #5 /home/wpcom/public_html/wp-content/rest-api-plugins/endpoints/read-tags-cards.php(214): WPCOM_Reader_Site_Post::get_site_post(131300129, 7265) #6 /home/wpcom/public_html/wp-content/rest-api-plugins/endpoints/read-tags-cards.php(180): WPCOM_REST_API_V2_Endpoint_Read_Tags_Cards->process_es_results(Array) #7 /home/missioncontrol/public_html/reader/mobile-endpoints/cards/index.php(95): WPCOM_REST_API_V2_Endpoint_Read_Tags_Cards->get_cards(Array) #8 {main} thrown in /home/wpcom/public_html/public.api/rest/sal/class.json-api-post-base.php on line 123 ``` Searching around, it seems that the `has_meta` function is defined not in `wp-includes/post.php` but rather in `wp-admin/includes/post.php` I am a bit skeptical of this change though, because it seems like it could be potentially breaking many things. Test Plan: Apply patch on sandbox and see that cards are properly working for: https://[private link]?tags=hello&sort=popularity&_locale=en&refresh=0 I feel like it needs a bunch more testing, but not sure exactly what. Will definitely need to make sure that it doesn't break other things. Reviewers: bluefuton, gibrown Reviewed By: gibrown Subscribers: vickikb, sodrowski, jsnmoon, gibrown Tags: #touches_jetpack_files Differential Revision: D53904-code This commit syncs r218377-wpcom.
kraftbj
added a commit
that referenced
this issue
Jan 12, 2021
Use "Bleeding Edge" and "Tagged Beta" instead of Beta/RC.
jeherve
pushed a commit
that referenced
this issue
Jun 18, 2021
* Check if the wp_remote_get() call returns an invalid response and notify about the connection error. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733371 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add some escaping for good measure. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733383 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fallback to HTTP but notify about this choice. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733454 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Only set sslverify=true if the request is done over https. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733563 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Revert some flags to avoid breaking sites. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733589 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump release 1.4.7 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@733600 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the description. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@734622 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding a missing "a" to the description. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@734763 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Include the styles and images in the plugin instead of loading them externally. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@735231 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Change the $external_services parameter to true when calling the request_firewall_update() method. Fixes an issue where the external service ip's were not getting updated correctly. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@739955 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Releasing version 1.4.8 of the VaultPress plugin. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@741153 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Remove debugging bits. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@741922 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use $wpdb->prepare() to avoid problems with the upcoming WP 3.6 release git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@741941 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Remove PHP4-style constructors, to avoid strict warnings in PHP5 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@785672 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update to version 1.4.9, add thingalon to contributor list git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@785707 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the compatibility version. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@787455 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Don't show admin notices on the about page. Bumping plugin version to 1.5 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@819074 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding some new methods to check file names against a set of exclusion patterns. For example, we should not backup cache directories or other backup archives. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@821311 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding more exclusion patterns. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@821508 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding a flag that will disable the file exclusion patterns when needed. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@823393 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Releasing version 1.5.1 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@823400 b8457f37-d9ea-0310-8a92-e5e31aec5664 * The icon has been replaced by an icon font. Now it will look extra sharp on retina and take advantage of the new color schemes. nav-styles.css has the updated CSS changes and the webfonts are included in /fonts/ git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@823519 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Removing a greedy cache directory pattern. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@827599 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding less greedy patterns for cache directories. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@828728 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Releasing version 1.5.2 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@828735 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Don't count files that will get skipped towards the pagination limit in :ls calls git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@853002 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release plugin 1.5.3 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@853003 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Removing hard coded file exclusion patterns. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@864954 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Include the full path of the file passed into stat(). git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@865810 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add a new method to perform DB restores. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@874699 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add a changelog entry for the upcoming release. Related r874699 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@874702 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Ensure the given file is the correct and fix a typo. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@879555 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the changelog. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@879587 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Tidy up a PHP E_STRICT warnings about passing non-variables by reference git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@885472 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release plugin version 1.5.6 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@885476 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use a proper constructor name to avoid PHP warnings. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@886661 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Log the latest changes. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@886663 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@886671 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Compare the checksum if a proper value has been passed. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@890208 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Prepare the 1.5.7 release. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@891116 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump the tested up version. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@891127 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump the tested up version to the current WP release. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@914528 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release 1.5.8 Add a new security hotfix. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@925848 b8457f37-d9ea-0310-8a92-e5e31aec5664 * If available, use command line md5sum and sha1sum to get checksums for large files. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@933263 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use esc_sql() instead of the deprecated wpdb::escape() method. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@934467 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add a changelog item for the upcoming 1.6 release. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@934470 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use the wpdb's base_prefix when stripping global table prefixes, because sometimes multisite primaries don't use the same prefixes as the globals git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@938927 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Plugin version bump git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@939435 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding a new hotfix for the MailPoet (wysija-newsletters) Remote File Upload vulnerability. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@941846 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Make sure that the key and secret options are always strings. This fixes an error that happens when running a WordPress site under HHVM. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@945708 b8457f37-d9ea-0310-8a92-e5e31aec5664 * More tags git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@945714 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Support for registering for a VP trial via Jetpack git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@946354 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump plugin version number git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@946386 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Make sure that the empty key and secret options are always strings. See r945708 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@950959 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the changelog for the upcoming 1.6.3 release. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@950961 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Detect if the plugin has been installed on localhost and show an error. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@952302 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the CSS to stop the "Register" button from bouncing around when clicked. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@956890 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Removing a stray () in is_localhost(). Bumping version to 1.6.3 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@957494 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bumping the "Tested up to" tag to 4.0 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@978194 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding a new security hotfix. Bumping plugin version. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@980573 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Noting that the hotfix was for the Slider Revolution plugin. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@980582 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add release dates to changelog git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@986776 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Skip sending update pings while mass-deleting spam git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@997007 b8457f37-d9ea-0310-8a92-e5e31aec5664 * New method to register plugin git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1025498 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Always use https when fetching new service ip addresses git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1025499 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release version 1.6.6 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1025511 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use cidr ranges for internal firewall, instead of c blocks git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1035775 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump to 1.6.7 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1035780 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Return the correct error (instead of null error) when failing a firewall check git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1035798 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Strip off :: from the start of URLs when checking firewall if necessary git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1043254 b8457f37-d9ea-0310-8a92-e5e31aec5664 * If https fails when fetching fresh ip addresses, fall back to http (but warn the user) git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1043262 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Better detection for HTTPS problems when updating the firewall git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1044652 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Dont' report HTTPS comms errors when HTTP doesn't work either git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1044657 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release plugin version 1.6.8 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1044658 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Tested against wp 4.1 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1053121 b8457f37-d9ea-0310-8a92-e5e31aec5664 * RElease 1.6.9 (just bumping the compatibility version number) git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1053132 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add a changelog for release 1.6.9 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1062821 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add a new option to disable calls to php uname, as some hosts don't like it. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1063707 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release version 1.7.0 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1063713 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Better to use stale CIDR firewall rules than to have none at all git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1066634 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Correct the release date of 1.7.0 in the readme file git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1086135 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Switch to DELETE/INSERT instead of REPLACE when generating a unique ping number. This prevents flooding the options table if option_name is not unique. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1099574 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Update the compat version up to 4.2. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1113817 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding support for openssl signing. Bumping the plugin version. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1120688 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Don't allow direct access to plugin files git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1134592 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Ensure that firewall rule option is not autoload git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1135077 b8457f37-d9ea-0310-8a92-e5e31aec5664 * More careful path tidy-up when inspecting directory contents git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1138784 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release 1.7.2; include a hotfix to protected WP 4.1 and 4.1.1 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1141504 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Prevent extremely long comments git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1147196 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version number git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1147278 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release 1.7.3 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1147282 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Don't allow openssl signing unless the public key exists. Bumping the plugin version. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1148492 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Updating the changelog git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1151385 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix styling issue in registration banner git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1166891 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix version number in readme file git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1174046 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Protect WooCommerce 2.0.20 - 2.3.10 from PayPal notification object injection git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1178685 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release a new plugin version git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1178687 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Respect multisite URLs even when not using the WPMU plugin git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1216817 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Better support for WooCommerce + live backups git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1220485 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release 1.7.6, tested against WP 4.3 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1220491 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Correct version number in header git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1220494 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Prepare 1.7.7: Add 3 new security hotfixes git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1246024 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Don't try to stat files if they don't exist. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1252430 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Protect Akismet < 3.1.5 from potential XSS attack git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1266907 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump VaultPress to 1.7.8 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1266911 b8457f37-d9ea-0310-8a92-e5e31aec5664 * When PHP is running in safe mode, trying to use `set_time_limit()` throws a PHP Warning. So let's silence it with a `@` (normally bad, I know) but also check the return to see if it failed and we need to lower the batch limit. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1280844 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump WordPress compatibility git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1308740 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Rename class constructor to remove deprecated error in PHP 7. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1321340 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump minimum version requirement due to dropping PHP 4 support. Also update the changelog. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1321347 b8457f37-d9ea-0310-8a92-e5e31aec5664 * If `$_SERVER['HTTP_HOST']` isn't set, fall back to parsing the site's URL instead. Resolves a notice when activating VaultPress via WP CLI and such where `HTTP_HOST` won't be set. Thanks Garth Mortensen for the error report. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1336797 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Stop storing db update pings when disconnected due to subscription issues git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1353119 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release VaultPress 1.7.9 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1356982 b8457f37-d9ea-0310-8a92-e5e31aec5664 * = 1.8.0 - 7 Mar 2016 = * Add support for an upcoming ability to have the Jetpack plugin manage registering the VaultPress plugin and entering the required API key. Gone will be the days of needing to copy/paste it! git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1366393 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release v1.8.0 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1366402 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix a few debug notices; no functionality impact. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1378268 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Ensure WooCommerce tax rate locations table is backed up live git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1380768 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Check the current blog_id has not changed between loading the VaultPress option, and saving it git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1380771 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version to 1.8.1 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1380781 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Compatible with 4.5 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1395100 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Workaround for NetRegistry's mod_security git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1414405 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version number git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1414407 b8457f37-d9ea-0310-8a92-e5e31aec5664 * VaultPress 1.8.3: hotfix for Jetpack security issue. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1425042 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Jetpack Sync: Make sure the method exists before trying to call it. On very, very old versions of Jetpack, this method doesn't exist which causes a fatal error. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1425753 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Jetpack v4.1 will deprecate `Jetpack_Sync` so stop using it when a newer version of Jetpack is installed. Props @enej. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1425858 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Internal update to feature flag format git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1442226 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Auto-register update: store auto-registration result in options table. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1450961 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release 1.8.4 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1458182 b8457f37-d9ea-0310-8a92-e5e31aec5664 * When deleting the deactivated plugin, delete the plugin's option in order to clean up. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1460543 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Styling: Only have a `-1%` margin on the left side, not the right side. Fixes a horizontal scroll bar showing up at high resolutions such as 2560x1600. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1461121 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump tested version git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1462702 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump plugin version git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1469740 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Release v1.8.5 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1469745 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Updates the security scanner to use a PHP tokenizer to improve accuracy. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1503453 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fixes a bug in the scanner relating to whitespace handling. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1517737 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fixes two bugs with the scanner/parser relating to newlines and results in the first/last line. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1518625 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Updating parser to handle newlines and comments better. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1531716 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding some missing curly braces. Fixes some warnings about PHP 7 compatibility. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1532529 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix the random blue background behind the VP shield icon in the admin toolbar on non-Retina screens. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1533766 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix a parser bug relating to empty strings and empty(). git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1534365 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Optimization in the parser/scanner. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1542943 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Updated README file git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1566848 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Minor bugfix for the upload.php hotfix. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1574139 b8457f37-d9ea-0310-8a92-e5e31aec5664 * New hotfixes, CLI support for registering via jetpack git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1582905 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Version 1.8.6 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1582914 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Remove a typo git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1582921 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Set sslverify to true by default. Only disable sslverify if the constant VAULTPRESS_NO_SSL is set to true. Props to @benedictsinger for the patch. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1607404 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bumping the version number and changelog. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1608840 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bumping the version to 1.8.8 in all the correct places this time. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1608862 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Remove free trial option. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1652769 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version to 1.8.9 and modify changelog. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1652858 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Check that the return value from openssl_verify() is 1. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1671299 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Deploying 1.9.0 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1671301 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Adding annezazu and rachelsquirrel as contributors. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1682117 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Use hash_equals to compare signatures to prevent timing attacks git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1686645 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Version bump git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1687451 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Compatibility update. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1691930 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Suppress warnings from token_get_all which spews them with invalid input. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1735745 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Provide a better useragent string when contacting VaultPress servers. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1760868 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Core version compatibility bump. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1762058 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Changelog and version bump. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1762064 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Make the scanner handle some file reading errors better. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1786586 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Version bump to 1.9.4 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1787825 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Removing activation notice. Bumping version number. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1814337 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Limit _vp_ai_ping_% entries to improve stability when a site gets disconnected from VaultPress.com git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1930233 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bumping the Tested up to version to 5.0. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1986352 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Add support for detecting alternate IP headers to work around various reverse proxies git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1991304 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Version release git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1991344 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Tidy up changelog git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@1991347 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Limit vp_ai_ping entries to no more than 50mb git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@2026251 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Bump version number git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@2026252 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Tested against WordPress 5.1.1 git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@2053117 b8457f37-d9ea-0310-8a92-e5e31aec5664 * PHP 7.2.0 compatibility fix. Adding button to delete all VaultPress settings git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@2061705 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Fix a PHP fatal error caused by passing an object to the current() function. git-svn-id: https://plugins.svn.wordpress.org/vaultpress/trunk@2063252 b8457f37-d9ea-0310-8a92-e5e31aec5664 * Experiment using Jetpack Logo package in VaultPress * Removing debug string * Updating autoloader error message to be VaultPress specific * Attemp to use autoloader loader package in Vaultpress to load autoloader in consistent way across packages * Remove custom autoloader for now * Fail gracefully * Add composer.lock * Display the Jetpack logo here and there * Align the logo to the footer right area * Bring jetpack-standards back * dev-master of logo for now * Fix deps * Use the Packagist package instead * Removing errant </p> tag * this is not a jetpack_autoloader
leogermani
pushed a commit
that referenced
this issue
Aug 12, 2022
When using WP-Cli to run the event "wp_cache_full_preload_hook" causes the follow error > /webdir/bin/wp cron event run --due-now ``` PHP Fatal error: Uncaught Error: Call to undefined function wp_cache_debug() in /webdir/web/app/plugins/wp-super-cache/wp-cache.php:3163 Stack trace: #0 /webdir/web/wp/wp-includes/class-wp-hook.php(298): wp_cron_preload_cache() #1 /webdir/web/wp/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array) #2 /webdir/web/wp/wp-includes/plugin.php(515): WP_Hook->do_action(Array) #3 phar:///webdir/bin/wp/php/commands/cron-event.php(284): do_action_ref_array('wp_cache_full_p...', Array) #4 phar:///webdir/bin/wp/php/commands/cron-event.php(255): Cron_Event_Command::run_event(Object(stdClass)) #5 [internal function]: Cron_Event_Command->run(Array, Array) #6 phar:///webdir/bin/wp/php/WP_CLI/Dispatcher/CommandFactory.php(67): call_user_func(Array, Array, Array) #7 [internal function]: WP_CLI\Dispatcher\CommandFactory::WP_CLI\Dispatcher\{closure}(Array, Array) #8 phar:///webdir/bin/wp/php/WP_CLI/Dispatcher/Subcommand.php(372): call_user_func(Objec in /webdir/web/app/plugins/wp-super-cache/wp-cache.php on line 3163 Fatal error: Uncaught Error: Call to undefined function wp_cache_debug() in /webdir/web/app/plugins/wp-super-cache/wp-cache.php:3163 Stack trace: #0 /webdir/web/wp/wp-includes/class-wp-hook.php(298): wp_cron_preload_cache() #1 /webdir/web/wp/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters('', Array) #2 /webdir/web/wp/wp-includes/plugin.php(515): WP_Hook->do_action(Array) #3 phar:///webdir/bin/wp/php/commands/cron-event.php(284): do_action_ref_array('wp_cache_full_p...', Array) #4 phar:///webdir/bin/wp/php/commands/cron-event.php(255): Cron_Event_Command::run_event(Object(stdClass)) #5 [internal function]: Cron_Event_Command->run(Array, Array) #6 phar:///webdir/bin/wp/php/WP_CLI/Dispatcher/CommandFactory.php(67): call_user_func(Array, Array, Array) #7 [internal function]: WP_CLI\Dispatcher\CommandFactory::WP_CLI\Dispatcher\{closure}(Array, Array) #8 phar:///webdir/bin/wp/php/WP_CLI/Dispatcher/Subcommand.php(372): call_user_func(Objec in /webdir/web/app/plugins/wp-super-cache/wp-cache.php on line 3163 ``` This patch correct this based on deactivate/uninstall hooks which works on WP-Cli.
3 tasks
Merged
3 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
[Type] Enhancement
Changes to an existing feature — removing, adding, or changing parts of it
As mentioned in #3 by @maxme, while we have a readme.txt file, we don't have a readme.md which is the standard for GitHub.
We don't need all the additional cruft in readme.txt, so let's do a separate and distinct one for GitHub.
The text was updated successfully, but these errors were encountered: