• Resolved swerlz

    (@swerlz)


    I message you over a month ago before I had to do a manual import because of your useless support.

    Your plugin is awful now. Latest version plugin, FRESH wordpress install. Can’t even import a 2mb export (another fresh wordpress) it’s just stuck. PHP max memory limit and all limit are to the max, max upload is 15GB so don’t ask to change any of this.

    Another bug is when I try to upload an older version of your plugin that WORKS (6.77) it automatically updates it to version 7.5! You don’t even have 7.5 because it tells me I can update from 7.5 to 7.48 !!!

    There is no point of this plugin even being there as last 3 migration for client I had to do manually…

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Yani

    (@yaniiliev)

    It is time to reconsider using the plugin and find an alternative solution when the plugin is not working for you.

    to stop automatic updates… for 6.77 version.

    make a “mu-plugins” folder
    add inside a file > disable-update-all-in-one-migration.php

    <?php
        /* 
         * Disable update notification for individual plugins
         */  
    /* Function which remove Plugin Update Notices – all-in-one-wp-migration*/
    function disable_plugin_updates( $value ) {
       unset( $value->response['all-in-one-wp-migration/all-in-one-wp-migration.php'] );
       return $value;
    }
    add_filter( 'site_transient_update_plugins', 'disable_plugin_updates' );
    ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Upload Stuck’ is closed to new replies.