• I’m using 3.0.1 with multisite enabled. Everything works great for my main site, but for the network sites I get this strange, truncated version of the admin panel.

    Mostly it isn’t a big deal, but the problem I’m having is that the visual elements to the menu buttons are broken. So, for example, in the WYSIWYG post editor, I just have a bunch of grey boxes. For visual options with my template, instead of the preview the developer intended, I just get blue boxes with red x’es through them.

    Any ideas on how to fix this?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Sounds like your .htaccess isn’t set up right. What is it?

    First step is to disable all the plugins and see if that clears up the issue.

    Thread Starter Karen Zook

    (@karenzook)

    I just tried disabling plugins, and no luck there.

    ipstenu, what do you mean “what is it?” re: .htaccess? I haven’t made any changes to it, other than the ones necessary to set up multisite in the first place. Is there something else I should change?

    I’m going afk for a few, but I”ll be back. Thanks for the help!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    I mean ‘what’s in your .htaccess?’ You may have made an incorrect change 🙂

    And a link to your site. 🙂 (just makes it faster)

    Thread Starter Karen Zook

    (@karenzook)

    @andrea_r: the site is lapis.classicalfieldwork.com; the site seems to be working fine from the user’s perspective (not that I’ve put much on it yet, because the admin side is so wonky).

    @ipstenu: Ha, okay. Here’s my entire .htaccess file’s contents:

    # Begin hotlink protection #
    RewriteEngine on
    RewriteCond %{HTTP_REFERER} !^http://classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://blog.classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.blog.classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://wiki.classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.wiki.classicalfieldwork.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://classicalfieldworkco.fatcow.com/.*$ [NC]
    RewriteCond %{HTTP_REFERER} !^http://www.classicalfieldworkco.fatcow.com/.*$ [NC]
    RewriteRule .(gif|jpg|png)$ – [F]
    # End hotlink protection #

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

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

    # uploaded files
    RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ – [L]
    RewriteRule . index.php [L]

    # END WordPress

    So, for example, in the WYSIWYG post editor, I just have a bunch of grey boxes. For visual options with my template, instead of the preview the developer intended, I just get blue boxes with red x’es through them.

    and

    # Begin hotlink protection #

    are related. Take that section out.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Yeah. Remove the whole hotlink protection for now.

    I actually JUST wrote a blog post about hotlink protection. Try the tips in here and see if that helps you craft a better one 🙂 http://code.ipstenu.org/hotlink-protection/

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Image error within admin panel’ is closed to new replies.