• Hello-

    Here’s my .htaccess file, which is just the standard Network install + the rules that the Media Vault Activation helper asked me to add, and some php setting modifications:

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    
    # Media Vault Rewrite Rules
    RewriteRule ^wp-content/uploads(?:/sites/[0-9]+)?(/_mediavault/.*\.\w+)$ index.php?mgjp_mv_file=$1 [QSA,L]
    RewriteCond %{QUERY_STRING} ^(?:.*&)?mgjp_mv_download=safeforce(?:&.*)?$
    RewriteRule ^wp-content/uploads(?:/sites/[0-9]+)?(/.*\.\w+)$ index.php?mgjp_mv_file=$1 [QSA,L]
    # Media Vault Rewrite Rules End
    
    # add a trailing slash to /wp-admin
    RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule ^(wp-(content|admin|includes).*) $1 [L]
    RewriteRule ^(.*\.php)$ $1 [L]
    RewriteRule . index.php [L]
    
    # END WordPress
    
    php_value upload_max_filesize 100M
    php_value post_max_size 100M

    I’m getting the error about my re-write settings not being correct. I haven’t changed my upload directory at all- when I go to check it in the site settings the field is blank. My uploads have been going to wp-uploads. One thing is the my wp_upload_dir actually returns an array, which includes upload directories for the current month/year as well as a base directory which is just wp-uploads.

    Any help would be much appreciated.
    Dan

    https://ww.wp.xz.cn/plugins/media-vault/

Viewing 1 replies (of 1 total)
  • Thread Starter dan-jones

    (@dan-jones-1)

    One thing that I noticed is that the function that the mv-extra-activation-steps.php file uses to check for the rewrite rules, “mgjp_mv_check_rewrite_rules();” isn’t defined anywhere in the plugin that I could find by downloading the files and using grep. Could that be causing the issue?

Viewing 1 replies (of 1 total)

The topic ‘Problem fulling activating with multisite’ is closed to new replies.