« Embedded Windows Forms Control In Web Page, Bugs, Tips, Tricks, and Tools | Main | Assembly load-bind-security, Fuslogvw, »

Community Starter Kit

www.reddnet.net. A guy who’s a bit farther down the CSK as personal blog/site road.

 

Bulk picture importer:

http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=206921

 

On Pell:

·      Default site URL:

http://localhost/CommunityStarterKitCSVS

 

·      Default site Admin URL (just log in as Admin/Admin and click the Admin link).

http://localhost/CommunityStarterKitCSVS/Admin

 

·      ISP Admin URL used to add additional communities (IspAdmin,e…)

http://localhost/CommunityStarterKitCSVS/ISPAdmin

 

On JobQuake:

  • Used DNSWIZ to add cnames for jqc, kz, koriel, romo, zak as subdomains of jobquake.com.
  • Used Internet Service Manager to add host header names at port 80 for all the above to the default web site on Blaster (jobquake.com).
  • Used the IspAdmin page to add communities

 

Changes:

2003-05-22 22:00 Thu, Fixed problem with tags in new content by adding <pages validateRequest="false" /> to web.config.

2003-05-22 22:02 Thu, Ad images and inventory seem to be site-wide in Advertisements folder. Comment out the ad rotators in the Theme’s Skins/Page Skins/*.ascx files.

2003-05-22 22:05 Thu, Downloads are stored in the database. Need to make a mod to allow downloads that have already found their way onto a web accessible server.

2003-05-23 00:08 Fri, Created a Family theme. Copied from Default initially. Modified default page to display username, modified login page to not offer new user registration. Authenticated users will be limited to accounts created by me. Once created, each can take care of their own profile. Not really tight security since anyone who can guess the url of the new account registration page can manually go there? Modified the default style sheet to control username’s text color and to change background color behind AdRotator which isn’t there now. It takes way too long to copy the site to the public server.

2003-05-23 12:28 Fri, There’s a bug in the links section in how it generates the button image urls.

2003-05-25 13:29 Sun, Added more error reporting to StaticPage loader.

// Attempt to load the control. If this fails, we're done

try {

skin = Page.LoadControl(skinFileName);

      Controls.Add(skin);

} catch (Exception e) {

string errorMessage = "The @page@ page could not be found. Please add this page to the StaticPages folder.";

      errorMessage = errorMessage.Replace( "@page@", skinFileName );

      Controls.Add( new LiteralControl( errorMessage ) );

      ontrols.Add( new LiteralControl( e.Message ) );

}

 

 

 

 

 

Post a comment

(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)