Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Looks like I have 2 accounts here, mmm I need to fix that.

    Hi Andrea_r
    the site is https://sitemaster.com.au

    Hi Rich ‘elfin’ Pedley
    I see what you mean but when I upload an image the path is missing the full path to the individual site,

    I reinstalled wordpress and now it does upload and retrieve images but not to the individual site only to the ‘files/year/month/’

    Hi Andrea_r
    I checked the htaccess and it looks fine (I am running Version 3 Multiuser)

    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]

    —————————-

    I am Still looking for the answer

    Thread Starter Frank Warwick

    (@thewackonerd)

    looks like it was a browser issue, all is well

    Forum: Installing WordPress
    In reply to: Install

    Victor, make sure you change all your login details that you just shared with us all so you don’t get broken into and loose everything. Its like leaving the keys in your front door.

    Thread Starter Frank Warwick

    (@thewackonerd)

    I also noticed that there is no .htaccess file, is this correct?

    Thread Starter Frank Warwick

    (@thewackonerd)

    please do not use this, for some reason it duplicated …
    Use the other with the same question

    Can an admin please remove this

    Thanks hamzahali
    I thought I had done that, … and now I have the message has gone.

    Only one thing more and thats the path to the backend via the admin.
    I guess we can close this and I will ope a new post.

    Thanks to all for your help

    Hi Ipstenu
    I replaced the .htaccess with the one you provided and the message is still at the top of all my admin pages.

    Another thing that I feel is related is that I can not login to any of my other hosted sites as admin via the admin ie. Superadmin/sites/backend

    I can get into the Superadmin/sites/edit

    The path to the edit is working but not for backend for each of my sites.

    The link to the backend points to wp-admin for all my sites

    Any ideas?

    Thanks Ipstenu
    I have been using WPMU for many versions, I am not sure how many.

    I did make the change you posted, everything still works but the message is still there.

    So I am still after a fix if anyone has one.

    Hi, I upgraded from WPMU 2.9.2 to WP 3, all went fine (with great relief) I went and changed the

    #uploaded files
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    to

    #uploaded files
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]

    but I still have the message at the top of the admin

    So here is my full .htaccess (minus the site name) – I am wondering if I have stuff in there that I do not need – hope someone can help me, thanks

    suPHP_ConfigPath /home/sitename/public_html
    
    RewriteEngine On
    RewriteBase /
    
    RewriteCond %{HTTP_COOKIE} !^.*1b89f55297a947d7973f3b06bbcd6fd4.*$
    RewriteRule ^wp-comments-post.php - [F,L]
    
    # as you're using WordPress MU, copy these lines into your .htaccess file, making sure the paths match the location of the signup form.
    
    RewriteCond %{HTTP_COOKIE} !^.*1b89f55297a947d7973f3b06bbcd6fd4.*$
    RewriteRule ^wp-signup.php - [F,L]
    
    #uploaded files
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
    
    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule  ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    
    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>
    
    #If you're feeling adventerous, you can add the following two lines before the regular WordPress mod_rewrite rules in your .htaccess file. They will stop comments from spambots before they reach the database or are executed in PHP:
    
    RewriteCond %{HTTP_COOKIE} !^.*1b89f55297a947d7973f3b06bbcd6fd4.*$
    RewriteRule ^wp-comments-post.php - [F,L]
    
    #As you're using WordPress MU, copy these lines into your .htaccess file, making sure the paths match the location of the signup form.
    
    RewriteCond %{HTTP_COOKIE} !^.*1b89f55297a947d7973f3b06bbcd6fd4.*$
    RewriteRule ^wp-signup.php - [F,L]
    
    # BEGIN W3 Total Cache
    <IfModule mod_setenvif.c>
        SetEnvIfNoCase Host ^(www\.)?([a-z0-9\-\.]+\.[a-z]+)\.?(:[0-9]+)?$ DOMAIN=$2
        SetEnvIfNoCase Accept-Encoding (gzip) APPEND_EXT=.$1
    </IfModule>
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteCond %{REQUEST_URI} \/$
        RewriteCond %{REQUEST_URI} !(\/wp-admin\/|\/xmlrpc.php|\/wp-(app|cron|login|register).php|wp-.*\.php|index\.php) [OR]
        RewriteCond %{REQUEST_URI} (wp-comments-popup\.php|wp-links-opml\.php|wp-locations\.php) [NC]
        RewriteCond %{REQUEST_METHOD} !=POST
        RewriteCond %{QUERY_STRING} =""
        RewriteCond %{HTTP_COOKIE} !(comment_author|wp-postpass|wordpress_\[a-f0-9\]\+|wordpress_logged_in) [NC]
        RewriteCond %{HTTP_USER_AGENT} !(bot|ia_archive|slurp|crawl|spider) [NC]
        RewriteCond /home/sitename/public_html/wp-content/w3tc-%{ENV:DOMAIN}/pgcache/$1/_default_.html%{ENV:APPEND_EXT} -f
        RewriteRule (.*) wp-content/w3tc-%{ENV:DOMAIN}/pgcache/$1/_default_.html%{ENV:APPEND_EXT} [L]
    </IfModule>
    # END W3 Total Cache

    I fixed the issue by adding in a .htaccess in the wp-admin
    here it is.

    <Files ~ “.*\..*”>
    order allow,deny
    deny from all
    </Files>

    # secure htaccess file
    <Files .htaccess>
    order allow,deny
    deny from all
    </Files>

    Thread Starter Frank Warwick

    (@thewackonerd)

    Yep, I will but with so many WPMU issues here and the help within WPMU taking me to this forum I thought it was a good place to start, hey .. that would be a good fix, get the WPMU help to point to the WPMU pages …

    I have the same problem, Kalkro, did you find out how to fix this?

    Frank Warwick

    (@thewackonerd)

    Hey I worked it out…. I had a conflict with my plugins so I un installed them all and then installed them all one at a time to find the conflict. Cool bananas
    https://www.icontoday.com – tag, your it!

    thanks

Viewing 15 replies - 1 through 15 (of 16 total)