Forums

[Plugin: Wordpress Download Monitor] htaccess gives 500 error (3 posts)

  1. banesto
    Member
    Posted 8 months ago #

    there should be somekind of upgrade to that permalink update feature, because after changing URL settings, wordpress gives 500 server error.

    i resolved this manually like this:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    
    #Options +FollowSymLinks
    
    RewriteEngine On
    RewriteBase /
    RewriteRule ^download/(.*)$ wp-content/plugins/download-monitor/download.php?id=$1 [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    </IfModule>
    
    # END WordPress

    http://wordpress.org/extend/plugins/download-monitor/

  2. drekyn
    Member
    Posted 8 months ago #

    i'm having a 500 error too but this fix doesn't work for me...

    i explain the problem in this topic

    thank you ;)

  3. thangmao
    Member
    Posted 7 months ago #

    Your .htaccess file should be

    # BEGIN WordPress

    RewriteEngine On
    RewriteRule ^download/(.*)$ wp-content/plugins/download-monitor/download.php?id=$1 [L]

    <IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    I haved same prob when add #Options +FollowSymLinks to the .htaccess file

Reply

You must log in to post.

About this Topic