Plugin Directory

Changeset 3170666


Ignore:
Timestamp:
10/17/2024 11:26:22 AM (16 months ago)
Author:
instawp
Message:

Update to version 0.1.0.60 from GitHub

Location:
instawp-connect
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • instawp-connect/tags/0.1.0.60/includes/apis/class-instawp-rest-api.php

    r3149254 r3170666  
    3838            'permission_callback' => '__return_true',
    3939        ) );
     40
     41        register_rest_route( $this->namespace . '/' . $this->version_2, '/refresh-staging-sites-list', array(
     42            'methods'             => 'POST',
     43            'callback'            => array( $this, 'refresh_staging_sites_list' ),
     44            'permission_callback' => '__return_true',
     45        ) );
    4046
    4147        register_rest_route( $this->namespace . '/' . $this->version_2, '/disconnect', array(
     
    241247
    242248    /**
    243      * Handle events receiver api
     249     * Mark website as staging.
    244250     *
    245251     * @param WP_REST_Request $req
     
    270276        ) );
    271277    }
     278
     279    /**
     280     * Refresh staging site list.
     281     *
     282     * @param WP_REST_Request $req
     283     *
     284     * @return WP_Error|WP_HTTP_Response|WP_REST_Response
     285     */
     286    public function refresh_staging_sites_list( WP_REST_Request $req ) {
     287        $response = $this->validate_api_request( $req );
     288        if ( is_wp_error( $response ) ) {
     289            return $this->throw_error( $response );
     290        }
     291
     292        instawp_set_staging_sites_list();
     293
     294        return $this->send_response( array(
     295            'status'  => true,
     296            'message' => __( 'Staging Site List Refreshed.', 'instawp-connect' ),
     297        ) );
     298    }
    272299
    273300    /**
  • instawp-connect/tags/0.1.0.60/includes/functions.php

    r3162062 r3170666  
    340340if ( ! function_exists( 'instawp_set_staging_sites_list' ) ) {
    341341    function instawp_set_staging_sites_list() {
    342 
    343         $api_response = Curl::do_curl( 'connects/' . instawp_get_connect_id() . '/staging-sites', array(), array(), 'GET' );
     342        $connect_id = instawp_get_connect_id();
     343        if ( empty( $connect_id ) ) {
     344            return false;
     345        }
     346
     347        $api_response = Curl::do_curl( 'connects/' . $connect_id . '/staging-sites', array(), array(), 'GET' );
    344348
    345349        if ( $api_response['success'] ) {
     
    357361
    358362            Option::update_option( 'instawp_staging_sites', $staging_sites );
    359         }
     363
     364            return true;
     365        }
     366
     367        return false;
    360368    }
    361369}
  • instawp-connect/tags/0.1.0.60/instawp-connect.php

    r3169210 r3170666  
    88 * Plugin Name:       InstaWP Connect
    99 * Description:       1-click WordPress plugin for Staging, Migrations, Management, Sync and Companion plugin for InstaWP.
    10  * Version:           0.1.0.59
     10 * Version:           0.1.0.60
    1111 * Author:            InstaWP Team
    1212 * Author URI:        https://instawp.com/
     
    2828global $wpdb;
    2929
    30 defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.59' );
     30defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.60' );
    3131defined( 'INSTAWP_API_DOMAIN_PROD' ) || define( 'INSTAWP_API_DOMAIN_PROD', 'https://app.instawp.io' );
    3232
  • instawp-connect/tags/0.1.0.60/languages/instawp-connect.pot

    r3169200 r3170666  
    66"Content-Type: text/plain; charset=UTF-8\n"
    77"Content-Transfer-Encoding: 8bit\n"
    8 "POT-Creation-Date: 2024-10-08 13:03+0000\n"
     8"POT-Creation-Date: 2024-10-17 05:33+0000\n"
    99"X-Poedit-Basepath: ..\n"
    1010"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    6666msgstr ""
    6767
    68 #: includes/apis/class-instawp-rest-api-migration.php:97
     68#: includes/apis/class-instawp-rest-api-migration.php:98
    6969msgid "Migration could not initiate because the allow_url_fopen is set to false."
    7070msgstr ""
    7171
    72 #: includes/apis/class-instawp-rest-api-migration.php:115
     72#: includes/apis/class-instawp-rest-api-migration.php:116
    7373msgid "Could not create destination file."
    7474msgstr ""
    7575
    76 #: includes/apis/class-instawp-rest-api-migration.php:192
     76#: includes/apis/class-instawp-rest-api-migration.php:193
    7777msgid "Installation failed"
    7878msgstr ""
    7979
    80 #: includes/apis/class-instawp-rest-api-migration.php:213
     80#: includes/apis/class-instawp-rest-api-migration.php:214
    8181msgid "sso_url_class_not_found: This class NewfoldLabs\WP\Module\Migration\Services\MigrationSSO not found."
    8282msgstr ""
    8383
    84 #: includes/apis/class-instawp-rest-api-migration.php:208
     84#: includes/apis/class-instawp-rest-api-migration.php:209
    8585msgid "Error getting SSO login url."
    8686msgstr ""
    8787
    88 #: includes/apis/class-instawp-rest-api-migration.php:233
     88#: includes/apis/class-instawp-rest-api-migration.php:234
    8989msgid "Post migration cleanup completed."
    9090msgstr ""
    9191
    92 #: includes/apis/class-instawp-rest-api.php:132
     92#: includes/apis/class-instawp-rest-api.php:138
    9393msgid "This request is not authorized."
    9494msgstr ""
    9595
    96 #: includes/apis/class-instawp-rest-api.php:139
     96#: includes/apis/class-instawp-rest-api.php:145
    9797msgid "Api key is required."
    9898msgstr ""
    9999
    100 #: includes/apis/class-instawp-rest-api.php:153
     100#: includes/apis/class-instawp-rest-api.php:159
    101101msgid "No user found with the provided username."
    102102msgstr ""
    103103
    104 #: includes/apis/class-instawp-rest-api.php:161
     104#: includes/apis/class-instawp-rest-api.php:167
    105105msgid "This user does not have capability to config the website."
    106106msgstr ""
    107107
    108 #: includes/apis/class-instawp-rest-api.php:180
     108#: includes/apis/class-instawp-rest-api.php:186
    109109msgid "Application password does not match."
    110110msgstr ""
    111111
    112 #: includes/apis/class-instawp-rest-api.php:202
     112#: includes/apis/class-instawp-rest-api.php:208
    113113msgid "This website is already connected!"
    114114msgstr ""
    115115
    116 #: includes/apis/class-instawp-rest-api.php:216
     116#: includes/apis/class-instawp-rest-api.php:222
    117117msgid "Invalid API domain parameter passed."
    118118msgstr ""
    119119
    120 #: includes/apis/class-instawp-rest-api.php:224
     120#: includes/apis/class-instawp-rest-api.php:230
    121121msgid "API Key is not valid."
    122122msgstr ""
    123123
    124 #: includes/apis/class-instawp-rest-api.php:231
     124#: includes/apis/class-instawp-rest-api.php:237
    125125msgid "Something went wrong during connecting to InstaWP."
    126126msgstr ""
    127127
    128 #: includes/apis/class-instawp-rest-api.php:238
     128#: includes/apis/class-instawp-rest-api.php:244
    129129msgid "Connected."
    130130msgstr ""
    131131
    132 #: includes/apis/class-instawp-rest-api.php:259
     132#: includes/apis/class-instawp-rest-api.php:265
    133133msgid "Invalid connect ID"
    134134msgstr ""
    135135
    136 #: includes/apis/class-instawp-rest-api.php:269
     136#: includes/apis/class-instawp-rest-api.php:275
    137137msgid "Site has been marked as staging"
    138138msgstr ""
    139139
    140 #: includes/apis/class-instawp-rest-api.php:291
     140#: includes/apis/class-instawp-rest-api.php:296
     141msgid "Staging Site List Refreshed."
     142msgstr ""
     143
     144#: includes/apis/class-instawp-rest-api.php:318
    141145msgid "Plugin reset Successful."
    142146msgstr ""
    143147
    144 #: includes/apis/class-instawp-rest-api.php:359, includes/functions.php:715
     148#: includes/apis/class-instawp-rest-api.php:386, includes/functions.php:723
    145149msgid "No login information found."
    146150msgstr ""
    147151
    148 #: includes/apis/class-instawp-rest-api.php:419
     152#: includes/apis/class-instawp-rest-api.php:446
    149153msgid "All Temporary logins are removed."
    150154msgstr ""
    151155
    152 #: includes/apis/class-instawp-rest-api.php:480
     156#: includes/apis/class-instawp-rest-api.php:507
    153157msgid "No items found"
    154158msgstr ""
    155159
    156 #: includes/apis/class-instawp-rest-api.php:489
     160#: includes/apis/class-instawp-rest-api.php:516
    157161msgid "Update task create successfully"
    158162msgstr ""
    159163
    160 #: includes/apis/class-instawp-rest-api.php:550
     164#: includes/apis/class-instawp-rest-api.php:577
    161165msgid "Empty bearer token."
    162166msgstr ""
    163167
    164 #: includes/apis/class-instawp-rest-api.php:563
     168#: includes/apis/class-instawp-rest-api.php:590
    165169msgid "Empty api key."
    166170msgstr ""
    167171
    168 #: includes/apis/class-instawp-rest-api.php:578
     172#: includes/apis/class-instawp-rest-api.php:605
    169173msgid "Invalid bearer token."
    170174msgstr ""
    171175
    172 #: includes/apis/class-instawp-rest-api.php:715
     176#: includes/apis/class-instawp-rest-api.php:742
    173177msgid "Route not allowed"
    174178msgstr ""
    175179
    176 #: includes/apis/class-instawp-rest-api.php:818, includes/class-instawp-setting.php:537, includes/class-instawp-setting.php:543
     180#: includes/apis/class-instawp-rest-api.php:845, includes/class-instawp-setting.php:537, includes/class-instawp-setting.php:543
    177181msgid "Heartbeat"
    178182msgstr ""
    179183
    180 #: includes/apis/class-instawp-rest-api.php:819, includes/class-instawp-hooks.php:238, includes/class-instawp-setting.php:231, includes/class-instawp-setting.php:575
     184#: includes/apis/class-instawp-rest-api.php:846, includes/class-instawp-hooks.php:238, includes/class-instawp-setting.php:231, includes/class-instawp-setting.php:575
    181185msgid "Database Manager"
    182186msgstr ""
    183187
    184 #: includes/apis/class-instawp-rest-api.php:820, includes/class-instawp-setting.php:583
     188#: includes/apis/class-instawp-rest-api.php:847, includes/class-instawp-setting.php:583
    185189msgid "Install Plugin / Themes"
    186190msgstr ""
    187191
    188 #: includes/apis/class-instawp-rest-api.php:821, includes/class-instawp-setting.php:591
     192#: includes/apis/class-instawp-rest-api.php:848, includes/class-instawp-setting.php:591
    189193msgid "Update Core / Plugin / Themes"
    190194msgstr ""
    191195
    192 #: includes/apis/class-instawp-rest-api.php:822, includes/class-instawp-setting.php:599
     196#: includes/apis/class-instawp-rest-api.php:849, includes/class-instawp-setting.php:599
    193197msgid "Activate / Deactivate"
    194198msgstr ""
    195199
    196 #: includes/apis/class-instawp-rest-api.php:823, includes/class-instawp-setting.php:607
     200#: includes/apis/class-instawp-rest-api.php:850, includes/class-instawp-setting.php:607
    197201msgid "Config Management"
    198202msgstr ""
    199203
    200 #: includes/apis/class-instawp-rest-api.php:824, includes/class-instawp-setting.php:615
     204#: includes/apis/class-instawp-rest-api.php:851, includes/class-instawp-setting.php:615
    201205msgid "Site Inventory"
    202206msgstr ""
    203207
    204 #: includes/apis/class-instawp-rest-api.php:825, includes/class-instawp-setting.php:232, includes/class-instawp-setting.php:623
     208#: includes/apis/class-instawp-rest-api.php:852, includes/class-instawp-setting.php:232, includes/class-instawp-setting.php:623
    205209msgid "Debug Log"
    206210msgstr ""
     
    658662msgstr ""
    659663
    660 #: includes/class-instawp-tools.php:576
     664#: includes/class-instawp-tools.php:584
    661665msgid "API key not found"
    662666msgstr ""
    663667
    664 #: includes/class-instawp-tools.php:797
     668#: includes/class-instawp-tools.php:809
    665669msgid "Root directory for this WordPress installation could not find."
    666670msgstr ""
    667671
    668 #: includes/class-instawp-tools.php:818
     672#: includes/class-instawp-tools.php:830
    669673msgid "Tracking database could not found."
    670674msgstr ""
    671675
    672 #: includes/class-instawp-tools.php:828
     676#: includes/class-instawp-tools.php:840
    673677msgid "API Signature and others data could not set properly"
    674678msgstr ""
    675679
    676 #: includes/class-instawp-tools.php:854
     680#: includes/class-instawp-tools.php:866
    677681msgid "InstaWP could not access or read required files from your WordPress directory due to file permission issue."
    678682msgstr ""
    679683
    680 #: includes/class-instawp-tools.php:856
     684#: includes/class-instawp-tools.php:868
    681685msgid "Learn more."
    682686msgstr ""
    683687
    684 #: includes/class-instawp-tools.php:1025
     688#: includes/class-instawp-tools.php:1037
    685689msgid "Launch %s"
    686690msgstr ""
    687691
    688 #: includes/class-instawp-tools.php:1113
     692#: includes/class-instawp-tools.php:1125
    689693msgid "Please create staging sites first."
    690694msgstr ""
    691695
    692 #: includes/class-instawp-tools.php:1114
     696#: includes/class-instawp-tools.php:1126
    693697msgid "Skip"
    694698msgstr ""
    695699
    696 #: includes/class-instawp-tools.php:1115
     700#: includes/class-instawp-tools.php:1127
    697701msgid "Do you really want to disconnect the plugin? It will completely remove the existing staging sites from the plugin."
    698702msgstr ""
    699703
    700 #: includes/class-instawp-tools.php:1116
     704#: includes/class-instawp-tools.php:1128
    701705msgid "Do you still want to disconnect the plugin?"
    702706msgstr ""
    703707
    704 #: includes/class-instawp-tools.php:1164
     708#: includes/class-instawp-tools.php:1176
    705709msgid "Zip archive is not opening."
    706710msgstr ""
    707711
    708 #: includes/class-instawp-tools.php:1217
     712#: includes/class-instawp-tools.php:1229
    709713msgid "No compression method find."
    710714msgstr ""
    711715
    712 #: includes/class-instawp-tools.php:1261
     716#: includes/class-instawp-tools.php:1273
    713717msgid "Site ID not found in site create response."
    714718msgstr ""
    715719
    716 #: includes/class-instawp-tools.php:1300
     720#: includes/class-instawp-tools.php:1312
    717721msgid "SFTP login failed."
    718722msgstr ""
    719723
    720 #: includes/class-instawp-tools.php:1311
     724#: includes/class-instawp-tools.php:1323
    721725msgid "SFTP upload failed for files."
    722726msgstr ""
    723727
    724 #: includes/class-instawp-tools.php:1319
     728#: includes/class-instawp-tools.php:1331
    725729msgid "SFTP upload failed for database."
    726730msgstr ""
     
    730734msgstr ""
    731735
    732 #: includes/functions.php:711
     736#: includes/functions.php:719
    733737msgid "No login found with given username and default username, You are going to login with first admin user."
    734738msgstr ""
    735739
    736 #: includes/functions.php:707
     740#: includes/functions.php:715
    737741msgid "Login information for the given username didn't found, You are going to login with default login username."
    738742msgstr ""
    739743
    740 #: includes/functions.php:704
     744#: includes/functions.php:712
    741745msgid "Login information for the given username"
    742746msgstr ""
     
    868872msgstr ""
    869873
    870 #: includes/sync/class-instawp-sync-post.php:76, includes/sync/class-instawp-sync-post.php:192, includes/sync/class-instawp-sync-term.php:54
     874#: includes/sync/class-instawp-sync-post.php:87, includes/sync/class-instawp-sync-post.php:235, includes/sync/class-instawp-sync-term.php:54
    871875msgid "%s modified"
    872876msgstr ""
    873877
    874 #: includes/sync/class-instawp-sync-post.php:73
     878#: includes/sync/class-instawp-sync-post.php:84
    875879msgid "%s restored"
    876880msgstr ""
    877881
    878 #: includes/sync/class-instawp-sync-post.php:70
     882#: includes/sync/class-instawp-sync-post.php:81
    879883msgid "%s trashed"
    880884msgstr ""
    881885
    882 #: includes/sync/class-instawp-sync-post.php:65, includes/sync/class-instawp-sync-term.php:32
     886#: includes/sync/class-instawp-sync-post.php:76, includes/sync/class-instawp-sync-term.php:32
    883887msgid "%s created"
    884888msgstr ""
    885889
    886 #: includes/sync/class-instawp-sync-post.php:104, includes/sync/class-instawp-sync-term.php:76
     890#: includes/sync/class-instawp-sync-post.php:147, includes/sync/class-instawp-sync-term.php:76
    887891msgid "%s deleted"
    888892msgstr ""
    889893
    890 #: includes/sync/class-instawp-sync-post.php:121
     894#: includes/sync/class-instawp-sync-post.php:164
    891895msgid "Media created"
    892896msgstr ""
    893897
    894 #: includes/sync/class-instawp-sync-post.php:138, includes/sync/class-instawp-sync-post.php:175
     898#: includes/sync/class-instawp-sync-post.php:181, includes/sync/class-instawp-sync-post.php:218
    895899msgid "Media updated"
    896900msgstr ""
    897901
    898 #: includes/sync/class-instawp-sync-post.php:155
     902#: includes/sync/class-instawp-sync-post.php:198
    899903msgid "Media deleted"
    900904msgstr ""
     
    920924msgstr ""
    921925
    922 #: includes/sync/class-instawp-sync-wc.php:47
     926#: includes/sync/class-instawp-sync-wc.php:65
    923927msgid "Order created"
    924928msgstr ""
    925929
    926 #: includes/sync/class-instawp-sync-wc.php:104
     930#: includes/sync/class-instawp-sync-wc.php:159
    927931msgid "Order updated"
    928932msgstr ""
    929933
    930 #: includes/sync/class-instawp-sync-wc.php:118, includes/sync/class-instawp-sync-wc.php:132
     934#: includes/sync/class-instawp-sync-wc.php:173, includes/sync/class-instawp-sync-wc.php:187
    931935msgid "Order trashed"
    932936msgstr ""
    933937
    934 #: includes/sync/class-instawp-sync-wc.php:147
     938#: includes/sync/class-instawp-sync-wc.php:202
    935939msgid "Woocommerce attribute added"
    936940msgstr ""
    937941
    938 #: includes/sync/class-instawp-sync-wc.php:165
     942#: includes/sync/class-instawp-sync-wc.php:220
    939943msgid "Woocommerce attribute updated"
    940944msgstr ""
    941945
    942 #: includes/sync/class-instawp-sync-wc.php:181
     946#: includes/sync/class-instawp-sync-wc.php:236
    943947msgid "Woocommerce attribute deleted"
    944948msgstr ""
    945949
    946 #: includes/sync/class-instawp-sync-wc.php:440, includes/sync/class-instawp-sync-wc.php:445
     950#: includes/sync/class-instawp-sync-wc.php:531, includes/sync/class-instawp-sync-wc.php:536
    947951msgid "Order %s"
    948952msgstr ""
  • instawp-connect/tags/0.1.0.60/readme.txt

    r3169210 r3170666  
    55Tested up to: 6.6
    66Requires PHP: 7.0
    7 Stable tag: 0.1.0.59
     7Stable tag: 0.1.0.60
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    9999== Changelog ==
    100100
     101= 0.1.0.60 - 17 October 2024 =
     102- FIX: Added API Endpoint to refresh all staging sites list.
     103
    101104= 0.1.0.59 - 15 October 2024 =
    102105- FIX: Fixed plugin version.
  • instawp-connect/trunk/includes/apis/class-instawp-rest-api.php

    r3149254 r3170666  
    3838            'permission_callback' => '__return_true',
    3939        ) );
     40
     41        register_rest_route( $this->namespace . '/' . $this->version_2, '/refresh-staging-sites-list', array(
     42            'methods'             => 'POST',
     43            'callback'            => array( $this, 'refresh_staging_sites_list' ),
     44            'permission_callback' => '__return_true',
     45        ) );
    4046
    4147        register_rest_route( $this->namespace . '/' . $this->version_2, '/disconnect', array(
     
    241247
    242248    /**
    243      * Handle events receiver api
     249     * Mark website as staging.
    244250     *
    245251     * @param WP_REST_Request $req
     
    270276        ) );
    271277    }
     278
     279    /**
     280     * Refresh staging site list.
     281     *
     282     * @param WP_REST_Request $req
     283     *
     284     * @return WP_Error|WP_HTTP_Response|WP_REST_Response
     285     */
     286    public function refresh_staging_sites_list( WP_REST_Request $req ) {
     287        $response = $this->validate_api_request( $req );
     288        if ( is_wp_error( $response ) ) {
     289            return $this->throw_error( $response );
     290        }
     291
     292        instawp_set_staging_sites_list();
     293
     294        return $this->send_response( array(
     295            'status'  => true,
     296            'message' => __( 'Staging Site List Refreshed.', 'instawp-connect' ),
     297        ) );
     298    }
    272299
    273300    /**
  • instawp-connect/trunk/includes/functions.php

    r3162062 r3170666  
    340340if ( ! function_exists( 'instawp_set_staging_sites_list' ) ) {
    341341    function instawp_set_staging_sites_list() {
    342 
    343         $api_response = Curl::do_curl( 'connects/' . instawp_get_connect_id() . '/staging-sites', array(), array(), 'GET' );
     342        $connect_id = instawp_get_connect_id();
     343        if ( empty( $connect_id ) ) {
     344            return false;
     345        }
     346
     347        $api_response = Curl::do_curl( 'connects/' . $connect_id . '/staging-sites', array(), array(), 'GET' );
    344348
    345349        if ( $api_response['success'] ) {
     
    357361
    358362            Option::update_option( 'instawp_staging_sites', $staging_sites );
    359         }
     363
     364            return true;
     365        }
     366
     367        return false;
    360368    }
    361369}
  • instawp-connect/trunk/instawp-connect.php

    r3169210 r3170666  
    88 * Plugin Name:       InstaWP Connect
    99 * Description:       1-click WordPress plugin for Staging, Migrations, Management, Sync and Companion plugin for InstaWP.
    10  * Version:           0.1.0.59
     10 * Version:           0.1.0.60
    1111 * Author:            InstaWP Team
    1212 * Author URI:        https://instawp.com/
     
    2828global $wpdb;
    2929
    30 defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.59' );
     30defined( 'INSTAWP_PLUGIN_VERSION' ) || define( 'INSTAWP_PLUGIN_VERSION', '0.1.0.60' );
    3131defined( 'INSTAWP_API_DOMAIN_PROD' ) || define( 'INSTAWP_API_DOMAIN_PROD', 'https://app.instawp.io' );
    3232
  • instawp-connect/trunk/languages/instawp-connect.pot

    r3169200 r3170666  
    66"Content-Type: text/plain; charset=UTF-8\n"
    77"Content-Transfer-Encoding: 8bit\n"
    8 "POT-Creation-Date: 2024-10-08 13:03+0000\n"
     8"POT-Creation-Date: 2024-10-17 05:33+0000\n"
    99"X-Poedit-Basepath: ..\n"
    1010"X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;_nx_noop:1,2,3c;_x:1,2c;esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
     
    6666msgstr ""
    6767
    68 #: includes/apis/class-instawp-rest-api-migration.php:97
     68#: includes/apis/class-instawp-rest-api-migration.php:98
    6969msgid "Migration could not initiate because the allow_url_fopen is set to false."
    7070msgstr ""
    7171
    72 #: includes/apis/class-instawp-rest-api-migration.php:115
     72#: includes/apis/class-instawp-rest-api-migration.php:116
    7373msgid "Could not create destination file."
    7474msgstr ""
    7575
    76 #: includes/apis/class-instawp-rest-api-migration.php:192
     76#: includes/apis/class-instawp-rest-api-migration.php:193
    7777msgid "Installation failed"
    7878msgstr ""
    7979
    80 #: includes/apis/class-instawp-rest-api-migration.php:213
     80#: includes/apis/class-instawp-rest-api-migration.php:214
    8181msgid "sso_url_class_not_found: This class NewfoldLabs\WP\Module\Migration\Services\MigrationSSO not found."
    8282msgstr ""
    8383
    84 #: includes/apis/class-instawp-rest-api-migration.php:208
     84#: includes/apis/class-instawp-rest-api-migration.php:209
    8585msgid "Error getting SSO login url."
    8686msgstr ""
    8787
    88 #: includes/apis/class-instawp-rest-api-migration.php:233
     88#: includes/apis/class-instawp-rest-api-migration.php:234
    8989msgid "Post migration cleanup completed."
    9090msgstr ""
    9191
    92 #: includes/apis/class-instawp-rest-api.php:132
     92#: includes/apis/class-instawp-rest-api.php:138
    9393msgid "This request is not authorized."
    9494msgstr ""
    9595
    96 #: includes/apis/class-instawp-rest-api.php:139
     96#: includes/apis/class-instawp-rest-api.php:145
    9797msgid "Api key is required."
    9898msgstr ""
    9999
    100 #: includes/apis/class-instawp-rest-api.php:153
     100#: includes/apis/class-instawp-rest-api.php:159
    101101msgid "No user found with the provided username."
    102102msgstr ""
    103103
    104 #: includes/apis/class-instawp-rest-api.php:161
     104#: includes/apis/class-instawp-rest-api.php:167
    105105msgid "This user does not have capability to config the website."
    106106msgstr ""
    107107
    108 #: includes/apis/class-instawp-rest-api.php:180
     108#: includes/apis/class-instawp-rest-api.php:186
    109109msgid "Application password does not match."
    110110msgstr ""
    111111
    112 #: includes/apis/class-instawp-rest-api.php:202
     112#: includes/apis/class-instawp-rest-api.php:208
    113113msgid "This website is already connected!"
    114114msgstr ""
    115115
    116 #: includes/apis/class-instawp-rest-api.php:216
     116#: includes/apis/class-instawp-rest-api.php:222
    117117msgid "Invalid API domain parameter passed."
    118118msgstr ""
    119119
    120 #: includes/apis/class-instawp-rest-api.php:224
     120#: includes/apis/class-instawp-rest-api.php:230
    121121msgid "API Key is not valid."
    122122msgstr ""
    123123
    124 #: includes/apis/class-instawp-rest-api.php:231
     124#: includes/apis/class-instawp-rest-api.php:237
    125125msgid "Something went wrong during connecting to InstaWP."
    126126msgstr ""
    127127
    128 #: includes/apis/class-instawp-rest-api.php:238
     128#: includes/apis/class-instawp-rest-api.php:244
    129129msgid "Connected."
    130130msgstr ""
    131131
    132 #: includes/apis/class-instawp-rest-api.php:259
     132#: includes/apis/class-instawp-rest-api.php:265
    133133msgid "Invalid connect ID"
    134134msgstr ""
    135135
    136 #: includes/apis/class-instawp-rest-api.php:269
     136#: includes/apis/class-instawp-rest-api.php:275
    137137msgid "Site has been marked as staging"
    138138msgstr ""
    139139
    140 #: includes/apis/class-instawp-rest-api.php:291
     140#: includes/apis/class-instawp-rest-api.php:296
     141msgid "Staging Site List Refreshed."
     142msgstr ""
     143
     144#: includes/apis/class-instawp-rest-api.php:318
    141145msgid "Plugin reset Successful."
    142146msgstr ""
    143147
    144 #: includes/apis/class-instawp-rest-api.php:359, includes/functions.php:715
     148#: includes/apis/class-instawp-rest-api.php:386, includes/functions.php:723
    145149msgid "No login information found."
    146150msgstr ""
    147151
    148 #: includes/apis/class-instawp-rest-api.php:419
     152#: includes/apis/class-instawp-rest-api.php:446
    149153msgid "All Temporary logins are removed."
    150154msgstr ""
    151155
    152 #: includes/apis/class-instawp-rest-api.php:480
     156#: includes/apis/class-instawp-rest-api.php:507
    153157msgid "No items found"
    154158msgstr ""
    155159
    156 #: includes/apis/class-instawp-rest-api.php:489
     160#: includes/apis/class-instawp-rest-api.php:516
    157161msgid "Update task create successfully"
    158162msgstr ""
    159163
    160 #: includes/apis/class-instawp-rest-api.php:550
     164#: includes/apis/class-instawp-rest-api.php:577
    161165msgid "Empty bearer token."
    162166msgstr ""
    163167
    164 #: includes/apis/class-instawp-rest-api.php:563
     168#: includes/apis/class-instawp-rest-api.php:590
    165169msgid "Empty api key."
    166170msgstr ""
    167171
    168 #: includes/apis/class-instawp-rest-api.php:578
     172#: includes/apis/class-instawp-rest-api.php:605
    169173msgid "Invalid bearer token."
    170174msgstr ""
    171175
    172 #: includes/apis/class-instawp-rest-api.php:715
     176#: includes/apis/class-instawp-rest-api.php:742
    173177msgid "Route not allowed"
    174178msgstr ""
    175179
    176 #: includes/apis/class-instawp-rest-api.php:818, includes/class-instawp-setting.php:537, includes/class-instawp-setting.php:543
     180#: includes/apis/class-instawp-rest-api.php:845, includes/class-instawp-setting.php:537, includes/class-instawp-setting.php:543
    177181msgid "Heartbeat"
    178182msgstr ""
    179183
    180 #: includes/apis/class-instawp-rest-api.php:819, includes/class-instawp-hooks.php:238, includes/class-instawp-setting.php:231, includes/class-instawp-setting.php:575
     184#: includes/apis/class-instawp-rest-api.php:846, includes/class-instawp-hooks.php:238, includes/class-instawp-setting.php:231, includes/class-instawp-setting.php:575
    181185msgid "Database Manager"
    182186msgstr ""
    183187
    184 #: includes/apis/class-instawp-rest-api.php:820, includes/class-instawp-setting.php:583
     188#: includes/apis/class-instawp-rest-api.php:847, includes/class-instawp-setting.php:583
    185189msgid "Install Plugin / Themes"
    186190msgstr ""
    187191
    188 #: includes/apis/class-instawp-rest-api.php:821, includes/class-instawp-setting.php:591
     192#: includes/apis/class-instawp-rest-api.php:848, includes/class-instawp-setting.php:591
    189193msgid "Update Core / Plugin / Themes"
    190194msgstr ""
    191195
    192 #: includes/apis/class-instawp-rest-api.php:822, includes/class-instawp-setting.php:599
     196#: includes/apis/class-instawp-rest-api.php:849, includes/class-instawp-setting.php:599
    193197msgid "Activate / Deactivate"
    194198msgstr ""
    195199
    196 #: includes/apis/class-instawp-rest-api.php:823, includes/class-instawp-setting.php:607
     200#: includes/apis/class-instawp-rest-api.php:850, includes/class-instawp-setting.php:607
    197201msgid "Config Management"
    198202msgstr ""
    199203
    200 #: includes/apis/class-instawp-rest-api.php:824, includes/class-instawp-setting.php:615
     204#: includes/apis/class-instawp-rest-api.php:851, includes/class-instawp-setting.php:615
    201205msgid "Site Inventory"
    202206msgstr ""
    203207
    204 #: includes/apis/class-instawp-rest-api.php:825, includes/class-instawp-setting.php:232, includes/class-instawp-setting.php:623
     208#: includes/apis/class-instawp-rest-api.php:852, includes/class-instawp-setting.php:232, includes/class-instawp-setting.php:623
    205209msgid "Debug Log"
    206210msgstr ""
     
    658662msgstr ""
    659663
    660 #: includes/class-instawp-tools.php:576
     664#: includes/class-instawp-tools.php:584
    661665msgid "API key not found"
    662666msgstr ""
    663667
    664 #: includes/class-instawp-tools.php:797
     668#: includes/class-instawp-tools.php:809
    665669msgid "Root directory for this WordPress installation could not find."
    666670msgstr ""
    667671
    668 #: includes/class-instawp-tools.php:818
     672#: includes/class-instawp-tools.php:830
    669673msgid "Tracking database could not found."
    670674msgstr ""
    671675
    672 #: includes/class-instawp-tools.php:828
     676#: includes/class-instawp-tools.php:840
    673677msgid "API Signature and others data could not set properly"
    674678msgstr ""
    675679
    676 #: includes/class-instawp-tools.php:854
     680#: includes/class-instawp-tools.php:866
    677681msgid "InstaWP could not access or read required files from your WordPress directory due to file permission issue."
    678682msgstr ""
    679683
    680 #: includes/class-instawp-tools.php:856
     684#: includes/class-instawp-tools.php:868
    681685msgid "Learn more."
    682686msgstr ""
    683687
    684 #: includes/class-instawp-tools.php:1025
     688#: includes/class-instawp-tools.php:1037
    685689msgid "Launch %s"
    686690msgstr ""
    687691
    688 #: includes/class-instawp-tools.php:1113
     692#: includes/class-instawp-tools.php:1125
    689693msgid "Please create staging sites first."
    690694msgstr ""
    691695
    692 #: includes/class-instawp-tools.php:1114
     696#: includes/class-instawp-tools.php:1126
    693697msgid "Skip"
    694698msgstr ""
    695699
    696 #: includes/class-instawp-tools.php:1115
     700#: includes/class-instawp-tools.php:1127
    697701msgid "Do you really want to disconnect the plugin? It will completely remove the existing staging sites from the plugin."
    698702msgstr ""
    699703
    700 #: includes/class-instawp-tools.php:1116
     704#: includes/class-instawp-tools.php:1128
    701705msgid "Do you still want to disconnect the plugin?"
    702706msgstr ""
    703707
    704 #: includes/class-instawp-tools.php:1164
     708#: includes/class-instawp-tools.php:1176
    705709msgid "Zip archive is not opening."
    706710msgstr ""
    707711
    708 #: includes/class-instawp-tools.php:1217
     712#: includes/class-instawp-tools.php:1229
    709713msgid "No compression method find."
    710714msgstr ""
    711715
    712 #: includes/class-instawp-tools.php:1261
     716#: includes/class-instawp-tools.php:1273
    713717msgid "Site ID not found in site create response."
    714718msgstr ""
    715719
    716 #: includes/class-instawp-tools.php:1300
     720#: includes/class-instawp-tools.php:1312
    717721msgid "SFTP login failed."
    718722msgstr ""
    719723
    720 #: includes/class-instawp-tools.php:1311
     724#: includes/class-instawp-tools.php:1323
    721725msgid "SFTP upload failed for files."
    722726msgstr ""
    723727
    724 #: includes/class-instawp-tools.php:1319
     728#: includes/class-instawp-tools.php:1331
    725729msgid "SFTP upload failed for database."
    726730msgstr ""
     
    730734msgstr ""
    731735
    732 #: includes/functions.php:711
     736#: includes/functions.php:719
    733737msgid "No login found with given username and default username, You are going to login with first admin user."
    734738msgstr ""
    735739
    736 #: includes/functions.php:707
     740#: includes/functions.php:715
    737741msgid "Login information for the given username didn't found, You are going to login with default login username."
    738742msgstr ""
    739743
    740 #: includes/functions.php:704
     744#: includes/functions.php:712
    741745msgid "Login information for the given username"
    742746msgstr ""
     
    868872msgstr ""
    869873
    870 #: includes/sync/class-instawp-sync-post.php:76, includes/sync/class-instawp-sync-post.php:192, includes/sync/class-instawp-sync-term.php:54
     874#: includes/sync/class-instawp-sync-post.php:87, includes/sync/class-instawp-sync-post.php:235, includes/sync/class-instawp-sync-term.php:54
    871875msgid "%s modified"
    872876msgstr ""
    873877
    874 #: includes/sync/class-instawp-sync-post.php:73
     878#: includes/sync/class-instawp-sync-post.php:84
    875879msgid "%s restored"
    876880msgstr ""
    877881
    878 #: includes/sync/class-instawp-sync-post.php:70
     882#: includes/sync/class-instawp-sync-post.php:81
    879883msgid "%s trashed"
    880884msgstr ""
    881885
    882 #: includes/sync/class-instawp-sync-post.php:65, includes/sync/class-instawp-sync-term.php:32
     886#: includes/sync/class-instawp-sync-post.php:76, includes/sync/class-instawp-sync-term.php:32
    883887msgid "%s created"
    884888msgstr ""
    885889
    886 #: includes/sync/class-instawp-sync-post.php:104, includes/sync/class-instawp-sync-term.php:76
     890#: includes/sync/class-instawp-sync-post.php:147, includes/sync/class-instawp-sync-term.php:76
    887891msgid "%s deleted"
    888892msgstr ""
    889893
    890 #: includes/sync/class-instawp-sync-post.php:121
     894#: includes/sync/class-instawp-sync-post.php:164
    891895msgid "Media created"
    892896msgstr ""
    893897
    894 #: includes/sync/class-instawp-sync-post.php:138, includes/sync/class-instawp-sync-post.php:175
     898#: includes/sync/class-instawp-sync-post.php:181, includes/sync/class-instawp-sync-post.php:218
    895899msgid "Media updated"
    896900msgstr ""
    897901
    898 #: includes/sync/class-instawp-sync-post.php:155
     902#: includes/sync/class-instawp-sync-post.php:198
    899903msgid "Media deleted"
    900904msgstr ""
     
    920924msgstr ""
    921925
    922 #: includes/sync/class-instawp-sync-wc.php:47
     926#: includes/sync/class-instawp-sync-wc.php:65
    923927msgid "Order created"
    924928msgstr ""
    925929
    926 #: includes/sync/class-instawp-sync-wc.php:104
     930#: includes/sync/class-instawp-sync-wc.php:159
    927931msgid "Order updated"
    928932msgstr ""
    929933
    930 #: includes/sync/class-instawp-sync-wc.php:118, includes/sync/class-instawp-sync-wc.php:132
     934#: includes/sync/class-instawp-sync-wc.php:173, includes/sync/class-instawp-sync-wc.php:187
    931935msgid "Order trashed"
    932936msgstr ""
    933937
    934 #: includes/sync/class-instawp-sync-wc.php:147
     938#: includes/sync/class-instawp-sync-wc.php:202
    935939msgid "Woocommerce attribute added"
    936940msgstr ""
    937941
    938 #: includes/sync/class-instawp-sync-wc.php:165
     942#: includes/sync/class-instawp-sync-wc.php:220
    939943msgid "Woocommerce attribute updated"
    940944msgstr ""
    941945
    942 #: includes/sync/class-instawp-sync-wc.php:181
     946#: includes/sync/class-instawp-sync-wc.php:236
    943947msgid "Woocommerce attribute deleted"
    944948msgstr ""
    945949
    946 #: includes/sync/class-instawp-sync-wc.php:440, includes/sync/class-instawp-sync-wc.php:445
     950#: includes/sync/class-instawp-sync-wc.php:531, includes/sync/class-instawp-sync-wc.php:536
    947951msgid "Order %s"
    948952msgstr ""
  • instawp-connect/trunk/readme.txt

    r3169210 r3170666  
    55Tested up to: 6.6
    66Requires PHP: 7.0
    7 Stable tag: 0.1.0.59
     7Stable tag: 0.1.0.60
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    9999== Changelog ==
    100100
     101= 0.1.0.60 - 17 October 2024 =
     102- FIX: Added API Endpoint to refresh all staging sites list.
     103
    101104= 0.1.0.59 - 15 October 2024 =
    102105- FIX: Fixed plugin version.
Note: See TracChangeset for help on using the changeset viewer.