Problem installing
-
I wanted to install this plugin on my weblog to protect the PDF files I have in my media file. Since I don’t use Pretty Permalinks, Media Vault gives instructions how to adjust .htaccess with a code.
I followed all instructions, but still am not able to enable Media Vault. Underneath is a copy of the part in which I put the code presented by Media Vault (only highlighted for this message).
Can you tell me what I did wrong?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
# Media Vault Rewrite Rules
RewriteRule ^wp-content/uploads(/_mediavualt/.*\.\w+)$ index.php?mgjp_mv_file=$1 [QSA,L]
RewriteCond %{QUERY_STRING} ^(?:.*&)?mgjp_mv_download=safeforce(?:&.*)?$
RewriteRule ^wp-contnet/uploads(.*\.\w+)$ index.php?mgjp_mv_file-$1 [QSA,L]
# Media Vault Rewrite Rules End
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
- The topic ‘Problem installing’ is closed to new replies.