pixelatedkarma
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadYay so glad I figured it out – Should I maybe make another post saying how I bypassed it all having an admin directory not named wp-? Since I’m sure I won’t be the only one that ever has this issue?
Now I just have to figure out how to set a different default theme everytime I make a new site.
Thanks alot I really appreciate all of this.
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadNo I didn’t – I used firebug and I can see that it is pulling the css from test/wp-content/themes/twentyten/.
What I am not understanding as of right now is why it isn’t loading the css-I’m a completely newbie to wp multisite but after reading the sticky that Andrea posted saying that basically there is no static files created for sub-sites I cannot wrap my head around how I can even begin troubleshooting where the disconnect exists between the web browser(s) (since I use ie and firefox) and the files themselves.
Typically if they were static files you’d think that the browser would be looking for the css files under:
wp-content/themes/twentyten/being that that is my root directory where the theme physically exists but since I am not sure how wp dynamically grabs the theme from the root directory to make it:
test/wp-content/themes/twentyten/Now this all leads me to believe that whatever file is calling the wp-content/themes/twentyten/ folders on the test site is not calling the files correctly if you know what I mean.
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadI reviewed my .htaccess and started making some headway – got the main image appearing now –
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]As you see I bolded the spot that needed fixing – I’m assuming this is a pre-pend for where it is looking for the content, admin, and includes……So now I just need to get the css to display.
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadI was just curious – when you install multisite what files does it affect? ie. Does it automatically add in a few lines of code here and there to other files?
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadNot to be a jerk ipsten but “I do however wish to note that my wp-admin directory is not labelled wp-admin” – 3rd paragraph.
Thanks for the attempt at helping me it’s greatly appreciated but I just got around to trying your fix out and it didnt help =\……So I dunno I guess I’ll keep searching google for solutions.
I also did notice you took the admin out of one of your rewrite rules can you explain why(the one that has includes|etc)?
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadYa I removed them because I changed the name of my wp-admin folder.
Since I have renamed the wp-admin I am just calling it admin for now-so no it isn’t a typo.
Forum: Networking WordPress
In reply to: Another multi-site installation problem threadMy .htaccess:
# Use PHP5 as default
AddHandler application/x-httpd-php5 .php# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) includes/ms-files.php?file=$2 [L]# add a trailing slash to /admin
RewriteRule ^([_0-9a-zA-Z-]+/)?admin$ $1admin/ [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 WordPressI looked at your sticky Andrea and I contacted my webspace provider however they said that everything is running correctly and that it is calling the .htaccess file. I have not really played much with .htaccess files much in the past so I’m not enlightened on how to double check these things.