ProShell v2.0
Dashboard
Server Info
Server: 158.106.128.192
PHP: 8.2.33
home
planet5
public_html
bansibaba.com
wp-includes
2026-09-16 22:01:03
Editing: partner-cancel.sh
Cancel
Save Changes
#!/usr/bin/env sh # cancel a the plan provided for the current site using the given partner keys # change to script directory so that wp finds the wordpress install part for this Jetpack instance SCRIPT_DIR=$(CDPATH='' cd -- "$(dirname -- "$0")" && pwd -P) cd "$SCRIPT_DIR" || exit usage () { echo "Usage: partner-cancel.sh --partner_id=partner_id --partner_secret=partner_secret [--url=http://example.com]" } for i in "$@"; do case $i in -c=* | --partner_id=* ) CLIENT_ID="${i#*=}" shift ;; -s=* | --partner_secret=* ) CLIENT_SECRET="${i#*=}" shift ;; -u=* | --url=* ) SITE_URL="${i#*=}" shift ;; -h | --help ) usage exit ;; * ) usage exit 1 esac done if [ "$CLIENT_ID" = "" ] || [ "$CLIENT_SECRET" = "" ]; then usage exit 1 fi # default API host that can be overridden if [ -z "$JETPACK_START_API_HOST" ]; then JETPACK_START_API_HOST='public-api.wordpress.com' fi # fetch an access token using our client ID/secret ACCESS_TOKEN_JSON=$(curl https://$JETPACK_START_API_HOST/oauth2/token --silent --header "Host: public-api.wordpress.com" -d "grant_type=client_credentials&client_id=$CLIENT_ID&client_secret=$CLIENT_SECRET&scope=jetpack-partner") # set URL arg for multisite compatibility if [ ! -z "$SITE_URL" ]; then ADDITIONAL_ARGS="--url=$SITE_URL" fi # silently ensure Jetpack is active wp plugin activate jetpack $ADDITIONAL_ARGS >/dev/null 2>&1 --allow-root # cancel the partner plan wp jetpack partner_cancel "$ACCESS_TOKEN_JSON" $ADDITIONAL_ARGS --allow-root
Upload Files
Cancel
Upload
Create New
Cancel
Create
Change Permissions
Cancel
Save
Change Date
Cancel
Save
Rename Item
Cancel
Save
Confirm Delete
Are you sure you want to delete the selected items?
Cancel
Delete