Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter tipytv

    (@tipytv)

    I made it public now, sorry.

    Thread Starter tipytv

    (@tipytv)

    Tried to fit a datatables with the same source URL, also get $data with two keys, source (containing the URL), and the data (containing all data).

    Thread Starter tipytv

    (@tipytv)

    I’ll see may be tomorrow if i have time to reproduce it on a public instance.

    I’ve made some tests, seems like this issue occurs when populating data for a datatables.

    For a line chart, when i edit it, $data is formatted like this :

    Array
    (
        [source] => https://docs.google.com/spreadsheets/d/e/2PACX-1vQSolcWM_lQ0oHbNp_y-7PvG8WZtB2p3bh62lhXKqN9SYO9nlD3D9LRHUDF1ZPiKDbjVn_OX_yeCnkt/pub?gid=0&single=true&output=csv
        [data] => Array
            (
                [0] => Array
                    (
                        [0] => 03/08/2019
                        [1] => 3000
                    )
    
                [1] => Array
                    (
                        [0] => 04/08/2019
                        [1] => 3100
                    )
    ...
    

    So here we must get data with $data['data'].
    If i make a datatables and try to edit it, this time $data is formatted as below :

    Array
    (
        [0] => Array
            (
                [0] => 2004/05/01
                [1] => 165
                [2] => 938
                [3] => 522
                [4] => 998
                [5] => 450
            )
    
        [1] => Array
            (
                [0] => 2005/06/01
                [1] => 135
                [2] => 1120
                [3] => 599
                [4] => 1268
                [5] => 288
            )
    ...
    

    For each chart, when i edit it, this method _renderEditorTable is always called on Layout.php with this foreach :

    foreach ($data as $row) {
                echo '<tr>';
                echo '<th>' . __('Value', 'visualizer') . '</th>';
                $index = 0;
                foreach (array_values($row) as $value) {
                    if ($editable_data) {
                        echo '<td><input type="text" name="data' . $index++ . '[]" value="' . esc_attr($value) . '"></td>';
                    } else {
                        echo '<td>' . $value . '</td>';
                    }
                }
    
                echo '</tr>';
            }
    

    But $data will not be the same, in the case of a line chart, array_values() trigger an error because on the first iteration, $row is the value of $data['source'].

    I hope i’m clear enough, is this normal thah _renderEditorTabl is triggered when editing a line chart ?

    Thread Starter tipytv

    (@tipytv)

    Updated the URL for my google spreadsheet :
    https://docs.google.com/spreadsheets/d/e/2PACX-1vQSolcWM_lQ0oHbNp_y-7PvG8WZtB2p3bh62lhXKqN9SYO9nlD3D9LRHUDF1ZPiKDbjVn_OX_yeCnkt/pub?gid=0&single=true&output=csv

    It returns this csv :

    date,nb_passagess
    string,number
    03/08/2019,3000
    04/08/2019,3100
    05/08/2019,3200
    06/08/2019,3300

    Directly using this csv, i can edit the chart after creating it. Using the url (that provided this csv), still have the issue ?? i really don’t know what to do now.

    Full log trace :

    [2019-07-30 08:30:53] production.ERROR: array_values() expects parameter 1 to be array, string given {"userId":null,"email":null,"exception":"[object] (ErrorException(code: 0): array_values() expects parameter 1 to be array, string given at /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Layout.php:379)
    [stacktrace]
    #0 [internal function]: Themosis\\Core\\Bootstrap\\ExceptionHandler->handleError(2, 'array_values() ...', '/var/www/html/h...', 379, Array)
    #1 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Layout.php(379): array_values('https://docs.go...')
    #2 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Layout.php(48): Visualizer_Render_Layout::_renderEditorTable(Array)
    #3 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Layout.php(262): Visualizer_Render_Layout::show('editor-table', NULL, 70, 'viz-html-table', true, true)
    #4 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Layout.php(48): Visualizer_Render_Layout::_renderSimpleEditorScreen(Array)
    #5 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Page/Data.php(48): Visualizer_Render_Layout::show('simple-editor-s...', 70)
    #6 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render/Page.php(41): Visualizer_Render_Page_Data->_renderContent()
    #7 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Render.php(151): Visualizer_Render_Page->_toHTML()
    #8 /var/www/html/htdocs/cms/wp-admin/includes/media.php(569): Visualizer_Render->render()
    #9 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Module/Chart.php(712): wp_iframe(Array)
    #10 /var/www/html/htdocs/content/plugins/visualizer/classes/Visualizer/Module/Chart.php(515): Visualizer_Module_Chart->_handleDataAndSettingsPage()
    #11 /var/www/html/htdocs/cms/wp-includes/class-wp-hook.php(286): Visualizer_Module_Chart->renderChartPages('')
    #12 /var/www/html/htdocs/cms/wp-includes/class-wp-hook.php(310): WP_Hook->apply_filters('', Array)
    #13 /var/www/html/htdocs/cms/wp-includes/plugin.php(465): WP_Hook->do_action(Array)
    #14 /var/www/html/htdocs/cms/wp-admin/admin-ajax.php(173): do_action('wp_ajax_visuali...')
    #15 {main}
    "} 

    This :
    Render/Layout.php(379): array_values('https://docs.go...') is strange

    Thread Starter tipytv

    (@tipytv)

    I’ve added the second line with data types, but the issue remain the same.
    Can you try again with the same url ?

    Thread Starter tipytv

    (@tipytv)

    Sure, here is the link :
    https://docs.google.com/spreadsheets/d/1hPQLfX6llCB_qW_u4uGtsUNwbNqdEJU5MxOYQmv-DPY/gviz/tq?tq=select%20A%2C%20B%20limit%2015&range=A14:B&tqx=out:csv

    Thread Starter tipytv

    (@tipytv)

    Yes, it is fixed, that was my hosting provider. I don’t know what was the issue exactly they didn’t explain it.

    Really thank you for your time ??

    Thread Starter tipytv

    (@tipytv)

    Okay thanks i’ll take a look.

    For the moment i have tested the issue with no others plugins activated, it still occurs. I’m reading all my custom code just to be sure, but i think it comes from my hosting provider.

    Just in case, here is my Woocommerce system report :

    ### WordPress Environment ###
    
    WordPress address (URL): https://www.tipy.pro/cms
    Site address (URL): https://www.tipy.pro
    WC Version: 3.6.3
    Log Directory Writable: ?
    WP Version: 5.2.1
    WP Multisite: –
    WP Memory Limit: 512 MB
    WP Debug Mode: –
    WP Cron: –
    Language: fr_FR
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache
    PHP Version: 7.2.15
    PHP Post Max Size: 130 MB
    PHP Time Limit: 300
    PHP Max Input Vars: 16000
    cURL Version: 7.38.0
    OpenSSL/1.0.1t
    
    SUHOSIN Installed: –
    MySQL Version: ? 5.5.30 - Nous recommandons MySQL version 5.6 minimum. Voir?: Exigences de WordPress
    Max Upload Size: 128 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 3.6.3
    WC Database Prefix: wor9574_
    MaxMind GeoIP Database: ?
    Taille totale de la base de données: 1044.20MB
    Taille de la base de données: 649.94MB
    Taille de l’index: 394.26MB
    wor9574_woocommerce_sessions: Données : 185.68MB + Index: 9.45MB
    wor9574_woocommerce_api_keys: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_attribute_taxonomies: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_downloadable_product_permissions: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_order_items: Données : 0.04MB + Index: 0.03MB
    wor9574_woocommerce_order_itemmeta: Données : 0.39MB + Index: 0.22MB
    wor9574_woocommerce_tax_rates: Données : 0.00MB + Index: 0.01MB
    wor9574_woocommerce_tax_rate_locations: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_shipping_zones: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_shipping_zone_locations: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_shipping_zone_methods: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_payment_tokens: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_payment_tokenmeta: Données : 0.00MB + Index: 0.00MB
    wor9574_woocommerce_log: Données : 0.00MB + Index: 0.00MB
    asso_codes_cadeaux_utilisateurs: Données : 0.02MB + Index: 0.03MB
    asso_devices_mots_clefs_uniques: Données : 0.02MB + Index: 0.02MB
    asso_device_info_blacklist: Données : 0.02MB + Index: 0.02MB
    asso_mots_clefs_devices: Données : 0.05MB + Index: 0.03MB
    asso_mots_clefs_infos: Données : 0.17MB + Index: 0.08MB
    asso_mots_clefs_infos_archives: Données : 0.06MB + Index: 0.03MB
    asso_mots_clefs_templates: Données : 0.02MB + Index: 0.03MB
    asso_mots_clefs_types_information: Données : 0.02MB + Index: 0.03MB
    asso_tranches_age_informations: Données : 0.02MB + Index: 0.02MB
    asso_tranches_age_informations_archives: Données : 0.00MB + Index: 0.00MB
    asso_twitter_hashtags: Données : 0.02MB + Index: 0.02MB
    asso_twitter_users: Données : 0.02MB + Index: 0.02MB
    asso_utilisateurs_tweets: Données : 0.02MB + Index: 0.03MB
    asso_zones_identitaires_villes: Données : 0.02MB + Index: 0.02MB
    bassins: Données : 0.02MB + Index: 0.00MB
    cashings: Données : 0.02MB + Index: 0.09MB
    cashings_autres: Données : 0.02MB + Index: 0.00MB
    cashings_clips: Données : 0.02MB + Index: 0.00MB
    cashings_diffusions: Données : 0.02MB + Index: 0.00MB
    categories_utilisateurs: Données : 0.02MB + Index: 0.00MB
    codes_cadeaux: Données : 0.02MB + Index: 0.02MB
    code_annonce: Données : 0.00MB + Index: 0.00MB
    departements: Données : 0.02MB + Index: 0.02MB
    devices: Données : 0.09MB + Index: 0.16MB
    equipements: Données : 0.02MB + Index: 0.02MB
    factures_soldes: Données : 0.02MB + Index: 0.02MB
    historiques_soldes: Données : 0.16MB + Index: 0.05MB
    id_fichier: Données : 0.02MB + Index: 0.00MB
    informations: Données : 1.52MB + Index: 0.83MB
    informations_archives: Données : 0.38MB + Index: 0.14MB
    informations_archives_tweets: Données : 33.56MB + Index: 0.00MB
    jobs: Données : 0.00MB + Index: 0.00MB
    messages: Données : 0.02MB + Index: 0.03MB
    mots_clefs: Données : 0.06MB + Index: 0.06MB
    old_asso_mots_clefs_utilisateurs: Données : 0.02MB + Index: 0.02MB
    old_asso_templates_utilisateurs: Données : 1.52MB + Index: 1.97MB
    old_asso_types_info_utilisateurs: Données : 0.06MB + Index: 0.05MB
    old_asso_utilisateurs_type_utilisateurs: Données : 0.14MB + Index: 0.19MB
    password_resets: Données : 0.01MB + Index: 0.01MB
    pays: Données : 0.02MB + Index: 0.00MB
    regions: Données : 0.02MB + Index: 0.02MB
    rss_flux: Données : 0.00MB + Index: 0.00MB
    rss_flux_images: Données : 0.00MB + Index: 0.00MB
    semaphores_playlists: Données : 0.02MB + Index: 0.00MB
    sib_model_contact: Données : 0.00MB + Index: 0.00MB
    sib_model_country: Données : 0.02MB + Index: 0.00MB
    tranches_age: Données : 0.02MB + Index: 0.00MB
    twitter_configs: Données : 0.02MB + Index: 0.00MB
    twitter_hashtags: Données : 0.02MB + Index: 0.00MB
    twitter_tweets: Données : 0.02MB + Index: 0.03MB
    twitter_users: Données : 0.02MB + Index: 0.00MB
    types_mots_clefs: Données : 0.02MB + Index: 0.00MB
    types_utilisateurs: Données : 0.02MB + Index: 0.00MB
    type_information: Données : 0.02MB + Index: 0.00MB
    users_videos: Données : 1.52MB + Index: 0.33MB
    utilisateurs: Données : 0.14MB + Index: 0.14MB
    utilisateurs_data: Données : 0.08MB + Index: 0.02MB
    villes: Données : 0.02MB + Index: 0.02MB
    wor9574_affiliate_wp_affiliatemeta: Données : 0.02MB + Index: 0.03MB
    wor9574_affiliate_wp_affiliates: Données : 0.00MB + Index: 0.00MB
    wor9574_affiliate_wp_campaigns: Données : 0.00MB + Index: 0.00MB
    wor9574_affiliate_wp_creatives: Données : 0.00MB + Index: 0.00MB
    wor9574_affiliate_wp_customermeta: Données : 0.00MB + Index: 0.01MB
    wor9574_affiliate_wp_customers: Données : 0.01MB + Index: 0.01MB
    wor9574_affiliate_wp_direct_links: Données : 0.00MB + Index: 0.01MB
    wor9574_affiliate_wp_payouts: Données : 0.00MB + Index: 0.00MB
    wor9574_affiliate_wp_referrals: Données : 0.07MB + Index: 0.01MB
    wor9574_affiliate_wp_rest_consumers: Données : 0.00MB + Index: 0.00MB
    wor9574_affiliate_wp_visits: Données : 0.07MB + Index: 0.01MB
    wor9574_aiowps_events: Données : 0.00MB + Index: 0.00MB
    wor9574_aiowps_failed_logins: Données : 0.35MB + Index: 0.13MB
    wor9574_aiowps_global_meta: Données : 0.00MB + Index: 0.00MB
    wor9574_aiowps_login_activity: Données : 0.28MB + Index: 0.07MB
    wor9574_aiowps_login_lockdown: Données : 0.02MB + Index: 0.01MB
    wor9574_aiowps_permanent_block: Données : 0.00MB + Index: 0.00MB
    wor9574_asso_playlists_devices: Données : 0.06MB + Index: 0.03MB
    wor9574_bwg_album: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_album_gallery: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_file_paths: Données : 0.01MB + Index: 0.00MB
    wor9574_bwg_gallery: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_image: Données : 0.01MB + Index: 0.00MB
    wor9574_bwg_image_comment: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_image_rate: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_image_tag: Données : 0.00MB + Index: 0.00MB
    wor9574_bwg_shortcode: Données : 0.30MB + Index: 0.01MB
    wor9574_bwg_theme: Données : 0.04MB + Index: 0.00MB
    wor9574_cache: Données : 2.84MB + Index: 0.01MB
    wor9574_cache_etats_devices: Données : 0.02MB + Index: 0.03MB
    wor9574_cache_noms_devices: Données : 0.02MB + Index: 0.02MB
    wor9574_calculation_servers: Données : 0.02MB + Index: 0.00MB
    wor9574_categories: Données : 0.08MB + Index: 0.00MB
    wor9574_ca_devices: Données : 1.52MB + Index: 0.33MB
    wor9574_ca_places: Données : 0.33MB + Index: 0.16MB
    wor9574_commentmeta: Données : 0.05MB + Index: 0.03MB
    wor9574_comments: Données : 0.19MB + Index: 0.16MB
    wor9574_configuration: Données : 0.00MB + Index: 0.00MB
    wor9574_creds_prices: Données : 0.02MB + Index: 0.02MB
    wor9574_cron_logs: Données : 0.02MB + Index: 0.02MB
    wor9574_devices_activities_history: Données : 54.16MB + Index: 51.22MB
    wor9574_devices_anormaux: Données : 1.52MB + Index: 0.00MB
    wor9574_devices_configs: Données : 0.02MB + Index: 0.02MB
    wor9574_devices_connectes: Données : 1.52MB + Index: 0.00MB
    wor9574_devices_corrects: Données : 1.52MB + Index: 0.00MB
    wor9574_devices_critiques: Données : 1.52MB + Index: 0.00MB
    wor9574_devices_errors_diffusions: Données : 2.52MB + Index: 2.00MB
    wor9574_devices_indicateurs: Données : 0.02MB + Index: 0.00MB
    wor9574_devices_installes: Données : 1.52MB + Index: 0.00MB
    wor9574_gf_draft_submissions: Données : 0.00MB + Index: 0.00MB
    wor9574_gf_entry: Données : 3.86MB + Index: 0.34MB
    wor9574_gf_entry_meta: Données : 7.74MB + Index: 6.45MB
    wor9574_gf_entry_notes: Données : 0.00MB + Index: 0.00MB
    wor9574_gf_form: Données : 0.00MB + Index: 0.00MB
    wor9574_gf_form_meta: Données : 4.56MB + Index: 0.00MB
    wor9574_gf_form_revisions: Données : 0.00MB + Index: 0.00MB
    wor9574_gf_form_view: Données : 0.29MB + Index: 0.13MB
    wor9574_html_playlist_annonces_agendas: Données : 0.00MB + Index: 0.01MB
    wor9574_html_playlist_jeux: Données : 0.00MB + Index: 0.00MB
    wor9574_html_playlist_pubs: Données : 0.00MB + Index: 0.00MB
    wor9574_html_playlist_videos_partner: Données : 0.00MB + Index: 0.00MB
    wor9574_incident: Données : 0.02MB + Index: 0.05MB
    wor9574_incidents: Données : 0.47MB + Index: 0.30MB
    wor9574_ledger: Données : 1.52MB + Index: 0.53MB
    wor9574_links: Données : 0.00MB + Index: 0.00MB
    wor9574_migrations: Données : 0.00MB + Index: 0.00MB
    wor9574_myCRED_log: Données : 16.39MB + Index: 2.68MB
    wor9574_notifications: Données : 2.52MB + Index: 0.25MB
    wor9574_options: Données : 4.66MB + Index: 0.19MB
    wor9574_places_themes: Données : 0.13MB + Index: 0.08MB
    wor9574_playlists_pubs: Données : 0.14MB + Index: 0.19MB
    wor9574_playlists_videos: Données : 4.34MB + Index: 6.78MB
    wor9574_pmxe_exports: Données : 0.00MB + Index: 0.00MB
    wor9574_pmxe_google_cats: Données : 0.26MB + Index: 0.05MB
    wor9574_pmxe_posts: Données : 0.00MB + Index: 0.00MB
    wor9574_pmxe_templates: Données : 0.00MB + Index: 0.00MB
    wor9574_postmeta: Données : 113.58MB + Index: 90.09MB
    wor9574_posts: Données : 18.33MB + Index: 8.28MB
    wor9574_publications_status_history: Données : 0.27MB + Index: 0.19MB
    wor9574_revslider_css: Données : 0.09MB + Index: 0.00MB
    wor9574_revslider_layer_animations: Données : 0.00MB + Index: 0.00MB
    wor9574_revslider_navigations: Données : 0.00MB + Index: 0.00MB
    wor9574_revslider_sliders: Données : 0.01MB + Index: 0.00MB
    wor9574_revslider_slides: Données : 0.00MB + Index: 0.00MB
    wor9574_revslider_static_slides: Données : 0.00MB + Index: 0.00MB
    wor9574_rg_form: Données : 0.00MB + Index: 0.00MB
    wor9574_rg_form_meta: Données : 2.74MB + Index: 0.00MB
    wor9574_rg_form_view: Données : 0.08MB + Index: 0.04MB
    wor9574_rg_incomplete_submissions: Données : 0.00MB + Index: 0.00MB
    wor9574_rg_lead: Données : 1.56MB + Index: 0.14MB
    wor9574_rg_lead_detail: Données : 2.32MB + Index: 2.76MB
    wor9574_rg_lead_detail_long: Données : 0.00MB + Index: 0.00MB
    wor9574_rg_lead_meta: Données : 0.00MB + Index: 0.01MB
    wor9574_rg_lead_notes: Données : 0.00MB + Index: 0.00MB
    wor9574_rg_zapier: Données : 0.00MB + Index: 0.00MB
    wor9574_sellsy_third: Données : 0.02MB + Index: 0.00MB
    wor9574_sellsy_thirdcontact: Données : 0.02MB + Index: 0.00MB
    wor9574_sellsy_thirdcontactsmeta: Données : 0.02MB + Index: 0.02MB
    wor9574_sellsy_third_thirdcontacts: Données : 0.02MB + Index: 0.02MB
    wor9574_sib_model_forms: Données : 0.00MB + Index: 0.00MB
    wor9574_sib_model_users: Données : 0.00MB + Index: 0.00MB
    wor9574_stats_activites: Données : 0.02MB + Index: 0.02MB
    wor9574_stats_archives_par_semaine: Données : 38.56MB + Index: 39.58MB
    wor9574_stats_archives_par_semaine_wp: Données : 70.59MB + Index: 99.22MB
    wor9574_stats_erreurs: Données : 3.52MB + Index: 6.06MB
    wor9574_stats_erreurs_wp: Données : 2.52MB + Index: 3.41MB
    wor9574_stats_pubs_par_jour: Données : 0.02MB + Index: 0.06MB
    wor9574_stats_pubs_par_jour_wp: Données : 1.52MB + Index: 3.33MB
    wor9574_stats_pubs_wp: Données : 0.02MB + Index: 0.03MB
    wor9574_stats_types_media: Données : 0.02MB + Index: 0.00MB
    wor9574_stats_videos_par_jour: Données : 0.02MB + Index: 0.08MB
    wor9574_stats_videos_par_jour_wp: Données : 31.56MB + Index: 46.13MB
    wor9574_stats_videos_wp: Données : 0.02MB + Index: 0.05MB
    wor9574_termmeta: Données : 0.05MB + Index: 0.03MB
    wor9574_terms: Données : 0.05MB + Index: 0.03MB
    wor9574_term_relationships: Données : 1.52MB + Index: 1.52MB
    wor9574_term_taxonomy: Données : 0.06MB + Index: 0.03MB
    wor9574_tipy_games_participants: Données : 0.02MB + Index: 0.02MB
    wor9574_tipy_games_winners: Données : 0.02MB + Index: 0.02MB
    wor9574_tipy_scores_idp: Données : 0.30MB + Index: 0.09MB
    wor9574_tipy_scores_idpmeta: Données : 0.14MB + Index: 0.08MB
    wor9574_usermeta: Données : 2.52MB + Index: 4.03MB
    wor9574_users: Données : 0.19MB + Index: 0.17MB
    wor9574_videos_calculation_data: Données : 9.52MB + Index: 1.02MB
    wor9574_video_champs: Données : 0.02MB + Index: 0.00MB
    wor9574_video_compositions: Données : 3.52MB + Index: 0.52MB
    wor9574_video_templates: Données : 0.02MB + Index: 0.02MB
    wor9574_video_templates_champs: Données : 0.09MB + Index: 0.02MB
    wor9574_video_templates_groupes: Données : 0.02MB + Index: 0.00MB
    wor9574_wcpdf_invoice_number: Données : 0.00MB + Index: 0.01MB
    wor9574_wc_download_log: Données : 0.00MB + Index: 0.00MB
    wor9574_wc_product_meta_lookup: Données : 0.16MB + Index: 0.33MB
    wor9574_wc_webhooks: Données : 0.00MB + Index: 0.00MB
    wor9574_wpgmza: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_categories: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_category_maps: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_circles: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_maps: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_polygon: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_polylines: Données : 0.02MB + Index: 0.00MB
    wor9574_wpgmza_rectangles: Données : 0.02MB + Index: 0.00MB
    wor9574_wplc_chat_msgs: Données : 0.02MB + Index: 0.00MB
    wor9574_wplc_chat_sessions: Données : 0.02MB + Index: 0.00MB
    wor9574_wplc_offline_messages: Données : 0.02MB + Index: 0.00MB
    wor9574_wppcp_group_files: Données : 0.00MB + Index: 0.00MB
    wor9574_wppcp_group_messages: Données : 0.00MB + Index: 0.00MB
    wor9574_wppcp_group_users: Données : 0.00MB + Index: 0.00MB
    wor9574_wppcp_private_page: Données : 0.00MB + Index: 0.00MB
    wor9574_wppcp_private_page_files: Données : 0.00MB + Index: 0.00MB
    wor9574_wppcp_private_page_messages: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_agent_assign_data: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_agent_settings: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_attachments: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_canned_reply: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_catagories: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_custom_fields: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_custom_priority: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_custom_status: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_faq: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_faq_catagories: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_panel_custom_menu: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_support_menu: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_ticket: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_ticket_form_order: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_ticket_list_order: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_ticket_thread: Données : 0.00MB + Index: 0.00MB
    wor9574_wpsp_users: Données : 0.00MB + Index: 0.00MB
    wor9574_xcloner_scheduler: Données : 0.02MB + Index: 0.00MB
    wor9575_commentmeta: Données : 0.00MB + Index: 0.00MB
    wor9575_comments: Données : 0.00MB + Index: 0.01MB
    wor9575_links: Données : 0.00MB + Index: 0.00MB
    wor9575_options: Données : 0.08MB + Index: 0.01MB
    wor9575_postmeta: Données : 0.00MB + Index: 0.01MB
    wor9575_posts: Données : 0.01MB + Index: 0.01MB
    wor9575_termmeta: Données : 0.00MB + Index: 0.00MB
    wor9575_terms: Données : 0.00MB + Index: 0.01MB
    wor9575_term_relationships: Données : 0.00MB + Index: 0.00MB
    wor9575_term_taxonomy: Données : 0.00MB + Index: 0.00MB
    wor9575_usermeta: Données : 0.00MB + Index: 0.01MB
    wor9575_users: Données : 0.00MB + Index: 0.01MB
    zones_identitaires: Données : 0.02MB + Index: 0.02MB
    
    ### Post Type Counts ###
    
    acf: 7
    acf-field: 17
    acf-field-group: 8
    anr-post: 1
    attachment: 12042
    broadcast_devices: 329
    broadcast_places: 282
    bwg_gallery: 2
    bwg_share: 1
    json_consumer: 1
    mg_referfriend: 1
    mycred_coupon: 2
    nav_menu_item: 15
    oembed_cache: 8
    page: 203
    post: 19
    product: 706
    product_variation: 440
    revision: 603
    scheduled-action: 15
    shop_coupon: 34
    shop_order: 389
    shop_order_refund: 1
    sumomasterlog: 514
    sumosubs_cron_events: 56
    sumosubscriptions: 59
    tipy_games: 8
    tipy_publications: 3815
    tipy_videos: 6205
    um_directory: 1
    um_form: 3
    um_role: 2
    us_grid_layout: 7
    us_header: 1
    us_page_block: 11
    us_widget_area: 5
    wc_crm_tasks: 139
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (68) ###
    
    Ultimate Addons for WPBakery Page Builder: par Brainstorm Force – 3.18.0
    Advanced Custom Fields: par Elliot Condon – 5.8.0
    Advanced Database Cleaner: par Younes JFR. – 2.0.0
    Advanced noCaptcha & invisible Captcha: par Shamim Hasan – 5.4 – Non testé avec la version active de WooCommerce
    AffiliateWP - Lifetime Commissions: par AffiliateWP – 1.3.2
    AffiliateWP: par AffiliateWP
    LLC – 2.2.17
    
    AffiliateWP - Affiliate Area Shortcodes: par AffiliateWP
    LLC – 1.1.7
    
    AffiliateWP - Affiliate Area Tabs: par AffiliateWP – 1.2.7
    AffiliateWP - Affiliate Dashboard Sharing: par AffiliateWP – 1.1.6
    AffiliateWP - Affiliate Landing Pages: par AffiliateWP
    LLC – 1.0.2
    
    AffiliateWP - Allow Own Referrals: par AffiliateWP
    LLC – 1.0.2
    
    AffiliateWP - Custom Affiliate Slugs: par Pippin Williamson and Andrew Munro – 1.0.2
    AffiliateWP - Direct Link Tracking: par AffiliateWP – 1.1.3
    AffiliateWP - REST API Extended: par AffiliateWP
    LLC – 1.0.4
    
    AffiliateWP - Show Affiliate Coupons: par AffiliateWP – 1.0.7
    AffiliateWP - Signup Referrals: par Pippin Williamson and Andrew Munro – 1.0.2
    AffiliateWP - Tiered Rates: par AffiliateWP – 1.1.2
    All in One SEO Pack: par Michael Torbert – 2.12.1
    All In One WP Security: par Tips and Tricks HQ
    Peter Petreski
    Ruhul
    Ivy – 4.3.9.3
    
    Application Passwords: par George Stephanis – 0.1-dev
    Autocomplete WooCommerce Orders: par Liam McArthur – 1.1.0 – Non testé avec la version active de WooCommerce
    Broadcast Devices Manager: par Tipy TV – 1.0.0
    Classic Editor: par Contributeurs et contributrices WordPress – 1.5
    Sidebar Widgets by CodeLights: par CodeLights – 1.4
    Cookie Notice: par dFactory – 1.2.46
    Custom Post Type Widgets: par thingsym – 1.1.3
    Duplicate Post: par Enrico Battocchi – 3.2.2
    Facebook for WooCommerce: par Facebook – 1.9.12 – Non testé avec la version active de WooCommerce
    Gravity Forms Advanced File Uploader: par Benjamin Moody – 1.5
    Gravity Forms + Custom Post Types: par spivurno – 3.1.15
    Gravity Forms Google Places: par Stephen Beemsterboer @ Oomph
    Inc. – 1.1.0
    
    Drop Down List Field for Gravity Forms: par Adrian Gordon – 1.8.5
    Gravity Forms: Post Updates: par Jupitercow – 1.2.23
    Gravity Forms Video Creator: par TipyTV – 1.0.0
    Gravity Slider Fields: par Typewheel – 1.5
    Gravity Forms: par rocketgenius – 2.4.9
    Gravity Forms Zapier Add-on: par rocketgenius – 3.1
    éditeur de page: par Michael M - WPBakery.com – 5.7
    Ledger management: par TipyTV – 1.0.0
    LH Archived Post Status: par Peter Shaw – 2.20
    SendinBlue Subscribe Form And WP SMTP: par SendinBlue – 2.9.4
    Members: par Justin Tadlock – 2.1.0
    myCRED: par myCRED – 1.8.3
    Photo Gallery: par Photo Gallery Team – 1.5.26
    Restrict Taxonomies: par LEONE Yannick – 2.0.0
    Slider Revolution: par ThemePunch – 5.4.8.3
    Slim Image Cropper for Gravity Forms: par PQINA – 1.4.3
    Sticky Menu (or Anything!) on Scroll: par Mark Senff – 2.1.1
    SUMO Subscriptions: par Fantastic Plugins – 9.6 – Non testé avec la version active de WooCommerce
    Tipy Jeux: par Tipy Technique – 1.0.0
    Tipy Score et IDP: par Tipy Technique – 1.0.0
    UpdraftPlus - Sauvegarde/Restauration: par UpdraftPlus.Com
    DavidAnderson – 1.16.14
    
    Header Builder: par UpSolution – 2.5.1
    WooCommerce PayPal Checkout Gateway: par WooCommerce – 1.6.14
    WooCommerce Stripe Gateway: par WooCommerce – 4.1.16
    Woocommerce GoCardless SUMO SEPA OLD: par Technique Tipy – 1.0.0 – Non testé avec la version active de WooCommerce
    Woocommerce GoCardless SUMO SEPA: par Technique Tipy – 1.0.0 – Non testé avec la version active de WooCommerce
    WooCommerce Max Quantity: par Isabel Castillo – 1.5.1 – Non testé avec la version active de WooCommerce
    WooCommerce PDF Invoices & Packing Slips: par Ewout Fernhout – 2.2.12
    WooCommerce PDF Invoices & Packing Slips Professional: par Ewout Fernhout – 1.5.2 – Non testé avec la version active de WooCommerce
    WooCommerce Sendinblue Newsletter Subscription: par SendinBlue – 1.2.11 – Non testé avec la version active de WooCommerce
    WooCommerce Shop as Customer: par cxThemes – 2.16 – Non testé avec la version active de WooCommerce
    WooCommerce: par Automattic – 3.6.3
    WooSwipe: par Thrive Website Design – 1.1.6.8
    WP Migrate DB: par Delicious Brains – 1.0.11
    WP Private Content Pro: par Rakhitha Nimesh – 1.6
    WP Support Plus: par Pradeep Makone – 9.1.2
    WP Users Media: par Damir Calusic – 4.1.0
    
    ### Inactive Plugins (7) ###
    
    AffiliateWP - Checkout Referrals: par AffiliateWP – 1.0.7
    Tipy bug report: par Technique Tipy – 1.0.0
    Tipy customize woocommerce: par Technique Tipy – 1.0.0 – Non testé avec la version active de WooCommerce
    Tipy stats: par Technique Tipy – 1.0.0
    Tipy Sumo: par YTechnique Tipy – 1.0.0
    WooCommerce Blocks: par Automattic – 2.1.0
    WooCommerce GoCardless Gateway: par WooCommerce – 2.4.7 – Non testé avec la version active de WooCommerce
    
    ### Must Use Plugins (1) ###
    
    Themosis Framework Loader: par Julien Lambé – 1.4.0
    
    ### Settings ###
    
    API Enabled: ?
    Force SSL: –
    Currency: EUR (€)
    Currency Position: right
    Thousand Separator: 
    Decimal Separator: ,
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    variation (variation)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to WooCommerce.com: –
    
    ### WC Pages ###
    
    Base boutique: #6851 - /shop/
    Panier: #3883 - /cart/
    Commande: #3881 - /checkout/
    Mon compte: #3882 - /mon-compte/
    Conditions générales de vente et d’utilisation: #7714 - /cgv/
    
    ### Theme ###
    
    Name: Impreza Child
    Version: 1.0.0
    Author URL: https://example.com
    Child Theme: ?
    Parent Theme Name: Impreza
    Parent Theme Version: 6.0.4
    Parent Theme Author URL: https://us-themes.com/
    WooCommerce Support: ?
    
    ### Templates ###
    
    Overrides: Impreza-child/woocommerce/emails/customer-invoice.php
    Impreza-child/woocommerce/myaccount/my-address.php
    
    ### Action Scheduler ###
    
    Complete: 15
    Oldest: 2019-04-29 14:40:16 +0200
    Newest: 2019-04-29 14:42:15 +0200
    
    Pending: 0
    Oldest: –
    Newest: –
    
    Canceled: 0
    Oldest: –
    Newest: –
    
    In-progress: 0
    Oldest: –
    Newest: –
    
    Failed: 0
    Oldest: –
    Newest: –
    Thread Starter tipytv

    (@tipytv)

    Thanks a lot ?? !!

    tipytv

    (@tipytv)

    Hi, did you find a fix since your comment ?

    I have the exactly same issue than you.
    For the moment the only fix i found is to comment this line on woocommerce-sendinblue-newsletter-subscription/woocommerce-sendinblue.php :
    line 428
    //self::$order_template_sib = $new_status;

    Can the author check this issue ?

Viewing 10 replies - 1 through 10 (of 10 total)