• Seems like a simple way to retina-fy your site, however, for me my site is brought down every time this is activated. This is due to the edits made to the .htaccess by the plugin. It’s a shame as it had a lot of potential, being far more simplistic than the other retina plugins out there. I hope this gets fixed soon.

    Mike

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author greggh3

    (@greggh3)

    I’m happy to help you get this going. What errors are you seeing? Where are you hosted?

    Thread Starter Handyman Interactive

    (@handyman-interactive)

    I get a 500-internal server error, because of the .htaccess, which get’s rewritten to:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    # BEGIN RETINA_IMAGE_SUPPORT
    <IfModule mod_rewrite.c>
    Options -MultiViews
    RewriteEngine On
    RewriteCond %{HTTP_COOKIE} HTTP_IS_RETINA [NC]
    RewriteCond %{REQUEST_FILENAME} !@2x
    RewriteRule ^(.*)\.(gif|jpg|png)$ $1@2x.$2
    # if @2x isn't available fulfill the original request
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)@2x\.(gif|jpg|png)$ $1.$2
    </IfModule>
    
    # END RETINA_IMAGE_SUPPORT
    Plugin Author greggh3

    (@greggh3)

    Where is your website hosted?

    In order to use the Options you need the AllowOverride Options privledge.

    Can you look at your error log file?

    Thread Starter Handyman Interactive

    (@handyman-interactive)

    Sorry Gregg, will have a look into this later when I get the chance. Thanks for the help by the way, much appreciated. I’ll post here with an update.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Brings down site on activation…’ is closed to new replies.