Viewing 14 replies - 16 through 29 (of 29 total)
  • Just to help those out, you can overwrite the content of the latest broken upgrade files with the following old version code (0.5.4.3) I stored in a gist on github:

    https://gist.github.com/mkormendy/5d7ca25b38ae8bbd265d

    NOTES:
    – a reminder that sunrise.php is found in the root of your wp-content folder
    – I have changed the version code of the plugin to match the latest version (0.5.5) posted on www.remarpro.com so that I am not bothered until a verified fix is available in a newer version

    PS. I am in no way affiliated with this plugin or responsible for any damage to your system should something go wrong. However, the code is a byte for byte match to the old version code (0.5.4.3) aside from the version number change.

    Hi all,

    It seems that site_url() does not output the “mapped” site url but the wp-original one.

    I guess this was introduced when the new “redirect admin pages” options were put in the code.

    Setting options “Redirect administration pages” (option 1) plus “Map links in /wp-admin/” resolves it for me.

    Don’t know about any side effects for admin.

    @wpmuguru the pre_option_siteurl and pre_option_home filters are now only added when the dm_map_in_admin option is set in domain_mapping.php around line 688.

    They used to be always set when DOMAIN_MAPPING was defined.

    Thanks!

    Setting options “Redirect administration pages” (option 1) plus “Map links in /wp-admin/” resolves it for me.

    Thanks joost. That seems to have fixed it for me!

    Setting options “Redirect administration pages” (option 1) plus “Map links in /wp-admin/” resolves it for me.

    Thanks so much joost de keijzer!!!! That solved my problem right away! I’m so glad I didn’t have to revert.

    Ok. I was wrong. That didn’t fix everything for me. We ended up having to revert back to the previous version. We have a multi level site with multiple domains. There were problems on the sub domains with saved passwords and the logout process pushed them back to the main domain. Plus, the preview button wasn’t allowing us to preview changes. We kept getting a permissions error. The domain for the preview wasn’t right. Too many problems with this update so we’ve reverted to the previous version. Hopefully they will either fix the bugs, or if these aren’t bugs then give us better update instructions.

    Hello Ron,
    Is there an estimate when the latest(0.5.5) version will be fixed or we should downgrade to 0.5.4.3?

    Agreed that fixed the look of the front end, but now we are having issues with logins. Trying to login via one of the sub sites and it pushes to the top level site to login and then there is a login loop.

    Found that for me just added on lines 694 the lines that had been moved fixed it :

    `add_filter( ‘theme_root_uri’, ‘domain_mapping_themes_uri’, 1 );
    add_filter( ‘the_content’, ‘domain_mapping_post_content’ );`

    And I changed it by :

    `add_filter( ‘theme_root_uri’, ‘domain_mapping_themes_uri’, 1 );
    add_filter( ‘pre_option_siteurl’, ‘domain_mapping_siteurl’ );
    add_filter( ‘pre_option_home’, ‘domain_mapping_siteurl’ );
    add_filter( ‘the_content’, ‘domain_mapping_post_content’ );`

    Found that for me just added on lines 694 the lines that had been moved fixed it :

    add_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 );
    add_filter( 'the_content', 'domain_mapping_post_content' );

    And I changed it by :

    add_filter( 'theme_root_uri', 'domain_mapping_themes_uri', 1 );
    add_filter( 'pre_option_siteurl', 'domain_mapping_siteurl' );
    add_filter( 'pre_option_home', 'domain_mapping_siteurl' );
    add_filter( 'the_content', 'domain_mapping_post_content' );

    Thanks that fixed it for me ??

    @RonRennick I see an update is available now, 0.5.5.1. Does this address and fix the issues? Can anyone verify? Can we also get an update to the changelog on the WordPress Plugin page reflect the details of the most recent changes?

    @mkormendy
    all ok on me with 0.5.5.1. MU subdomain setup

    0.5.5.1 seems fine for me so far also.

Viewing 14 replies - 16 through 29 (of 29 total)
  • The topic ‘problem with URLs after updrade’ is closed to new replies.