• Resolved rasmoodi

    (@rasmoodi)


    Hello
    I try to import listing by directorist importer wizard, But in each step 3020 listing rows are imported, how I cant import more than this in each step?
    note: I increase file size limit

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Rafiz Sejim

    (@rafizsejim)

    Hello @rasmoodi

    We are sorry for the trouble.

    As per our documentation, “A CSV file of 25000 records isn’t a problem for Directorist itself, but it may overflow the memory of most hosting services during import. We would recommend you to break your CSV file with a smaller number of records — start with about 500 records and see how that goes. You may need to adjust the numbers depending on your hosting plan.”

    Since you had no issues importing 3000 listings, we would recommend you to import 3000 listings at a time.

    Alternatively, you may also try increasing the “Listing import limit per cycle”.

    Please add the following snippet in Theme/Child Theme’s functions.php and then try again

    function listing_import_limit_per_cycle(){
    return 50;
    }
    add_filter('atbdp_listing_import_limit_per_cycle', 'listing_import_limit_per_cycle');

    Regards,

    • This reply was modified 4 years, 2 months ago by Rafiz Sejim.
    Thread Starter rasmoodi

    (@rasmoodi)

    Thanks for your answer.
    @}===

    Thread Starter rasmoodi

    (@rasmoodi)

    I MODIFY import-export.js file(dir: public_html/wp-content/plugins/directorist/admin/assets/js
    )
    before:
    if (response.percentage != ‘100’ && counter < 150) {
    after:
    if (response.percentage != ‘100’ && counter < 1500) {

    and now I can import 30000 rows at any import.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘why only 3020 listingsrows imported’ is closed to new replies.