Viewing 8 replies - 1 through 8 (of 8 total)
  • Hey @abdesign_germany,

    I believe it may be a combination of what is setup in your .htaccess file and the DirectorySlash directive in Apache.

    Let me know if that helps~

    Thread Starter abdesign_germany

    (@abdesign_germany)

    Well, the local based .htaccess contains this:

    [..]
    RewriteEngine On # Turn on the rewriting engine

    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]

    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    Hi,

    I’ve already experienced this problem but solved it.

    I’ve realised that it came from the wp-config.php :

    the var PATH_CURRENT_SITE was like this :
    define('PATH_CURRENT_SITE', '');
    and it had to be :
    define('PATH_CURRENT_SITE', '/');

    Not sure but I think it has resolved the prob.

    Moreover you have to take a look to wp_site table if you still experience issues…

    Hope it will help.

    Regards,

    Ten

    • This reply was modified 7 years, 6 months ago by TenyHarko. Reason: syntax

    Hey @abdesign_germany

    Did the suggestion @tenyharko provide help out with your issue?

    Thread Starter abdesign_germany

    (@abdesign_germany)

    Thanks A LOT @tenyharko!
    On my local wp-config.php the entry was fine with:
    define('PATH_CURRENT_SITE', '/');

    After deploying with duplicator, the newly built wp-config.php on the server had the trouble causing entry:
    define('PATH_CURRENT_SITE', '');

    I just changed it back on the servers wp-config.php and now it’s fine again.

    I don’t know, why duplicator is doing that, but at least I now have a solution for how to fix that problem. Of corse I’d appreciate to see a fix for that in a future update – but for now the issue can be marked as resolved.
    THANKS!

    • This reply was modified 7 years, 6 months ago by abdesign_germany. Reason: spelling issues
    • This reply was modified 7 years, 6 months ago by abdesign_germany. Reason: syntax and tags

    You’re welcome ‘abdesign’,

    happy to hear that it fix your problem.

    I don’t know too why this problem occurs. But I’ve bought yesterday the pro version of this plugin and since it now deals with wp multisite stuff (the lite version of duplicator do it but with trouble – you know it now 🙂 ), I hope it will fix the problem. Did not try it already.

    BR,

    Teny

    Thanks for the updates guys! I’ll check and see why this causing issues in this code line…

    This should now be fixed in 1.1.20, please let me know if you run into anymore issues…

    Thanks

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘duplicator, multisite, missing “/” at network’ is closed to new replies.