<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://www.codeplex.com/rss.xsl"?><rss version="2.0"><channel><title>MyWebPagesStarterKit Work Item Rss Feed</title><link>http://www.codeplex.com/WorkItem/List.aspx?ProjectName=MyWebPagesStarterKit</link><description>MyWebPagesStarterKit Work Item Rss Description</description><item><title>Commented Issue: logged in - session expire to soon? [23446]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=23446</link><description>when writing i.e. blog entries, I suppose the browser session expires to soon and it makes impossible to save content written.&lt;br /&gt;Any chance to do something with this&amp;#63;&lt;br /&gt;maybe something like this&amp;#58; http&amp;#58;&amp;#47;&amp;#47;www.codeproject.com&amp;#47;Articles&amp;#47;37136&amp;#47;AH-Ah-ah-ah-Staying-Alive-Staying-Alive.aspx&lt;br /&gt;</description><author>namoguy</author><pubDate>Sat, 21 Nov 2009 16:03:37 GMT</pubDate><guid isPermaLink="false">Commented Issue: logged in - session expire to soon? [23446] 20091121040337P</guid></item><item><title>Created Issue: NewsList::Search() destroys html markup [25398]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=25398</link><description>The NewsList&amp;#58;&amp;#58;Search&amp;#40;&amp;#41; method destroys any html markup you might have in your news entries content. Let&amp;#39;s say you have made a news entry with maybe a &amp;#60;h1&amp;#62; tag and some &amp;#60;strong&amp;#62;&amp;#39;s. It will look fine until you use the Search feature of the site once - after that, this markup is lost for the duration of your session.&lt;br /&gt;&lt;br /&gt;The problem lies in the loop&lt;br /&gt;&lt;br /&gt;            foreach &amp;#40;DataRow row in NewsEntries.Rows&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                row&amp;#91;&amp;#34;Newstext&amp;#34;&amp;#93; &amp;#61; HttpUtility.HtmlDecode&amp;#40;SearchResult.RemoveHtml&amp;#40;row&amp;#91;&amp;#34;Newstext&amp;#34;&amp;#93;.ToString&amp;#40;&amp;#41;&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;&lt;br /&gt;in NewsList&amp;#58;&amp;#58;Search&amp;#40;&amp;#41;. This actually replaces the newstext with text where any html markup has been removed &amp;#40;RemoveHtml&amp;#40;&amp;#41; does a good job there &amp;#59;-&amp;#41; Now, I wonder why the loop is actually there and if you have considered removing it&amp;#63; I tried that, and the Search still seem to find those entries&amp;#33;&amp;#63;&lt;br /&gt;&lt;br /&gt;Bendik Engebretsen&lt;br /&gt;Norway&lt;br /&gt;</description><author>Bendik</author><pubDate>Thu, 19 Nov 2009 10:37:43 GMT</pubDate><guid isPermaLink="false">Created Issue: NewsList::Search() destroys html markup [25398] 20091119103743A</guid></item><item><title>Commented Issue: MWPSK Extensions (includes our solution for roles) [13162]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=13162</link><description>Hello,&lt;br /&gt;&lt;br /&gt;finally had time to repackage a few changes we are using in our MWPSK-based solutions. They&amp;#39;ve been in place for many months so I hope there aren&amp;#39;t &amp;#40;many&amp;#41; bugs. This involves changing a few MWPSK core files but we ensured that our changes stay backward compatible so Sections and other code should be able to work without hassle. Code has been tested with v1.1.2 and v1.1.4 RC&amp;#58; no problems reported. This first version will be released using MS-PL while subsequent will use a custom license to serve our own purposes. This is our way to give back to community and thank MWPSK developers which is really a good solution.&lt;br /&gt;&lt;br /&gt;Features&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#42; enables role-based security for pages &amp;#40;not sections&amp;#33;&amp;#41; so admins can set which roles can access a specific page &amp;#40;when not shown to all users&amp;#41;. Each user can be assigned to multiple roles and code will check permission against any of them. Pages whom users don&amp;#39;t have access to won&amp;#39;t be displayed in menu&lt;br /&gt;&amp;#42; includes a roles editor &amp;#40;to add and delete roles&amp;#41; and a roles mapper &amp;#40;to assign users to roles&amp;#41;&lt;br /&gt;&amp;#42; roles editor and mapper are implemented as sections so they can be deployed on any page&lt;br /&gt;&amp;#42; includes a new page in Administration folder which already includes both controls &amp;#40;deploy and start using in a click&amp;#41;&lt;br /&gt;&amp;#42; enables a &amp;#34;Visible in menu&amp;#34; option for pages, which can hide a specific page from menu while still letting this page to be directly linked&lt;br /&gt;  &amp;#40;this is based on Rickard Magnusson code but his code was improved as it only allowed to hide first-level pages. Our code will allow to hide pages on any depth&amp;#41;&lt;br /&gt;&amp;#42; enables a &amp;#34;Hide to authenticated users&amp;#34; option for pages, which allows admin to hide specific pages when user has been authenticated. Can be used to hide a registration page or pages which include contents suitable for anonymous users only.&lt;br /&gt;&amp;#42; enables a &amp;#34;Sidebard HTML contents&amp;#34; option for each pages, so any HTML extra content can be shown right after the sidebar. This allows admins to put extra contents where sidebar is and enables more complex scenarios for real-world portals. HTML contents can be customized on a per-page basis.&lt;br /&gt;&lt;br /&gt;Again, we tried to ensure that once our modifications will be installed, there will be no modifications in MWPSK base code unless our functions will be enabled. This should ensure maximum backward compatibility with standard code.&lt;br /&gt;&lt;br /&gt;Our internal code has been implemented using AJAX but such functionalities has been stripped off since standard MWPSK doesn&amp;#39;t support AJAX. If any of you have extended your portals using AJAX, you should be able to put our code inside an UpdatePanel for better experience.&lt;br /&gt;&lt;br /&gt;We would be glad if any of you who will find any bug will report to me even if, as I said, we&amp;#39;re using this code since 4-5 months without problems. Hope I exported all relevant files &amp;#59;-&amp;#41;&lt;br /&gt;&lt;br /&gt;Take care.&lt;br /&gt;</description><author>mrmeyer4irm</author><pubDate>Thu, 12 Nov 2009 22:20:54 GMT</pubDate><guid isPermaLink="false">Commented Issue: MWPSK Extensions (includes our solution for roles) [13162] 20091112102054P</guid></item><item><title>Closed Issue: News Search - Does not account for null ShowUntil [24382]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24382</link><description>Version 1.3&lt;br /&gt;&lt;br /&gt;NewsList.cs&lt;br /&gt;The code in the Search method needs to look like this&lt;br /&gt;&lt;br /&gt;DataRow&amp;#91;&amp;#93; foundRows &amp;#61; NewsEntries.Select&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#40;Headline LIKE &amp;#39;&amp;#37;&amp;#123;0&amp;#125;&amp;#37;&amp;#39; OR Newstext LIKE &amp;#39;&amp;#37;&amp;#123;0&amp;#125;&amp;#37;&amp;#39;&amp;#41; AND Newsdate &amp;#60;&amp;#61; &amp;#35;&amp;#123;1&amp;#125;&amp;#35; AND &amp;#40;ShowUntil &amp;#62;&amp;#61; &amp;#35;&amp;#123;2&amp;#125;&amp;#35; OR ShowUntil Is Null&amp;#41;&amp;#34;, searchString.Replace&amp;#40;&amp;#34;&amp;#39;&amp;#34;, &amp;#34;&amp;#39;&amp;#39;&amp;#34;&amp;#41;, DateNow, DateShowUntil&amp;#41;, &amp;#34;NewsDate DESC&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Otherwise News Items with no ShowUntil date will not be searched.&lt;br /&gt;&lt;br /&gt;This is my first try and reporting problems.  Hope this is the right place and is of use.&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 14:25:32 GMT</pubDate><guid isPermaLink="false">Closed Issue: News Search - Does not account for null ShowUntil [24382] 20091110022532P</guid></item><item><title>Closed Issue: v1.3.0 beta - error when logging off from hidden page [23614]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=23614</link><description>When a person attempts to logoff from a hidden page, an error occurs on line 25 of Subpages.ascx.cs.&lt;br /&gt;&lt;br /&gt;To resolve this, insert above line 25 an if statement to enclose the entire foreach clause that begiins on line 25&amp;#58;&lt;br /&gt;beginning with new line 25&amp;#58;&lt;br /&gt;if &amp;#40;SiteMap.CurrentNode &amp;#33;&amp;#61; null&amp;#41;&lt;br /&gt;&amp;#123; foreach &amp;#40;SiteMapNode node in SiteMap.CurrentNode.ChildNodes&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            lnkSubpages &amp;#61; new HyperLink&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            lnkSubpages.Text &amp;#61; node.Title&amp;#59;&lt;br /&gt;            lnkSubpages.NavigateUrl &amp;#61; node.Url&amp;#59;&lt;br /&gt;            plcSubpages.Controls.Add&amp;#40;lnkSubpages&amp;#41;&amp;#59;&lt;br /&gt;            ctlBreak &amp;#61; new Literal&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#9;&amp;#9;&amp;#9;ctlBreak.Text &amp;#61; &amp;#34;&amp;#60;br &amp;#47;&amp;#62;&amp;#60;br &amp;#47;&amp;#62;&amp;#34;&amp;#59;&lt;br /&gt;            plcSubpages.Controls.Add&amp;#40;ctlBreak&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;        &amp;#125;&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 14:24:17 GMT</pubDate><guid isPermaLink="false">Closed Issue: v1.3.0 beta - error when logging off from hidden page [23614] 20091110022417P</guid></item><item><title>Closed Issue: "+" character entered in virtual path field crashes MWPSK v. 1.2.2 [24133]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24133</link><description>A  &amp;#34;&amp;#43;&amp;#34; character saved in the virtual path field causes v1.2.2 production to fail.  Characters entered in the virtual path field that crash the application should be trapped or filtered in the edit UI &amp;#40;or at least a warning displayed on the edit form&amp;#41;.    Recovery requires removing the bad virtual path entry from  the Apps_data&amp;#47;Web.sitemap file.   Once this is done, the bad virtual path entry on the page itself can be removed through the edit UI.    &lt;br /&gt;&lt;br /&gt;This problem has also been confirmed on v1.1.4.&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 14:21:11 GMT</pubDate><guid isPermaLink="false">Closed Issue: "+" character entered in virtual path field crashes MWPSK v. 1.2.2 [24133] 20091110022111P</guid></item><item><title>Closed Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24679</link><description>Server Error in &amp;#39;&amp;#47;&amp;#39; Application.&lt;br /&gt;&lt;br /&gt;Security Exception&lt;br /&gt;&lt;br /&gt;Description&amp;#58; The application attempted to perform an operation not allowed by the security policy.  To grant this application the required permission please contact your system administrator or change the application&amp;#39;s trust level in the configuration file. &lt;br /&gt;&lt;br /&gt;Exception Details&amp;#58; System.Security.SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&lt;br /&gt;&lt;br /&gt;Source Error&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Line 15&amp;#58; &amp;#9;&amp;#9;&lt;br /&gt;Line 16&amp;#58; &amp;#9;&amp;#9;if &amp;#40;&amp;#33;Directory.Exists&amp;#40;galleryPath&amp;#41;&amp;#41;&lt;br /&gt;Line 17&amp;#58; &amp;#9;&amp;#9;&amp;#9;Directory.CreateDirectory&amp;#40;galleryPath&amp;#41;&amp;#59;&lt;br /&gt;Line 18&amp;#58; &lt;br /&gt;Line 19&amp;#58; &amp;#9;&amp;#9;ftbEditor.ImageGalleryUrl &amp;#61; ResolveUrl&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#126;&amp;#47;ftb.imagegallery.aspx&amp;#63;rif&amp;#61;&amp;#123;0&amp;#125;&amp;#38;cif&amp;#61;&amp;#123;0&amp;#125;&amp;#34;, galleryPath&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Source File&amp;#58; d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs    Line&amp;#58; 17 &lt;br /&gt;&lt;br /&gt;Stack Trace&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#91;SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&amp;#93;&lt;br /&gt;   System.Security.CodeAccessSecurityEngine.Check&amp;#40;Object demand, StackCrawlMark&amp;#38; stackMark, Boolean isPermSet&amp;#41; &amp;#43;0&lt;br /&gt;   System.Security.CodeAccessPermission.Demand&amp;#40;&amp;#41; &amp;#43;58&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path, DirectorySecurity directorySecurity&amp;#41; &amp;#43;138&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path&amp;#41; &amp;#43;6&lt;br /&gt;   SectionControls_HtmlEditor.OnInit&amp;#40;EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs&amp;#58;17&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.AddedControl&amp;#40;Control control, Int32 index&amp;#41; &amp;#43;198&lt;br /&gt;   System.Web.UI.ControlCollection.Add&amp;#40;Control child&amp;#41; &amp;#43;80&lt;br /&gt;   _Default.Page_Init&amp;#40;Object sender, EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;Default.aspx.cs&amp;#58;114&lt;br /&gt;   System.Web.Util.CalliHelper.EventArgFunctionCaller&amp;#40;IntPtr fp, Object o, Object t, EventArgs e&amp;#41; &amp;#43;14&lt;br /&gt;   System.Web.Util.CalliEventHandlerDelegateProxy.Callback&amp;#40;Object sender, EventArgs e&amp;#41; &amp;#43;35&lt;br /&gt;   System.Web.UI.Control.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;99&lt;br /&gt;   System.Web.UI.Page.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;12&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Page.ProcessRequestMain&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;6785&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;242&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;&amp;#41; &amp;#43;80&lt;br /&gt;   System.Web.UI.Page.ProcessRequestWithNoAssert&amp;#40;HttpContext context&amp;#41; &amp;#43;21&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;HttpContext context&amp;#41; &amp;#43;49&lt;br /&gt;   ASP.default_aspx.ProcessRequest&amp;#40;HttpContext context&amp;#41; in App_Web__om8nwel.12.cs&amp;#58;0&lt;br /&gt;   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute&amp;#40;&amp;#41; &amp;#43;181&lt;br /&gt;   System.Web.HttpApplication.ExecuteStep&amp;#40;IExecutionStep step, Boolean&amp;#38; completedSynchronously&amp;#41; &amp;#43;75&lt;br /&gt;&lt;br /&gt;Version Information&amp;#58; Microsoft .NET Framework Version&amp;#58;2.0.50727.3053&amp;#59; ASP.NET Version&amp;#58;2.0.50727.3053&lt;br /&gt;&lt;br /&gt;Can Anyone help&amp;#63;&amp;#63;&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 10:26:31 GMT</pubDate><guid isPermaLink="false">Closed Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679] 20091110102631A</guid></item><item><title>Closed Issue: ugly error when an EasyControl has been deleted but is still used on a page [25220]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=25220</link><description>There is an ugly error when an EasyControl has been deleted but is still used on a page. I have made a fix for this and will upload it to the Patches section. Please incorporate the Patch into the code base ASAP. Thank you. -- Mark Kamoski&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 10:24:59 GMT</pubDate><guid isPermaLink="false">Closed Issue: ugly error when an EasyControl has been deleted but is still used on a page [25220] 20091110102459A</guid></item><item><title>Closed Issue: warning, variable 'ex' is declared but never used, in ImageHandler.ProcessRequest [24843]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24843</link><description>All --&lt;br /&gt;&lt;br /&gt;This is &amp;#34;minor&amp;#34; but along the lines of &amp;#34;treat CTWs as CTEs&amp;#34; I thought I should mention it.&lt;br /&gt; &lt;br /&gt;There is a warning, variable &amp;#39;ex&amp;#39; is declared but never used, in ImageHandler.ProcessRequest.&lt;br /&gt;&lt;br /&gt;I just thought you should know.&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;&lt;br /&gt;-- Mark Kamoski&lt;br /&gt;</description><author>MRAatFC</author><pubDate>Tue, 10 Nov 2009 09:38:32 GMT</pubDate><guid isPermaLink="false">Closed Issue: warning, variable 'ex' is declared but never used, in ImageHandler.ProcessRequest [24843] 20091110093832A</guid></item><item><title>Created Issue: ugly error when an EasyControl has been deleted but is still used on a page [25220]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=25220</link><description>There is an ugly error when an EasyControl has been deleted but is still used on a page. I have made a fix for this and will upload it to the Patches section. Please incorporate the Patch into the code base ASAP. Thank you. -- Mark Kamoski&lt;br /&gt;</description><author>mkamoski</author><pubDate>Wed, 04 Nov 2009 21:07:07 GMT</pubDate><guid isPermaLink="false">Created Issue: ugly error when an EasyControl has been deleted but is still used on a page [25220] 20091104090707P</guid></item><item><title>Created Issue: warning, variable 'ex' is declared but never used, in ImageHandler.ProcessRequest [24843]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24843</link><description>All --&lt;br /&gt;&lt;br /&gt;This is &amp;#34;minor&amp;#34; but along the lines of &amp;#34;treat CTWs as CTEs&amp;#34; I thought I should mention it.&lt;br /&gt; &lt;br /&gt;There is a warning, variable &amp;#39;ex&amp;#39; is declared but never used, in ImageHandler.ProcessRequest.&lt;br /&gt;&lt;br /&gt;I just thought you should know.&lt;br /&gt;&lt;br /&gt;Thank you.&lt;br /&gt;&lt;br /&gt;-- Mark Kamoski&lt;br /&gt;</description><author>mkamoski</author><pubDate>Thu, 08 Oct 2009 18:49:22 GMT</pubDate><guid isPermaLink="false">Created Issue: warning, variable 'ex' is declared but never used, in ImageHandler.ProcessRequest [24843] 20091008064922P</guid></item><item><title>Commented Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24559</link><description>After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing.&lt;br /&gt;1&amp;#41;&amp;#9;When I import may data from my old version &lt;br /&gt;a.&amp;#9;None of the drop down menu show up &lt;br /&gt;b.&amp;#9;Numerous string errors are thrown when you try to edit or browse.&lt;br /&gt;2&amp;#41;&amp;#9;FreeTestBox Editor&lt;br /&gt;a.&amp;#9;Has far less features than FCK  &lt;br /&gt;b.&amp;#9;Importing simple HTML throws string errors&lt;br /&gt;c.&amp;#9;Spell checker throws dll errors&lt;br /&gt;3&amp;#41;&amp;#9;Gmail not supported or was poorly implemented &lt;br /&gt;a.&amp;#9;I reviewed the code for send mail and it could use some work with regards&amp;#8217; supporting Gmail. When I tried to send Gmail I got a null exception error&lt;br /&gt;b.&amp;#9;I have fixed Gmail in my site. Hence I&amp;#8217;ll have no problems fixing the code for this Update if I decide it worth using it.&lt;br /&gt;In general some of the new functionality are good ides&amp;#59; With the possible execution of the FreeTestBox editor.&lt;br /&gt;One thing I would like to see improved is the photo gallery. As it only allows you to pull in one photo at a time. I would be nice to be able to create photo libs and pull in multiple photos at one time.&lt;br /&gt;Comments: ** Comment from web user: namoguy ** &lt;p&gt;Can not upload new images or pick images wth the new editor...They have to be changed in the HTML code...&lt;br /&gt;&lt;/p&gt;</description><author>namoguy</author><pubDate>Sun, 27 Sep 2009 21:18:30 GMT</pubDate><guid isPermaLink="false">Commented Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559] 20090927091830P</guid></item><item><title>Commented Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24679</link><description>Server Error in &amp;#39;&amp;#47;&amp;#39; Application.&lt;br /&gt;&lt;br /&gt;Security Exception&lt;br /&gt;&lt;br /&gt;Description&amp;#58; The application attempted to perform an operation not allowed by the security policy.  To grant this application the required permission please contact your system administrator or change the application&amp;#39;s trust level in the configuration file. &lt;br /&gt;&lt;br /&gt;Exception Details&amp;#58; System.Security.SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&lt;br /&gt;&lt;br /&gt;Source Error&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Line 15&amp;#58; &amp;#9;&amp;#9;&lt;br /&gt;Line 16&amp;#58; &amp;#9;&amp;#9;if &amp;#40;&amp;#33;Directory.Exists&amp;#40;galleryPath&amp;#41;&amp;#41;&lt;br /&gt;Line 17&amp;#58; &amp;#9;&amp;#9;&amp;#9;Directory.CreateDirectory&amp;#40;galleryPath&amp;#41;&amp;#59;&lt;br /&gt;Line 18&amp;#58; &lt;br /&gt;Line 19&amp;#58; &amp;#9;&amp;#9;ftbEditor.ImageGalleryUrl &amp;#61; ResolveUrl&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#126;&amp;#47;ftb.imagegallery.aspx&amp;#63;rif&amp;#61;&amp;#123;0&amp;#125;&amp;#38;cif&amp;#61;&amp;#123;0&amp;#125;&amp;#34;, galleryPath&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Source File&amp;#58; d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs    Line&amp;#58; 17 &lt;br /&gt;&lt;br /&gt;Stack Trace&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#91;SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&amp;#93;&lt;br /&gt;   System.Security.CodeAccessSecurityEngine.Check&amp;#40;Object demand, StackCrawlMark&amp;#38; stackMark, Boolean isPermSet&amp;#41; &amp;#43;0&lt;br /&gt;   System.Security.CodeAccessPermission.Demand&amp;#40;&amp;#41; &amp;#43;58&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path, DirectorySecurity directorySecurity&amp;#41; &amp;#43;138&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path&amp;#41; &amp;#43;6&lt;br /&gt;   SectionControls_HtmlEditor.OnInit&amp;#40;EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs&amp;#58;17&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.AddedControl&amp;#40;Control control, Int32 index&amp;#41; &amp;#43;198&lt;br /&gt;   System.Web.UI.ControlCollection.Add&amp;#40;Control child&amp;#41; &amp;#43;80&lt;br /&gt;   _Default.Page_Init&amp;#40;Object sender, EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;Default.aspx.cs&amp;#58;114&lt;br /&gt;   System.Web.Util.CalliHelper.EventArgFunctionCaller&amp;#40;IntPtr fp, Object o, Object t, EventArgs e&amp;#41; &amp;#43;14&lt;br /&gt;   System.Web.Util.CalliEventHandlerDelegateProxy.Callback&amp;#40;Object sender, EventArgs e&amp;#41; &amp;#43;35&lt;br /&gt;   System.Web.UI.Control.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;99&lt;br /&gt;   System.Web.UI.Page.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;12&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Page.ProcessRequestMain&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;6785&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;242&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;&amp;#41; &amp;#43;80&lt;br /&gt;   System.Web.UI.Page.ProcessRequestWithNoAssert&amp;#40;HttpContext context&amp;#41; &amp;#43;21&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;HttpContext context&amp;#41; &amp;#43;49&lt;br /&gt;   ASP.default_aspx.ProcessRequest&amp;#40;HttpContext context&amp;#41; in App_Web__om8nwel.12.cs&amp;#58;0&lt;br /&gt;   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute&amp;#40;&amp;#41; &amp;#43;181&lt;br /&gt;   System.Web.HttpApplication.ExecuteStep&amp;#40;IExecutionStep step, Boolean&amp;#38; completedSynchronously&amp;#41; &amp;#43;75&lt;br /&gt;&lt;br /&gt;Version Information&amp;#58; Microsoft .NET Framework Version&amp;#58;2.0.50727.3053&amp;#59; ASP.NET Version&amp;#58;2.0.50727.3053&lt;br /&gt;&lt;br /&gt;Can Anyone help&amp;#63;&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: namoguy ** &lt;p&gt;Change line 14 of the .cs file from ResolveURL  to  Server.MapPath  this will fix the issue.&lt;/p&gt;</description><author>namoguy</author><pubDate>Sun, 27 Sep 2009 21:13:19 GMT</pubDate><guid isPermaLink="false">Commented Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679] 20090927091319P</guid></item><item><title>Commented Issue: when using Internet Explorer I can´t login / using Firefox I can´t edit anything using FCKEditor [23478]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=23478</link><description>Hello,&lt;br /&gt;I created a website using mwpsk 1.2.1 . I moved it to a webserver and it worked fine.&lt;br /&gt;&lt;br /&gt;But after a few days a problem appeared&amp;#58;&lt;br /&gt;&lt;br /&gt;-If I use Internet Explorer to login to the administrative area of mwpsk it&amp;#180;s not possible&lt;br /&gt; after typing the right password and click on login the website appears after a refresh like I&amp;#180;m a user who&amp;#180;s not logged in.&lt;br /&gt;If I type the wrong password into the pwd-field an error message appears like it should be.&lt;br /&gt;When I use Firefox or Opera I&amp;#180;m able to login but if I want to edit a html section &amp;#40;using fckeditor&amp;#41; the fckeditor doesn&amp;#180;t appear.&lt;br /&gt;&lt;br /&gt;Does anybody have an idea regarding this issue&amp;#63;&lt;br /&gt;&lt;br /&gt;Thanks, br, Tom&lt;br /&gt;Comments: ** Comment from web user: net4u ** &lt;p&gt;I have same issues with any browser. It&amp;#39;s strange for me because 2 weeks ago I just edited pages.&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>net4u</author><pubDate>Mon, 21 Sep 2009 17:16:57 GMT</pubDate><guid isPermaLink="false">Commented Issue: when using Internet Explorer I can´t login / using Firefox I can´t edit anything using FCKEditor [23478] 20090921051657P</guid></item><item><title>Commented Issue: Polyglot - extension for multilingual version of pages [23135]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=23135</link><description>Hi,&lt;br /&gt;we &amp;#40;Va&amp;#38;Cu&amp;#41; wrote little extension, which allows relatively easily create multilingual version of your web pages based on MWPSK.&lt;br /&gt;The idea is simple - sections read and save data via specialized functions, which determine the correct language to be used and return or save true value for this language.&lt;br /&gt;&lt;br /&gt;Live example of this extension you can see on our website www.vacu.cz and there is more information about this.&lt;br /&gt;&lt;br /&gt;Enjoy. Va&amp;#38;Cu&lt;br /&gt;Comments: ** Comment from web user: rickardmagnusson ** &lt;p&gt;Hi Va&amp;#38;Cu&lt;br /&gt;I think your idea is brilliant. Like in a MWPSK manner you created a nice and functional extension. &lt;br /&gt;I can agree that SEO produced pages need more but overall you thougt of most of the things and will work in most small websites. &lt;br /&gt;One thing that came up was that the Sections should show &amp;#40;I think&amp;#41; the default cultured sections value in stead of &amp;#40;not translated&amp;#41; . See code below.&lt;br /&gt;Also the default culture should be set in Website settings not in web.config. Like CurrentLang &amp;#61; WebSite.GetInstance&amp;#40;&amp;#41;.DefaultLocaleID&lt;br /&gt;Really nice work. I will really like to here more from you and your projects. &lt;/p&gt;&lt;p&gt;public static string GetLocalized&amp;#40;string MultilangValue&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            &amp;#47;&amp;#47;nactu MultilangValue do tabulky&lt;br /&gt;            DataTable table &amp;#61; GetMultilangTable&amp;#40;MultilangValue&amp;#41;&amp;#59;&lt;/p&gt;&lt;p&gt;            if &amp;#40;table.Rows.Count &amp;#61;&amp;#61; 0&amp;#41;&lt;br /&gt;                return MultilangValue&amp;#59;&lt;/p&gt;&lt;p&gt;            &amp;#47;&amp;#47;najdu zaznam&amp;#40;y&amp;#41; pro aktualni jazyk&lt;br /&gt;            DataRow&amp;#91;&amp;#93; rows &amp;#61; table.Select&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#91;Lang&amp;#93; &amp;#61; &amp;#39;&amp;#123;0&amp;#125;&amp;#39;&amp;#34;, CurrentLang&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;            if &amp;#40;rows.Length &amp;#62; 0&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                return rows&amp;#91;0&amp;#93;&amp;#91;&amp;#34;Value&amp;#34;&amp;#93; as string&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            else if &amp;#40;CurrentLang &amp;#33;&amp;#61; WebSite.GetInstance&amp;#40;&amp;#41;.DefaultLocaleID&amp;#41;&lt;br /&gt;            &amp;#123;&lt;br /&gt;                rows &amp;#61; table.Select&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#91;Lang&amp;#93; &amp;#61; &amp;#39;&amp;#123;0&amp;#125;&amp;#39;&amp;#34;, WebSite.GetInstance&amp;#40;&amp;#41;.DefaultLocaleID&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;                return rows&amp;#91;0&amp;#93;&amp;#91;&amp;#34;Value&amp;#34;&amp;#93; as string&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;            else&lt;br /&gt;            &amp;#123;&lt;br /&gt;                return &amp;#34;&amp;#40;not translated&amp;#41;&amp;#34;&amp;#59; &amp;#47;&amp;#47;Will never fire&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;&lt;/p&gt;&lt;p&gt;&lt;/p&gt;</description><author>rickardmagnusson</author><pubDate>Sun, 20 Sep 2009 13:40:15 GMT</pubDate><guid isPermaLink="false">Commented Issue: Polyglot - extension for multilingual version of pages [23135] 20090920014015P</guid></item><item><title>Created Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24679</link><description>Server Error in &amp;#39;&amp;#47;&amp;#39; Application.&lt;br /&gt;&lt;br /&gt;Security Exception&lt;br /&gt;&lt;br /&gt;Description&amp;#58; The application attempted to perform an operation not allowed by the security policy.  To grant this application the required permission please contact your system administrator or change the application&amp;#39;s trust level in the configuration file. &lt;br /&gt;&lt;br /&gt;Exception Details&amp;#58; System.Security.SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&lt;br /&gt;&lt;br /&gt;Source Error&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Line 15&amp;#58; &amp;#9;&amp;#9;&lt;br /&gt;Line 16&amp;#58; &amp;#9;&amp;#9;if &amp;#40;&amp;#33;Directory.Exists&amp;#40;galleryPath&amp;#41;&amp;#41;&lt;br /&gt;Line 17&amp;#58; &amp;#9;&amp;#9;&amp;#9;Directory.CreateDirectory&amp;#40;galleryPath&amp;#41;&amp;#59;&lt;br /&gt;Line 18&amp;#58; &lt;br /&gt;Line 19&amp;#58; &amp;#9;&amp;#9;ftbEditor.ImageGalleryUrl &amp;#61; ResolveUrl&amp;#40;string.Format&amp;#40;&amp;#34;&amp;#126;&amp;#47;ftb.imagegallery.aspx&amp;#63;rif&amp;#61;&amp;#123;0&amp;#125;&amp;#38;cif&amp;#61;&amp;#123;0&amp;#125;&amp;#34;, galleryPath&amp;#41;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Source File&amp;#58; d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs    Line&amp;#58; 17 &lt;br /&gt;&lt;br /&gt;Stack Trace&amp;#58; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&amp;#91;SecurityException&amp;#58; Request for the permission of type &amp;#39;System.Security.Permissions.FileIOPermission, mscorlib, Version&amp;#61;2.0.0.0, Culture&amp;#61;neutral, PublicKeyToken&amp;#61;b77a5c561934e089&amp;#39; failed.&amp;#93;&lt;br /&gt;   System.Security.CodeAccessSecurityEngine.Check&amp;#40;Object demand, StackCrawlMark&amp;#38; stackMark, Boolean isPermSet&amp;#41; &amp;#43;0&lt;br /&gt;   System.Security.CodeAccessPermission.Demand&amp;#40;&amp;#41; &amp;#43;58&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path, DirectorySecurity directorySecurity&amp;#41; &amp;#43;138&lt;br /&gt;   System.IO.Directory.CreateDirectory&amp;#40;String path&amp;#41; &amp;#43;6&lt;br /&gt;   SectionControls_HtmlEditor.OnInit&amp;#40;EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;SectionControls&amp;#92;HtmlEditor.ascx.cs&amp;#58;17&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;210&lt;br /&gt;   System.Web.UI.Control.AddedControl&amp;#40;Control control, Int32 index&amp;#41; &amp;#43;198&lt;br /&gt;   System.Web.UI.ControlCollection.Add&amp;#40;Control child&amp;#41; &amp;#43;80&lt;br /&gt;   _Default.Page_Init&amp;#40;Object sender, EventArgs e&amp;#41; in d&amp;#58;&amp;#92;hosting&amp;#92;sarahandrichie&amp;#92;Default.aspx.cs&amp;#58;114&lt;br /&gt;   System.Web.Util.CalliHelper.EventArgFunctionCaller&amp;#40;IntPtr fp, Object o, Object t, EventArgs e&amp;#41; &amp;#43;14&lt;br /&gt;   System.Web.Util.CalliEventHandlerDelegateProxy.Callback&amp;#40;Object sender, EventArgs e&amp;#41; &amp;#43;35&lt;br /&gt;   System.Web.UI.Control.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;99&lt;br /&gt;   System.Web.UI.Page.OnInit&amp;#40;EventArgs e&amp;#41; &amp;#43;12&lt;br /&gt;   System.Web.UI.Control.InitRecursive&amp;#40;Control namingContainer&amp;#41; &amp;#43;333&lt;br /&gt;   System.Web.UI.Page.ProcessRequestMain&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;6785&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint&amp;#41; &amp;#43;242&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;&amp;#41; &amp;#43;80&lt;br /&gt;   System.Web.UI.Page.ProcessRequestWithNoAssert&amp;#40;HttpContext context&amp;#41; &amp;#43;21&lt;br /&gt;   System.Web.UI.Page.ProcessRequest&amp;#40;HttpContext context&amp;#41; &amp;#43;49&lt;br /&gt;   ASP.default_aspx.ProcessRequest&amp;#40;HttpContext context&amp;#41; in App_Web__om8nwel.12.cs&amp;#58;0&lt;br /&gt;   System.Web.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute&amp;#40;&amp;#41; &amp;#43;181&lt;br /&gt;   System.Web.HttpApplication.ExecuteStep&amp;#40;IExecutionStep step, Boolean&amp;#38; completedSynchronously&amp;#41; &amp;#43;75&lt;br /&gt;&lt;br /&gt;Version Information&amp;#58; Microsoft .NET Framework Version&amp;#58;2.0.50727.3053&amp;#59; ASP.NET Version&amp;#58;2.0.50727.3053&lt;br /&gt;&lt;br /&gt;Can Anyone help&amp;#63;&amp;#63;&lt;br /&gt;</description><author>RNM1455</author><pubDate>Sun, 20 Sep 2009 04:08:01 GMT</pubDate><guid isPermaLink="false">Created Issue: everytime i upload the new beta  version i get this error it works fine in visual studio but not live [24679] 20090920040801A</guid></item><item><title>Created Issue: Add new utility item in Theme Generator [24610]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24610</link><description>I want to add new utility to Theme but current version of Theme Generator cannot add new utility item. There are only LOGIN and SEARCH utility that available and user can setup only environment of utility section e.g. color, background, link. It is better if  new version of Theme Generator allow user to add new item of utility.&lt;br /&gt;</description><author>ldusit</author><pubDate>Fri, 11 Sep 2009 02:46:05 GMT</pubDate><guid isPermaLink="false">Created Issue: Add new utility item in Theme Generator [24610] 20090911024605A</guid></item><item><title>Commented Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24559</link><description>After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing.&lt;br /&gt;1&amp;#41;&amp;#9;When I import may data from my old version &lt;br /&gt;a.&amp;#9;None of the drop down menu show up &lt;br /&gt;b.&amp;#9;Numerous string errors are thrown when you try to edit or browse.&lt;br /&gt;2&amp;#41;&amp;#9;FreeTestBox Editor&lt;br /&gt;a.&amp;#9;Has far less features than FCK  &lt;br /&gt;b.&amp;#9;Importing simple HTML throws string errors&lt;br /&gt;c.&amp;#9;Spell checker throws dll errors&lt;br /&gt;3&amp;#41;&amp;#9;Gmail not supported or was poorly implemented &lt;br /&gt;a.&amp;#9;I reviewed the code for send mail and it could use some work with regards&amp;#8217; supporting Gmail. When I tried to send Gmail I got a null exception error&lt;br /&gt;b.&amp;#9;I have fixed Gmail in my site. Hence I&amp;#8217;ll have no problems fixing the code for this Update if I decide it worth using it.&lt;br /&gt;In general some of the new functionality are good ides&amp;#59; With the possible execution of the FreeTestBox editor.&lt;br /&gt;One thing I would like to see improved is the photo gallery. As it only allows you to pull in one photo at a time. I would be nice to be able to create photo libs and pull in multiple photos at one time.&lt;br /&gt;Comments: ** Comment from web user: namoguy ** &lt;p&gt;I agree, I have had the same issues... Also don&amp;#39;t like the FreeTextBox editor nearly as much as FCK..&lt;/p&gt;&lt;p&gt;Also the Quick Guide is completely outdated.   I was looking for the SMTP settings because my combination is throwing an error Mailbox unavailable. The server response was&amp;#58; Unknown user.   Oddly enough, the emails get through to my inbox anyway.  &lt;/p&gt;</description><author>namoguy</author><pubDate>Thu, 10 Sep 2009 06:24:43 GMT</pubDate><guid isPermaLink="false">Commented Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559] 20090910062443A</guid></item><item><title>Created Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559]</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=24559</link><description>After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing.&lt;br /&gt;1&amp;#41;&amp;#9;When I import may data from my old version &lt;br /&gt;a.&amp;#9;None of the drop down menu show up &lt;br /&gt;b.&amp;#9;Numerous string errors are thrown when you try to edit or browse.&lt;br /&gt;2&amp;#41;&amp;#9;FreeTestBox Editor&lt;br /&gt;a.&amp;#9;Has far less features than FCK  &lt;br /&gt;b.&amp;#9;Importing simple HTML throws string errors&lt;br /&gt;c.&amp;#9;Spell checker throws dll errors&lt;br /&gt;3&amp;#41;&amp;#9;Gmail not supported or was poorly implemented &lt;br /&gt;a.&amp;#9;I reviewed the code for send mail and it could use some work with regards&amp;#8217; supporting Gmail. When I tried to send Gmail I got a null exception error&lt;br /&gt;b.&amp;#9;I have fixed Gmail in my site. Hence I&amp;#8217;ll have no problems fixing the code for this Update if I decide it worth using it.&lt;br /&gt;In general some of the new functionality are good ides&amp;#59; With the possible execution of the FreeTestBox editor.&lt;br /&gt;One thing I would like to see improved is the photo gallery. As it only allows you to pull in one photo at a time. I would be nice to be able to create photo libs and pull in multiple photos at one time.&lt;br /&gt;</description><author>HarleyGuy</author><pubDate>Sun, 06 Sep 2009 18:13:14 GMT</pubDate><guid isPermaLink="false">Created Issue: After playing with this beta version for a few days I have found many bugs. Hence this beta version is far from being ready for testing. [24559] 20090906061314P</guid></item><item><title>Commented Issue: Problems with HTMLEditor.ascx.cs</title><link>http://mywebpagesstarterkit.codeplex.com/WorkItem/View.aspx?WorkItemId=23258</link><description>I don&amp;#39;t know if this has already been reported, so I&amp;#39;m filing it here anyway.&lt;br /&gt;&lt;br /&gt;I was checking v1.3.0BETA &amp;#40;nice job, btw&amp;#33;&amp;#41; and I had problems with HTMLEditor.ascx.cs at this line &amp;#40;line 14 inside file&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;string galleryPath &amp;#61; ResolveUrl&amp;#40;&amp;#34;&amp;#126;&amp;#47;App_Data&amp;#47;UserImages&amp;#47;Image&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;That doesn&amp;#39;t work for me generating an error stating that path &amp;#34;&amp;#47;App_Data&amp;#47;UserImages&amp;#47;Image&amp;#34; is not accessible. Had to change that line like this&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#9;&amp;#9;string galleryPath &amp;#61; Server.MapPath&amp;#40;&amp;#34;&amp;#126;&amp;#47;App_Data&amp;#47;UserImages&amp;#47;Image&amp;#34;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Now it works as expected. That behaviour will prevent adding HTML section to portal, for example.&lt;br /&gt;&lt;br /&gt;Tested on&amp;#58; Win2003&amp;#47;IIS6 - Win2008&amp;#47;IIS7&lt;br /&gt;&lt;br /&gt;On both configuration, original code didn&amp;#39;t work and new code works flawlessly.&lt;br /&gt;&lt;br /&gt;Hope this helps.&lt;br /&gt;Comments: ** Comment from web user: aschoelzhorn ** &lt;p&gt;thank you. finally it works with qualityhosting.de&lt;/p&gt;</description><author>aschoelzhorn</author><pubDate>Tue, 01 Sep 2009 19:43:56 GMT</pubDate><guid isPermaLink="false">Commented Issue: Problems with HTMLEditor.ascx.cs 20090901074356P</guid></item></channel></rss>