• Resolved kenth8

    (@kenth8)


    When I migrating oldsite.com to newsite.com, WPvivid renamed .htaccess to .htaccess.old in newsite.com, and the migration process stopped. I have to re-upload the .htaccess file for the migration process to continue. Is this a bug?

    Thanks,
    Kent

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support tonyrobins

    (@tonyrobins)

    Hi @kenth8

    Our guess is that there are some specific rules in your .htaccess file, without these rules, ajax requests will not be accepted. That’s why this problem occurred.

    We’d be happy to help analyze the rules if you could also post them.

    Kind Regards,

    Thread Starter kenth8

    (@kenth8)

    Here is my .htaccess
    thanks

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^www.domain.com$ [NC]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]

    RewriteEngine On
    RewriteCond %{HTTP_HOST} !^domain.com$ [NC]
    RewriteCond %{SERVER_PORT} 80
    RewriteRule ^(.*)$ https://www.domain.com/$1 [L,R=301]

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    # php — BEGIN cPanel-generated handler, do not edit
    # Set the “ea-php73” package as the default “PHP” programming language.
    <IfModule mime_module>
    AddHandler application/x-httpd-ea-php73 .php .php7 .phtml
    </IfModule>
    # php — END cPanel-generated handler, do not edit

    Plugin Support tonyrobins

    (@tonyrobins)

    Hi @kenth8

    Thanks for the update!

    Seems that it’s a compatibility issue between our plugin and the following rules:

    # php — BEGIN cPanel-generated handler, do not edit
    # Set the “ea-php73” package as the default “PHP” programming language.
    <IfModule mime_module>
    AddHandler application/x-httpd-ea-php73 .php .php7 .phtml
    </IfModule>
    # php — END cPanel-generated handler, do not edit

    We will try to fix it in the upcoming release.

    Kind Regards,

    Plugin Support tonyrobins

    (@tonyrobins)

    Hi @kenth8

    As discussed earlier, we’ve added the rules in the latest release – version 0.9.38.

    Please update the plugin to the latest version and try it again.

    Kind Regards,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Auto-Migration Problem’ is closed to new replies.