A few words on ISP hosting of dasblog:
(You should only use the dasblog “web” files for upload installation to a host, keep the directory layout/structure as provide in the zip file)
ASP.NET 1.1
Hosts who offer ASP.NET impersonation:
If your host supports asp.net impersonation there are no permission configuration issues. The only task required of these hosts is to be sure your dasblog install directory is a vdir (Virtual Directory) also know as a (ASP.NET Application directory). If you place your blog in the domain root, this will normally be a vdir by default.
Non ASP.Net impersonation hosts:
IIS5 Sites
-
(IWAM xxx): On IIS 5.0 (Windows 2000), the account used to execute web applications (IWAM xxx) needs read/write permissions to the content, siteconfig, and logs subdirectories.
-
({machinename}\ASPNET): The ASP.NET worker process identity, usually “{machinename}\ASPNET” on IIS5.0 (Windows 2000 and Windows XP) also need read/write access to the content, siteconfig, and logs subdirectories.
IIS6 Sites
-
(“NETWORK SERVICE”): on IIS 6.0 (Windows Server 2003), also need read/write access to the content, siteconfig, and logs subdirectories.
Permission gotcha’s: (These can apply to any host situation!)
On some hosts the permissions for files in directories does not inherit properly. To insure that you do not have this problem, you should install dasblog using the following process.
ASP.NET 2.0
Hosts running DasBlog on ASP.NET 2.0
If you are running DasBlog on ASP.NET 2.0, all the preceding applies but you will also need to modify your supplied web.config file to customize your installation for ASP.NET 2.0.
See the following web.config sections, make the changes documented:
<!-- ***IMPORTANT*** If you are using ASP.NET 2.0 to host dasBlog
you must uncomment the httpCookies section below,
as dasBlog was written for ASP.NET 1.1 and will
automatically add the HttpOnly flag to cookies automatically -->
<!--- <httpCookies httpOnlyCookies="false"/> --->
Note: (The comments tags are the <!--- and the trailing --->)
<!-- ***IMPORTANT*** If you are using ASP.NET 2.0 to host dasBlog
you must add cookieless="UseCookies" to the <forms>
element below! -->
<forms name=".DASBLOGAUTH" cookieless="UseCookies" protection="All" timeout="60" path="/"/>
Your entry should look something like the above:
All IIS Sites:
After you have successfully uploaded all your web files retaining the directory structure that was defined in the download zip file, you the user, or maybe some ISP Hosts who setup dasblog for you will need to accomplish the following:
Example <Root>http://domain.com/dasblogdirectory</Root>
If all the above have been accomplished correctly, then you should now have a functional dasblog system.