# Sunday, 02 April 2006

To allow large attachments to be uploaded add change of override the MaxRequestLength parameter in Machine.config or Web.config.  For instance I added the following value to Web.config to allow uploads of up to 8MB:

<httpRuntime maxRequestLength="8192" />

So the full line read:

<httpRuntime useFullyQualifiedRedirectUrl="true" maxRequestLength="8192" />

See http://support.microsoft.com/default.aspx?scid=kb;en-us;Q295626

Sunday, 02 April 2006 14:39:37 (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Sunday, 05 February 2006

Download this zip and extract into dasBlog root directory.  Remember to give NETWORK SERVICE (2003) read access to these files and the \code directory.

Then add http://.../PublicReferrers.aspx link to a sidebar in homeTemplate.blogtemplate.

Courtesy of jelle druyts

Sunday, 05 February 2006 14:52:21 (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback

To have certain links opening in a new window (and to be HTML 4.0 & XHTML 1.0 Strict compliant) use the following procedure:

1.   Create text file "external.js" containing:

function externalLinks() { 
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;

and save this in a new directory "\scripts"

2.   Edit header secion of "homeTemplate.blogtemplate" to contain:

<script type="text/javascript" src="scripts/external.js"></script>

3.    Using dasBlog's native editor (in HTML section) edit links to be in the following format:

<a href="document.html" rel="external">external link text</a>

For example:

BBC News site in new window

 

Update Regardless of tab settings, in Firefox links always seem to want to open in the same tab. The only way to force them to open in a new tab is to include the javascript in the document rather than a link to an external .js file.
Sunday, 05 February 2006 13:45:18 (GMT Standard Time, UTC+00:00)  #    Disclaimer  |  Comments [0]  |  Trackback
# Wednesday, 20 July 2005

After logging in, be sure to visit all the options under Configuration in the Admin Menu Bar above. There are 26 themes to choose from, and you can also create your own.

 

Wednesday, 20 July 2005 08:00:00 (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [0]  |  Trackback