Skip to main content

Posts

Showing posts from April, 2012

Generate CSR for websites on IIS7

When the term Certificate comes into the work it is always a worry/ situation of panic. No worries if you want to generate CSR for the purchase or ssl or for other use Its very easy to generate a certificate request(CSR). let take a scenario of iis7 and microsoft windows server 2008. Navigate start>>All Programs>>Administrative tools>> Internet Information services. select the server name on the left pane under the connections. after selecting server name, select Server Certificates from the middle pane by double clicking. Next select Create certificate Request from the action pane on the right side of window. Fill in the information in step by step wizard for CSR generation , Enter Common name: website domain name(www.domainname.com), donot enter http or https Organization name: name of company Organizational unit: can be domain name or anything(in case of sub domain it is name of sub-domain) Click next  will take you to chose cryptography optio...

Remove forgot Password link Dotnetnuke

I am here again and this time remove forgot password link in Dotnetnuke, There are many people searching for the disabling the forgot password link in Dotnetnuke/ Removing the forgot password link in Dotnetnuke. I have gone through many website while searching on google, There are many solutions which I came across and I am listing it below: First solution Right click on the page , inspect the element "Forgot Password " , note its ID and login as a admin in Dotnetnuke. Navigate to css under the stylesheet editor.write the Id there, It will look like #dnn_control_logincmd_password{display:none} For few people it works If this doesn't remove forgot password link in Dotnetnuke then you can try out the Second solution: Go to the directory of dotnetnuke and open web.config, search for the term enablePasswordRetrieval="true" and enablePasswordReset="true"   Change it false . This will disable forgot password link in Dotnetnuke   Note : before doing t...