PageRenderTime 54ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/setup/MySQL/MySQLSetup2.5.0.sql

#
SQL | 454 lines | 418 code | 35 blank | 1 comment | 0 complexity | b57705cdf52e77420bab6adcfbd69500 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. CREATE TABLE `be_Blogs` (
  2. `BlogRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  3. `BlogId` varchar(36) NOT NULL DEFAULT '',
  4. `BlogName` varchar(255) NOT NULL DEFAULT '',
  5. `Hostname` varchar(255) NOT NULL DEFAULT '',
  6. `IsAnyTextBeforeHostnameAccepted` tinyint(1) NOT NULL DEFAULT 1,
  7. `StorageContainerName` varchar(255) NOT NULL DEFAULT '',
  8. `VirtualPath` varchar(255) NOT NULL DEFAULT '',
  9. `IsPrimary` tinyint(1) NOT NULL DEFAULT 0,
  10. `IsActive` tinyint(1) NOT NULL DEFAULT 1,
  11. PRIMARY KEY (`BlogRowId`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  13. CREATE TABLE `be_Categories` (
  14. `CategoryRowID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  15. `BlogID` varchar(36) NOT NULL DEFAULT '',
  16. `CategoryID` varchar(36) NOT NULL DEFAULT '',
  17. `CategoryName` varchar(50) DEFAULT NULL,
  18. `Description` varchar(200) DEFAULT NULL,
  19. `ParentID` varchar(36) DEFAULT NULL,
  20. PRIMARY KEY (`CategoryRowID`)
  21. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  22. CREATE TABLE `be_DataStoreSettings` (
  23. `DataStoreSettingRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  24. `BlogId` varchar(36) NOT NULL DEFAULT '',
  25. `ExtensionType` varchar(50) NOT NULL,
  26. `ExtensionId` varchar(100) NOT NULL,
  27. `Settings` text NOT NULL,
  28. PRIMARY KEY (`DataStoreSettingRowId`)
  29. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  30. CREATE TABLE `be_Pages` (
  31. `PageRowID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  32. `BlogID` varchar(36) NOT NULL DEFAULT '',
  33. `PageID` varchar(36) NOT NULL DEFAULT '',
  34. `Title` varchar(255) NOT NULL DEFAULT '',
  35. `Description` text,
  36. `PageContent` longtext,
  37. `Keywords` text,
  38. `DateCreated` datetime DEFAULT NULL,
  39. `DateModified` datetime DEFAULT NULL,
  40. `IsPublished` tinyint(1) DEFAULT NULL,
  41. `IsFrontPage` tinyint(1) DEFAULT NULL,
  42. `Parent` varchar(64) DEFAULT NULL,
  43. `ShowInList` tinyint(1) DEFAULT NULL,
  44. `Slug` varchar(255) DEFAULT NULL,
  45. `IsDeleted` tinyint(1) NOT NULL DEFAULT '0',
  46. PRIMARY KEY (`PageRowID`)
  47. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  48. CREATE TABLE `be_PingService` (
  49. `PingServiceID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  50. `BlogID` varchar(36) NOT NULL DEFAULT '',
  51. `Link` varchar(255) DEFAULT NULL,
  52. PRIMARY KEY (`PingServiceID`)
  53. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  54. CREATE TABLE `be_Posts` (
  55. `PostRowID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  56. `BlogID` varchar(36) NOT NULL DEFAULT '',
  57. `PostID` varchar(36) NOT NULL DEFAULT '',
  58. `Title` varchar(255) NOT NULL DEFAULT '',
  59. `Description` text NOT NULL,
  60. `PostContent` longtext NOT NULL,
  61. `DateCreated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  62. `DateModified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  63. `Author` varchar(50) NOT NULL DEFAULT '',
  64. `IsPublished` tinyint(1) NOT NULL DEFAULT '0',
  65. `IsCommentEnabled` tinyint(1) NOT NULL DEFAULT '0',
  66. `Raters` int(10) UNSIGNED NOT NULL DEFAULT '0',
  67. `Rating` float NOT NULL DEFAULT '0',
  68. `Slug` varchar(255) NOT NULL DEFAULT '',
  69. `IsDeleted` tinyint(1) NOT NULL DEFAULT '0',
  70. PRIMARY KEY (`PostRowID`)
  71. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  72. CREATE TABLE `be_Profiles` (
  73. `ProfileID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  74. `BlogID` varchar(36) NOT NULL DEFAULT '',
  75. `UserName` varchar(100) NOT NULL,
  76. `SettingName` varchar(200) NOT NULL,
  77. `SettingValue` text NOT NULL,
  78. PRIMARY KEY (`ProfileID`)
  79. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  80. CREATE TABLE `be_Roles` (
  81. `RoleID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  82. `BlogID` varchar(36) NOT NULL DEFAULT '',
  83. `Role` varchar(100) NOT NULL,
  84. PRIMARY KEY (`RoleID`)
  85. ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
  86. CREATE TABLE `be_Settings` (
  87. `SettingRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  88. `BlogID` varchar(36) NOT NULL DEFAULT '',
  89. `SettingName` varchar(50) NOT NULL,
  90. `SettingValue` text,
  91. PRIMARY KEY (`SettingRowId`)
  92. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  93. CREATE TABLE `be_StopWords` (
  94. `StopWordRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  95. `BlogId` varchar(36) NOT NULL DEFAULT '',
  96. `StopWord` varchar(50) NOT NULL,
  97. PRIMARY KEY (`StopWordRowId`)
  98. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  99. CREATE TABLE `be_Users` (
  100. `UserID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  101. `BlogID` varchar(36) NOT NULL DEFAULT '',
  102. `UserName` varchar(100) DEFAULT NULL,
  103. `Password` varchar(255) DEFAULT NULL,
  104. `LastLoginTime` datetime DEFAULT '0000-00-00 00:00:00',
  105. `EmailAddress` varchar(100) DEFAULT NULL,
  106. PRIMARY KEY (`UserID`)
  107. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
  108. CREATE TABLE `be_UserRoles` (
  109. `UserRoleID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  110. `BlogID` varchar(36) NOT NULL DEFAULT '',
  111. `UserName` varchar(100) NOT NULL DEFAULT '',
  112. `Role` varchar(100) NOT NULL DEFAULT '',
  113. PRIMARY KEY (`UserRoleID`)
  114. ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
  115. CREATE TABLE `be_PostCategory` (
  116. `PostCategoryID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  117. `BlogID` varchar(36) NOT NULL DEFAULT '',
  118. `PostID` varchar(36) NOT NULL DEFAULT '',
  119. `CategoryID` varchar(36) NOT NULL DEFAULT '',
  120. PRIMARY KEY (`PostCategoryID`)
  121. ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
  122. CREATE TABLE `be_PostComment` (
  123. `PostCommentRowID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  124. `BlogID` varchar(36) NOT NULL DEFAULT '',
  125. `PostCommentID` varchar(36) NOT NULL DEFAULT '',
  126. `PostID` varchar(36) NOT NULL DEFAULT '',
  127. `ParentCommentID` varchar(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000',
  128. `CommentDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  129. `Author` varchar(255) NOT NULL DEFAULT '',
  130. `Email` varchar(255) NOT NULL DEFAULT '',
  131. `Website` varchar(255) NOT NULL DEFAULT '',
  132. `Comment` text NOT NULL,
  133. `Country` varchar(255) NOT NULL DEFAULT '',
  134. `Ip` varchar(50) NOT NULL DEFAULT '',
  135. `IsApproved` tinyint(1) NOT NULL DEFAULT '0',
  136. `ModeratedBy` varchar(100) DEFAULT NULL,
  137. `Avatar` varchar(255) DEFAULT NULL,
  138. `IsSpam` tinyint(1) NOT NULL DEFAULT '0',
  139. `IsDeleted` tinyint(1) NOT NULL DEFAULT '0',
  140. PRIMARY KEY (`PostCommentRowID`)
  141. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  142. CREATE TABLE `be_PostNotify` (
  143. `PostNotifyID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  144. `BlogID` varchar(36) NOT NULL DEFAULT '',
  145. `PostID` varchar(36) NOT NULL DEFAULT '',
  146. `NotifyAddress` varchar(255) DEFAULT NULL,
  147. PRIMARY KEY (`PostNotifyID`)
  148. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  149. CREATE TABLE `be_PostTag` (
  150. `PostTagID` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  151. `BlogID` varchar(36) NOT NULL DEFAULT '',
  152. `PostID` varchar(36) NOT NULL DEFAULT '',
  153. `Tag` varchar(50) DEFAULT NULL,
  154. PRIMARY KEY (`PostTagID`)
  155. ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;
  156. CREATE TABLE IF NOT EXISTS `be_BlogRollItems` (
  157. `BlogRollRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  158. `BlogId` varchar(36) NOT NULL DEFAULT '',
  159. `BlogRollId` varchar(36) NOT NULL,
  160. `Title` varchar(255) NOT NULL,
  161. `Description` longtext DEFAULT NULL,
  162. `BlogUrl` varchar(255) NOT NULL,
  163. `FeedUrl` varchar(255) DEFAULT NULL,
  164. `Xfn` varchar(255) DEFAULT NULL,
  165. `SortIndex` int(10) NOT NULL,
  166. PRIMARY KEY (`BlogRollRowId`)
  167. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  168. CREATE TABLE IF NOT EXISTS `be_Referrers` (
  169. `ReferrerRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  170. `BlogId` varchar(36) NOT NULL DEFAULT '',
  171. `ReferrerId` varchar(36) NOT NULL,
  172. `ReferralDay` datetime NOT NULL,
  173. `ReferrerUrl` varchar(255) NOT NULL,
  174. `ReferralCount` int(10) NOT NULL,
  175. `Url` varchar(255) DEFAULT NULL,
  176. `IsSpam` tinyint(1) NULL,
  177. PRIMARY KEY (`ReferrerRowId`)
  178. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  179. CREATE TABLE IF NOT EXISTS `be_Rights` (
  180. `RightRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  181. `BlogId` varchar(36) NOT NULL DEFAULT '',
  182. `RightName` varchar(100) NOT NULL,
  183. PRIMARY KEY (`RightRowId`)
  184. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  185. CREATE TABLE IF NOT EXISTS `be_RightRoles` (
  186. `RightRoleRowId` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  187. `BlogId` varchar(36) NOT NULL DEFAULT '',
  188. `RightName` varchar(100) NOT NULL,
  189. `Role` varchar(100) NOT NULL,
  190. PRIMARY KEY (`RightRoleRowId`)
  191. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  192. /*** Load initial Data ***/
  193. INSERT INTO be_Blogs (BlogId, BlogName, Hostname, IsAnyTextBeforeHostnameAccepted, StorageContainerName, VirtualPath, IsPrimary, IsActive) VALUES ('27604f05-86ad-47ef-9e05-950bb762570c', 'Primary', '', 0, '', '~/', 1, 1);
  194. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'administratorrole', 'Administrators');
  195. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'alternatefeedurl', '');
  196. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'authorname', 'My name');
  197. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'avatar', 'combine');
  198. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'blogrollmaxlength', '23');
  199. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'blogrollupdateminutes', '60');
  200. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'blogrollvisibleposts', '3');
  201. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'contactformmessage', '<p>I will answer the mail as soon as I can.</p>');
  202. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'contactthankmessage', '<h1>Thank you</h1><p>The message was sent.</p>');
  203. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'culture', 'Auto');
  204. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'dayscommentsareenabled', '0');
  205. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'description', 'Short description of the blog');
  206. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'displaycommentsonrecentposts', 'True');
  207. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'displayratingsonrecentposts', 'True');
  208. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'email', 'user@example.com');
  209. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'emailsubjectprefix', 'Weblog');
  210. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablecommentsearch', 'True');
  211. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablecommentsmoderation', 'False');
  212. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablecontactattachments', 'True');
  213. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablecountryincomments', 'True');
  214. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablehttpcompression', 'True');
  215. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enableopensearch', 'True');
  216. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablepingbackreceive', 'True');
  217. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablepingbacksend', 'True');
  218. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablerating', 'True');
  219. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablereferrertracking', 'False');
  220. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablerelatedposts', 'True');
  221. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enablessl', 'False');
  222. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enabletrackbackreceive', 'True');
  223. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'enabletrackbacksend', 'True');
  224. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'endorsement', 'http://www.dotnetblogengine.net/syndication.axd');
  225. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'fileextension', '.aspx');
  226. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'geocodinglatitude', '0');
  227. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'geocodinglongitude', '0');
  228. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'handlewwwsubdomain', '');
  229. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'iscocommentenabled', 'False');
  230. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'iscommentsenabled', 'True');
  231. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'language', 'en-GB');
  232. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'mobiletheme', 'Mobile');
  233. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'name', 'Name of the blog');
  234. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'numberofrecentcomments', '10');
  235. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'numberofrecentposts', '10');
  236. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'postsperfeed', '10');
  237. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'postsperpage', '10');
  238. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'removewhitespaceinstylesheets', 'True');
  239. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'searchbuttontext', 'Search');
  240. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'searchcommentlabeltext', 'Include comments in search');
  241. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'searchdefaulttext', 'Enter search term');
  242. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'sendmailoncomment', 'True');
  243. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'showdescriptioninpostlist', 'False');
  244. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'showlivepreview', 'True');
  245. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'showpostnavigation', 'True');
  246. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'smtppassword', 'password');
  247. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'smtpserver', 'mail.example.dk');
  248. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'smtpserverport', '25');
  249. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'smtpusername', 'user@example.com');
  250. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'storagelocation', '~/App_Data/');
  251. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'syndicationformat', 'Rss');
  252. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'theme', 'Standard');
  253. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'timestamppostlinks', 'True');
  254. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'timezone', '-5');
  255. INSERT INTO be_Settings (BlogID, SettingName, SettingValue) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'trackingscript', '');
  256. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://rpc.technorati.com/rpc/ping');
  257. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://rpc.pingomatic.com/rpc2');
  258. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://ping.feedburner.com');
  259. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://www.bloglines.com/ping');
  260. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://services.newsgator.com/ngws/xmlrpcping.aspx');
  261. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://api.my.yahoo.com/rpc2 ');
  262. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://blogsearch.google.com/ping/RPC2');
  263. INSERT INTO be_PingService (BlogID, Link) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'http://rpc.pingthesemanticweb.com/');
  264. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'a');
  265. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'about');
  266. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'actually');
  267. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'add');
  268. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'after');
  269. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'all');
  270. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'almost');
  271. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'along');
  272. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'also');
  273. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'an');
  274. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'and');
  275. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'any');
  276. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'are');
  277. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'as');
  278. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'at');
  279. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'be');
  280. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'both');
  281. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'but');
  282. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'by');
  283. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'can');
  284. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'cannot');
  285. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'com');
  286. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'could');
  287. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'de');
  288. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'do');
  289. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'down');
  290. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'each');
  291. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'either');
  292. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'en');
  293. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'for');
  294. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'from');
  295. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'good');
  296. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'has');
  297. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'have');
  298. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'he');
  299. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'her');
  300. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'here');
  301. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'hers');
  302. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'his');
  303. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'how');
  304. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'i');
  305. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'if');
  306. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'in');
  307. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'into');
  308. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'is');
  309. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'it');
  310. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'its');
  311. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'just');
  312. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'la');
  313. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'like');
  314. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'long');
  315. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'make');
  316. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'me');
  317. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'more');
  318. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'much');
  319. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'my');
  320. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'need');
  321. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'new');
  322. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'now');
  323. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'of');
  324. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'off');
  325. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'on');
  326. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'once');
  327. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'one');
  328. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'ones');
  329. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'only');
  330. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'or');
  331. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'our');
  332. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'out');
  333. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'over');
  334. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'own');
  335. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'really');
  336. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'right');
  337. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'same');
  338. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'see');
  339. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'she');
  340. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'so');
  341. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'some');
  342. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'such');
  343. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'take');
  344. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'takes');
  345. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'that');
  346. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'the');
  347. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'their');
  348. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'these');
  349. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'thing');
  350. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'this');
  351. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'to');
  352. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'too');
  353. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'took');
  354. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'und');
  355. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'up');
  356. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'use');
  357. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'used');
  358. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'using');
  359. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'very');
  360. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'was');
  361. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'we');
  362. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'well');
  363. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'what');
  364. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'when');
  365. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'where');
  366. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'who');
  367. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'will');
  368. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'with');
  369. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'www');
  370. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'you');
  371. INSERT INTO be_StopWords (BlogId, StopWord) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'your');
  372. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  373. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', '25e4d8da-3278-4e58-b0bf-932496dabc96', 'Mads Kristensen', 'Full featured simplicity in ASP.NET and C#', 'http://madskristensen.net', 'http://feeds.feedburner.com/netslave', 'contact', 0 );
  374. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  375. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', 'ccc817ef-e760-482b-b82f-a6854663110f', 'Al Nyveldt', 'Adventures in Code and Other Stories', 'http://www.nyveldt.com/blog/', 'http://feeds.feedburner.com/razorant', 'contact', 1 );
  376. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  377. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', 'dcdaa78b-0b77-4691-99f0-1bb6418945a1', 'Ruslan Tur', '.NET and Open Source: better together', 'http://rtur.net/blog/', 'http://feeds.feedburner.com/rtur', 'contact', 2 );
  378. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  379. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', '8a846489-b69e-4fde-b2b2-53bc6104a6fa', 'John Dyer', 'Technology and web development in ASP.NET, Flash, and JavaScript', 'http://johndyer.name/', 'http://johndyer.name/syndication.axd', 'contact', 3 );
  380. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  381. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', '7f906880-4316-47f1-a934-1a912fc02f8b', 'Russell van der Walt', 'an adventure in web technologies', 'http://blog.ruski.co.za/', 'http://feeds.feedburner.com/rusvdw', 'contact', 4 );
  382. INSERT INTO be_BlogRollItems ( BlogId, BlogRollId, Title, Description, BlogUrl, FeedUrl, Xfn, SortIndex )
  383. VALUES ( '27604F05-86AD-47EF-9E05-950BB762570C', '890f00e5-3a86-4cba-b85b-104063964a87', 'Ben Amada', 'adventures in application development', 'http://allben.net/', 'http://feeds.feedburner.com/allben', 'contact', 5 );
  384. INSERT INTO be_Categories (BlogID, CategoryID, CategoryName)
  385. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'ffc26b8b-7d45-46e3-b702-7198e8847e06', 'General');
  386. INSERT INTO be_Posts (BlogID, PostID, Title, Description, PostContent, DateCreated, DateModified, Author, IsPublished)
  387. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'daf4bc0e-f4b7-4895-94b2-3b1413379d4b',
  388. 'Welcome to BlogEngine.NET 2.5 using MySQL',
  389. 'The description is used as the meta description as well as shown in the related posts. It is recommended that you write a description, but not mandatory',
  390. '<p>If you see this post it means that BlogEngine.NET 2.5 is running and the hard part of creating your own blog is done. There is only a few things left to do.</p>
  391. <h2>Write Permissions</h2>
  392. <p>To be able to log in to the blog and writing posts, you need to enable write permissions on the App_Data folder. If you&rsquo;re blog is hosted at a hosting provider, you can either log into your account&rsquo;s admin page or call the support. You need write permissions on the App_Data folder because all posts, comments, and blog attachments are saved as XML files and placed in the App_Data folder.&nbsp;</p>
  393. <p>If you wish to use a database to to store your blog data, we still encourage you to enable this write access for an images you may wish to store for your blog posts.&nbsp; If you are interested in using Microsoft SQL Server, MySQL, SQL CE, or other databases, please see the <a href="http://blogengine.codeplex.com/documentation">BlogEngine wiki</a> to get started.</p>
  394. <h2>Security</h2>
  395. <p>When you\'ve got write permissions to the App_Data folder, you need to change the username and password. Find the sign-in link located either at the bottom or top of the page depending on your current theme and click it. Now enter "admin" in both the username and password fields and click the button. You will now see an admin menu appear. It has a link to the "Users" admin page. From there you can change the username and password.&nbsp; Passwords are hashed by default so if you lose your password, please see the <a href="http://blogengine.codeplex.com/documentation">BlogEngine wiki</a> for information on recovery.</p>
  396. <h2>Configuration and Profile</h2>
  397. <p>Now that you have your blog secured, take a look through the settings and give your new blog a title.&nbsp; BlogEngine.NET 2.5 is set up to take full advantage of of many semantic formats and technologies such as FOAF, SIOC and APML. It means that the content stored in your BlogEngine.NET installation will be fully portable and auto-discoverable.&nbsp; Be sure to fill in your author profile to take better advantage of this.</p>
  398. <h2>Themes, Widgets &amp; Extensions</h2>
  399. <p>One last thing to consider is customizing the look of your blog.&nbsp; We have a few themes available right out of the box including two fully setup to use our new widget framework.&nbsp; The widget framework allows drop and drag placement on your side bar as well as editing and configuration right in the widget while you are logged in.&nbsp; Extensions allow you to extend and customize the behaivor of your blog.&nbsp; Be sure to check the <a href="http://dnbegallery.org/">BlogEngine.NET Gallery</a> at <a href="http://dnbegallery.org/">dnbegallery.org</a> as the go-to location for downloading widgets, themes and extensions.</p>
  400. <h2>On the web</h2>
  401. <p>You can find BlogEngine.NET on the <a href="http://www.dotnetblogengine.net">official website</a>. Here you\'ll find tutorials, documentation, tips and tricks and much more. The ongoing development of BlogEngine.NET can be followed at <a href="http://blogengine.codeplex.com/">CodePlex</a> where the daily builds will be published for anyone to download.&nbsp; Again, new themes, widgets and extensions can be downloaded at the <a href="http://dnbegallery.org/">BlogEngine.NET gallery</a>.</p>
  402. <p>Good luck and happy writing.</p>
  403. <p>The BlogEngine.NET team</p>',
  404. CURDATE(),
  405. CURDATE(),
  406. 'admin',
  407. 1);
  408. INSERT INTO be_PostCategory (BlogID, PostID, CategoryID)
  409. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'daf4bc0e-f4b7-4895-94b2-3b1413379d4b', 'ffc26b8b-7d45-46e3-b702-7198e8847e06');
  410. INSERT INTO be_PostTag (BlogID, PostID, Tag)
  411. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'daf4bc0e-f4b7-4895-94b2-3b1413379d4b', 'blog');
  412. INSERT INTO be_PostTag (BlogID, PostID, Tag)
  413. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'daf4bc0e-f4b7-4895-94b2-3b1413379d4b', 'welcome');
  414. INSERT INTO be_Users (BlogID, UserName, Password, LastLoginTime, EmailAddress) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'Admin', '', CURDATE(), 'email@example.com');
  415. INSERT INTO be_Roles (BlogID, Role) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'Administrators');
  416. INSERT INTO be_Roles (BlogID, Role) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'Editors');
  417. INSERT INTO be_UserRoles (BlogID, UserName, Role) VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 'Admin', 'Administrators');
  418. INSERT INTO be_DataStoreSettings (BlogId, ExtensionType, ExtensionId, Settings)
  419. VALUES ('27604F05-86AD-47EF-9E05-950BB762570C', 1, 'be_WIDGET_ZONE', '<?xml version="1.0" encoding="utf-16"?><WidgetData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><Settings>&lt;widgets&gt;&lt;widget id="d9ada63d-3462-4c72-908e-9d35f0acce40" title="TextBox" showTitle="True"&gt;TextBox&lt;/widget&gt;&lt;widget id="19baa5f6-49d4-4828-8f7f-018535c35f94" title="Administration" showTitle="True"&gt;Administration&lt;/widget&gt;&lt;widget id="d81c5ae3-e57e-4374-a539-5cdee45e639f" title="Search" showTitle="True"&gt;Search&lt;/widget&gt;&lt;widget id="77142800-6dff-4016-99ca-69b5c5ebac93" title="Tag cloud" showTitle="True"&gt;Tag cloud&lt;/widget&gt;&lt;widget id="4ce68ae7-c0c8-4bf8-b50f-a67b582b0d2e" title="RecentPosts" showTitle="True"&gt;RecentPosts&lt;/widget&gt;&lt;/widgets&gt;</Settings></WidgetData>');