Import Blogger blogs?

by Administrator 3. August 2008 11:59

Does this work?

https://sourceforge.net/projects/blogexporter/

Not yet:


2008-08-03 19:27:13,968 DEBUG [BlogExporter.Core.PostParser] Parsing blog 4855217953238557838, post 4841212145285365256: Welcome.
2008-08-03 19:27:13,984 ERROR [BlogExporter.Console.Program] Error while exporting blog
BlogExporter.Core.ExportException: Value not not found: atom:content/text()
   at BlogExporter.Core.XPathResolver.GetValue(XPathNavigator node, String xpath, String defaultValue) in H:\Development\Blog\BlogExporter\BlogExporter.Core\XPathResolver.cs:line 55
   at BlogExporter.Core.PostParser.ParsePost(XPathNavigator blogPost) in H:\Development\Blog\BlogExporter\BlogExporter.Core\PostParser.cs:line 186

 

Tags:
Categories:

"Your login attempt was not successful. Please try again."

by Administrator 3. August 2008 10:17
 
I had the same issue with 1.4 -- I'm running multiple instances of BlogEngine.NET on XP SP3 (1.3 upgraded to 1.4 + one new install) and had this issue trying to add my first local user.

The default web.config contain the same machineKey= value for both my BlogEngine.NET instances.

In your web.config look for this:
<machineKey validationKey="D9F7287 ...

Replace the default machineKey with one from this site: http://aspnetresources.com/tools/keycreator.aspx
I can now add new users to both site instances.
(Source)
Categories:

SQL Agent - job history set number of rows

by Administrator 2. July 2008 00:23
USE [msdb]
GO
EXEC msdb.dbo.sp_set_sqlagent_properties
@jobhistory_max_rows=200000,
@jobhistory_max_rows_per_job=10000
GO
Categories: