• Resolved davidwinplus

    (@davidwinplus)


    Hi there,

    I’m pulling my hair out here trying to get the import/export order plugin to work.

    I’m assuming it’s an issue with the setup of my site, but haven’t been able to work through anything.

    My set up is:
    ? Multisite
    ? Latest version of WP and the plugin
    ? PHP V7

    Steps I’ve tried to rectify:
    ? Uninstalling/reinstalling plugin
    ? Reinstalling latest update of WP
    ? Manually changing permissions of admin-ajax.php
    ? Copying admin-ajax.php file from site where it works
    ? Running with sample CSV
    ? Running plugin on similar multi-site set up (It worked)
    ? Uninstalling all other plugins and rolling back to Twenty Nineteen theme
    ? Tried from multiple browsers/computers/IP addresses

    The console error I’m getting is:

    JQMIGRATE: Migrate is installed, version 1.4.1
    /wp-admin/admin-ajax.php?import_page=woocommerce_wf_order_csv&step=3&merge=0:1

    Is there anything else you could suggest I could do here?

    Thanks so much!

Viewing 1 replies (of 1 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @davidwinplus,

    The issue you are facing while importing the orders using the plugin might be because of memory limit exhausting or execution timeout. During import, each orders row import is accessing different tables in the database and entering data into each table.

    Please copy the below code snippet to active theme’s functions.php and try importing the CSV file.

    add_filter('woocommerce_csv_import_limit_per_request', 'woocommerce_csv_import_limit_per_request');
    function woocommerce_csv_import_limit_per_request()
    { return 3; 

    If the issue still persists please reach us via support.

Viewing 1 replies (of 1 total)
  • The topic ‘Ajax Permissions Error’ is closed to new replies.