• Resolved danielle719

    (@danielle719)


    Hi,
    Hoping for some help here. I recently upgraded to wordpress 3.0. that went smoothly with the auto update. i installed MU, which went smoothly.
    However, when i go to my new blog, which is a sub directory, and i click on “back end” using my super user, i get a “page not found, maybe searching will help” error. it also looks like there is no theme attached.

    my assumption is i’ve messed up somewhere. any help pointing me in the right direction would be great. it looks like for some reason i’m missing the wp-admin page on my new blog. maybe some sort of weird permission issue i may have missed. i’m also hosted at a small orange, if that means anything.

    normal blog address working fine: https://one-more-exit.com/blog

    new “site” blog not working: https://one-more-exit.com/blog/photo

    thanks!

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

    (@ipstenu)

    ?????? Advisor and Activist

    Did you update the .htaccess file correctly?

    Go to your Tools -> Network tab in the admin section and you should see what it should be for your site.

    I THINK yours would be this:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /blog/
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    </IfModule>
    # END WordPress

    Or the htaccess file is not being read.

    Thread Starter danielle719

    (@danielle719)

    thanks for the tip, ipenstu.
    i think i did my htaccess file properly. but i don’t have a “network” option under tools.

    my htaccess file looks like this:

    RewriteEngine On
    RewriteBase /blog/
    RewriteRule ^index\.php$ - [L]
    
    # uploaded files
    RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^ - [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    andrea_r, this may be a n00b question, but how can I tell if my htacess file is not being read?

    thanks for your help!

    maybe some sort of weird permission issue i may have missed.

    Maybe you could check the protection settings on your .htaccess file? It’s easy to set these so that Apache can’t read it.

    how can I tell if my htacess file is not being read?

    If it’s not being read because of a protection problem, you might expect to see that being recorded in a system error log file.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Also just check what the permissions on the file are ??

    Thread Starter danielle719

    (@danielle719)

    the permissions on the htaccess file are 755.

    should it be something else?

    thanks!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    No, that’s good.

    And this doesn’t work https://one-more-exit.com/blog/photo/wp-admin so it’s definitely the .htaccess not passing things along.

    Can you check your error logs and see if anything related to that last URL I gave you comes up?

    Thread Starter danielle719

    (@danielle719)

    i checked my control panel for errors:
    this came up:

    [Mon Jul 19 18:30:37 2010] [error] [client *IP address removed*] client denied by server configuration: /home/danielle/public_html/blog/.htaccess

    so maybe it is something with the htaccess?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Is what you quoted the complete .htaccess? Also is it the one in the BLOG folder and not in the public_html folder?

    Thread Starter danielle719

    (@danielle719)

    what i quoted above is the complete .htaccess file.
    that is the one in the public_html folder.

    i will double check when i get home tonight. there is no htaccess file in the BLOG directory. i can’t make one in there while i’m at work because of firewall issues, but i’ll add one when i’m at home.

    that might be my problem! thanks!!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Interesting. The error log says it’s been denied by /home/danielle/public_html/blog/.htaccess, which is why I asked. Logically something’s there.

    Thread Starter danielle719

    (@danielle719)

    well, that was weird.
    there was no htaccess file in my blog directory.
    maybe i moved it somehow, but i added it, and now i can see my control panel.

    thanks ipstenu, i really appreciate your help!!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘can not log into new blog back end’ is closed to new replies.