scottuk
Forum Replies Created
-
Forum: Plugins
In reply to: [SlimStat Analytics] Ms SQL ServerThanks camu … I a newbie when it comes to this , I have some sql knowledge .. any ideas what I should do
Forum: Networking WordPress
In reply to: No pictures or themesHi Mike , that was a typo … even with the /norway still have an issue with pics etc … any thoughts ?
Forum: Networking WordPress
In reply to: No pictures or themesHi Mika , thanks for the response … here is my web.config
.. my blog has an internal url with a /derblog for the main site a /norway for second site and a /bloguk for a third<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="WordPress Rule 1" stopProcessing="true"> <match url="^index\.php$" ignoreCase="false" /> <action type="None" /> </rule> <rule name="WordPress Rule 2" stopProcessing="true"> <match url="^derblog/([_0-9a-zA-Z-]+/)?wp-admin$" ignoreCase="false" /> <action type="Redirect" url="{R:1}wp-admin/" redirectType="Permanent" /> </rule> <rule name="WordPress Rule 3" stopProcessing="true"> <match url="^" ignoreCase="false" /> <conditions logicalGrouping="MatchAny"> <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" /> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" /> </conditions> <action type="None" /> </rule> <rule name="WordPress Rule 4" stopProcessing="true"> <match url="^derblog/([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*)" ignoreCase="false" /> <action type="Rewrite" url="derblog/{R:1}" /> </rule> <rule name="WordPress Rule 5" stopProcessing="true"> <match url="^derblog/([_0-9a-zA-Z-]+/)?([_0-9a-zA-Z-]+/)?(.*\.php)$" ignoreCase="false" /> <action type="Rewrite" url="derblog/{R:2}" /> </rule> <rule name="WordPress Rule 6" stopProcessing="true"> <match url="." ignoreCase="false" /> <action type="Rewrite" url="index.php" /> </rule> </rules> </rewrite> </system.webServer> </configuration>I didnt have a .htaccess as was not sure if needed on IIS , but i did create one , still the same error , details below
# BEGIN WordPress RewriteEngine On RewriteBase / 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).*) $1 [L] RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L] RewriteRule . index.php [L] # END WordPressForum: Networking WordPress
In reply to: No pictures or themesHi , the sites are all internal not internet facing , if you have the time , i could arrange a gotomeeting session .. pm me for details … appreciate the help
Forum: Networking WordPress
In reply to: No pictures or themesHi Chrishajer , not sure that i can install the latest V4 , as i am using wordpress for Microsoft iis and sql .. the latest version i can find for that is 3.6.1 .. unless some one can tell me how to install v4 .. i did try before but it seemed to break my installation … perhaps i am missing something ?