Sunday, June 19, 2016
index DNN Forum content, Need to be sure the search feature works
Monday, October 26, 2009
DNN custom logout
{
DotNetNuke.Security.PortalSecurity.ClearRoles();
Session.Clear();
Session.Abandon();
PortalSecurity objPS = new PortalSecurity();
objPS.SignOut();
Response.Redirect("http://localhost:2887/Site/Home/tabid/39/language/en-US/Default.aspx");
}
Sunday, August 23, 2009
Set IE8 Compatibility Mode in Dot Net Nuke
Of course, a client side fix is never a user friendly fix. Thankfully there is a meta tag that can be added to your site to force IE8 to automatically go into compatibility mode.
Our page is built in Dot Net Nuke. The appropriate way to apply this fix for DNN is to add the tag to the default.aspx file that is found in the root directory of your Dot Net Nuke website. Any meta tag that is placed in here should be applied to all pages to your website. Add the tag highlighted below in red at the top of the head section of the default.aspx file.
< id="Head" runat="server">
< equiv="X-UA-Compatible" content="IE=EmulateIE7">
< content="text/html; charset=UTF-8" equiv="Content-Type">
Note that the tag must be placed at the top of the head section. Also, be aware that updates of your DNN framework will overwrite this change.
Tuesday, August 18, 2009
Create DotNetNuke Page Description And Meta Tags Dynamically
public DotNetNuke.Framework.CDefault BasePage
{
get { return (DotNetNuke.Framework.CDefault)(Page);
}
}
protected override void OnInit(EventArgs e)
{ base.OnInit(e); BasePage.Author = "John Doe"; BasePage.Comment = "Some Comment"; BasePage.Copyright = "Some Organization"; BasePage.Description = "Some Description"; BasePage.Generator = "Some Generator";
BasePage.KeyWords = "Keyword A, Keyword B" BasePage.Title = "Some Title";
}
Monday, August 17, 2009
Check ajax installed or not in dnn at page load
DotNetNuke.Framework.AJAX.RegisterScriptManager();
Wednesday, August 12, 2009
Redirec from one module to other
Response.Redirect(Util.RedirectUrl(this.PortalId, this.TabId, "ControlName", "ModuleName"), false);
Step 2:
public static string RedirectUrl(int PortalId, int TabId, string ControlName, string ModuleName, string Querystring)
{
string _Url = string.Empty;
ModuleInfo objModule = GetModuleByDefinition(PortalId, ModuleName);
return DotNetNuke.Common.Globals.NavigateURL(objModule.TabID, ControlName, "mid=" + objModule.ModuleID.ToString(), Querystring);
}
/////////////////////OR if using querystring
public static string RedirectUrl(int PortalId, int TabId, string ControlName, string ModuleName, string Querystring)
{
string _Url = string.Empty;
ModuleInfo objModule = GetModuleByDefinition(PortalId, ModuleName);
return DotNetNuke.Common.Globals.NavigateURL(objModule.TabID, ControlName, "mid=" + objModule.ModuleID.ToString(), Querystring);
}
Friday, July 10, 2009
How to create custom change password control
{
string UserName = HttpContext.Current.User.Identity.Name;
DotNetNuke.Entities.Users.UserInfo userInfo = DotNetNuke.Entities.Users.UserController.GetUserByName(PortalId, UserName);
DotNetNuke.Security.Membership.MembershipProvider membershipProvider = DotNetNuke.Security.Membership.MembershipProvider.Instance();
if (membershipProvider.PasswordFormat == DotNetNuke.Security.Membership.PasswordFormat.Encrypted)
{
string oldPassword = DotNetNuke.Entities.Users.UserController.GetPassword(ref userInfo, userInfo.Membership.PasswordAnswer);
if (oldPassword == txtOldPassword.Text)
{
string newPassword = txtNewPassword.Text.Trim();//DotNetNuke.Entities.Users.UserController.GeneratePassword(membershipProvider.MinPasswordLength);
DotNetNuke.Entities.Users.UserController.ChangePassword(userInfo, oldPassword, newPassword);
txtOldPassword.Text = "";
txtNewPassword.Text = "";
txtOldPassword.Focus();
lblmsg.Text = "Password changed successfully.";
}
else
{
lblmsg.Text = "OldPassword did not match.";
}
}
}
Thursday, February 19, 2009
DNN Optimization Steps
- Increase it's performance by deleting it's logs. To do that, login to your DNN site as HOST. Then go to "Admin" > "Log Viewer". Then in the log viewer page , there are "Delete selected exceptions" and "Clear log" link at the bottom of page.
- Another faster way would be connecting to your DNN db directly and run the following command: - delete from eventlog.
- Deleted blank spaces in default.aspx file.
- Deleted blank spaces in skin file,Javascript file.
- Startup performance can be increased by going to the Site Configuration settings and disable the Logging feature (by setting Logging to "0" in Site Settings or Host Settings)... obviously, this could be done if you don't need a logging feature (and I don't need it).
- Disable scheduler mode host>>hostsettings>>advanced settings
- Use the release.config from the DNN package
- Ensure that DNN does not run in debug mode :
LI> - Enable HTTP compression (http://www.dotnetjunkies.com/Article/16267D49-4C6E-4063-AB12-853761D31E66.dcik)
- ‘Host’ -> ‘Host Settings’ -> ‘Advanced Settings’ -> ‘Performance Settings’ -> turn on the Compression and Whitespace filter options. Don’t use this option if you have installed any SSL manager module for DNN or if you want use the internal skin, template or css editors.
Set debug mode to false:. - Check if the DNN caching is enabled: ‘Host’ -> ‘Host Settings’ -> ‘Advanced Settings’ -> ‘Performance Settings’ -> Select ‘Moderate Caching’ or ‘Heavy Caching’ from the ‘Performance Setting:’ drop down list.
- (‘Host’ -> ‘Host Settings’ -> Advanced Settings’ -> ‘Other Settings’),Select ‘Database’ for ‘Site Log Storage’,Active the ‘Disable Users Online’ checkbox.
- More than 50% of all DNN page content is Viewstate. To remove the Viewstate from the page content, go to: ‘Host’ -> ‘Host Settings’ -> ‘Advanced Settings’ -> ‘Performance Settings’ and select ‘Memory’ from ‘Page State Persistence:’ radio button list. This will reduce the page loading time up to 50%.
- Some hosting providers unload the DNN dll's after a certain time to save CPU time on their shared hosting environments. Also DNN deletes the cache after a certain time. This can be bypassed by SmarterPing by SmarterTools.SmarterPing by SmarterTools keeps DNN sites up and running and it does a great job. If you ping DNN URLs it dramatically improves the performance of DNN. Set SmarterPing to ping 4 or 5 key areas every minute. The loading times are 4 or 5 times faster.If there are any problems after you have changed this parameter and you can not go back because the update host settings button doesn’t work, perform the script below via Host -> SQL or SQL Web Admin:update hostsettings,set SettingValue = 'P',where SettingName = 'PageStatePersister'.
- Restrict the number of Log Types -> ‘Admin’ -> ‘Log Viewer’ -> select ‘Edit Log Configurations’ from the module menu -> delete all unimportant items.
Monday, December 29, 2008
Telerik RAD Combobox doesn't work in DotNetNuke (DNN)
Here's how to do it:
1. Login as HOST
2. Go to Host > Module Definitions
3. Select your cutom module from the list
4. Scroll all the way down and select your VIEW control
5. Check "Supports Partial Rendering" checkbox
6. Click "Update" link
Hope this helps
After Upgrading My Site I Can No Longer Log In
Not being able to log in after a site upgrade can be a traumatic experience. Rest easy - it usually is simple to fix.
The first thing to check is that you copied over your MachineValidation and MachineDecription keys from your previous web.config. When upgrading one of the steps you need to perform is to move all your custom settings from your old web.config to the new version, and these keys can be easy to miss.
If you still can't login with the old password after that, try registering a new user on your site. After doing so you can query the dbo.aspnet_membership table to get the password and passwordsalt from the newly registered user. Next update your host user's values with these new values. Now you should be able to login with the new user's password.
Sunday, December 28, 2008
If DNN 4.X search is not working follow these steps
- Changed the contents of site
- Run this script
truncate table {databaseOwner}{objectQualifier}SearchItemWordPositionDELETE {databaseOwner}{objectQualifier}SearchItemWordDELETE {databaseOwner}{objectQualifier}SearchWordDELETE {databaseOwner}{objectQualifier}SearchItem - Then under host menu selected "Search Admin " and clicked on " Re-Index Content" link.
And after that new contents starts coming in search.
If you want that DNN search engine automatically index contents when there is any change in site content then "scheduler for search indexing must be running" .