Viewing 9 replies - 1 through 9 (of 9 total)
  • That is strange… It looks like your including or not including ‘www’ correctly… The comparison on the second step is an exact comparison.

    What values are set for your Old URL value and what value are you setting for you New URL on step 2 of the installer?

    Hi visgro,

    Any update on this?

    Thread Starter visgro

    (@visgro)

    I discovered Serverpress Desktopserver. Works fantastic for moving sites from my local box to server. Exactly what I was looking for. Problem solved.

    Look forward to seeing Duplicator evolve. Keep up the good work.

    Thanks.

    Very Nice! Glad you things working… Hopefully next time ??

    imageDESIGN

    (@imagedesign)

    Just had the same issue with a domain doubling up. The cause was within the wp-config.php file which was moved from a MediaTemple hosted setup. The updater turned:

    define('WP_HOME', 'https://' . $_SERVER['HTTP_HOST']);
    define('WP_SITEURL', 'https://' . $_SERVER['HTTP_HOST']);
    define('WP_CONTENT_URL', '/wp-content');
    define('DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST']);

    into:

    define('WP_HOME', 'https://mydomain.com' . $_SERVER['HTTP_HOST']);
    define('WP_SITEURL', 'https://mydomain.com' . $_SERVER['HTTP_HOST']);
    define('WP_CONTENT_URL', '/wp-content');
    define('DOMAIN_CURRENT_SITE', $_SERVER['HTTP_HOST']);

    You can see why they were doubling now. I just removed these define’s as none were needed and the problem was then resolved.

    Cory Lamle

    (@corylamleorg)

    Thanks @imagedesign for the overview! I hope to have a better parsing engine someday to help resolve this issue…

    I had exactly the same problem, but again deleting the defines sorted it.

    Loved the plugin, i’d been having real problems but your plugin made it super easy! Thanks!

    also, if anyone is struggling with how to use it, there’s a youtube video which I found really useful:

    Thanks for that info @Cocker27

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Duplicator duplicates domain name’ is closed to new replies.