• Perhaps it is something with my server configuration, but I only seem to be able to export 13k signatures in one batch (right around a 5mb file)

    I was able to adjust the export script to grab an offset from the URL and I added some additional buttons – any suggestions on getting all to export?

    https://www.ads-software.com/plugins/speakout/

Viewing 2 replies - 1 through 2 (of 2 total)
  • An offset seems a sensible solution, maybe you should share your patch. Alternatively, the export could spawn multiple jobs in sequence, append to a file locally and then offer the file for download when completed.

    Thread Starter sflwa

    (@sflwa)

    In file includes/signatures.view.php

    <a class="button dk-speakout-inline" style="margin: 0 .5em 0 .5em" href="' .  esc_url( wp_nonce_url( $csv_url . '&csv=signatures&offset=0', 'dk_speakout-download_signatures' ) ) . '">' . __( 'Download 10000 most recent as CSV', 'dk_speakout' ) . '</a>
    
    <a class="button dk-speakout-inline" style="margin: 0 .5em 0 .5em" href="' .  esc_url( wp_nonce_url( $csv_url . '&csv=signatures&offset=10000', 'dk_speakout-download_signatures' ) ) . '">' . __( 'Download next 10000 as CSV', 'dk_speakout' ) . '</a>
    
    <a class="button dk-speakout-inline" style="margin: 0 .5em 0 .5em" href="' .  esc_url( wp_nonce_url( $csv_url . '&csv=signatures&offset=20000', 'dk_speakout-download_signatures' ) ) . '">' . __( 'Download 2nd next 10000 as CSV', 'dk_speakout' ) . '</a>
    
    <a id="dk-speakout-reconfirm" class="button dk-speakout-inline" href="' . esc_url( wp_nonce_url( $reconfirm_url, 'dk_speakout-resend_confirmations' . $pid ) ) . '">' . __( 'Re-send confirmations', 'dk_speakout' ) . '</a>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Large Exports > 10k seems to fail’ is closed to new replies.