Skip to main content

Posts

How to get Paypal Live API Credential

Dear Friends With Paypal if you are new for getting the API key you directly go to the Merchant service and you did not get the API credential option what you are looking Here is the Way so you can get the API Credential 1) Visit https://www.paypal.com 2) Login with your business account 3) Click on My account 4) Click on the Profile (do not click on the sub menu) 5) Click on "My Selling Tools" 6) Click on API update button under the section of " Selling Info " 7) If you need to view the API key select the view option otherwise generate the new API key and password I hope it save your time Regards Rashid Imran Bilgrami http://www.bestvisualization.com 

3241 Error Using MS SQL 2008

Hi! Guys i found the another solution I have face the error and every one tell the things different reasons but actually there are two major reasons for this error 1) You restore the version from Lower version to higher version (mean you get the back from SQL 2010 or SQL 2008 and restore in SQL 2005) 2) Your SQL server is 2008 or 2010 instance name on SQL 2005 Which is very rear but its happening with me and i found the solution here http://social.msdn.microsoft.com/Forums/en/sqldisasterrecovery/thread/797cbb2a-f339-435c-a46f-79c4fe33d40d And this solution is providing by IanlovesFrame How you identify it Open your sql server and check the instance name Check out selected area in the screenshot there is a 9.xxxx value that mean this instance name is for SQL 2005 Why this error arrived  If you have SQL 2005 before and you are installing SQL 2008 then it automatically select the 2005 instance name. Just select the new instance name for 2008 and the proble...

How to delete all user in dnn or dotnetnuke database

Dear Reader This research created goes to one of my friend SABA ADIL, A very old PAL he is the one how need to delete the all dnn user from that database. and after a research he work hard and find a solution and i am thankful for him to allow me to include his research in to my blog :) Thanks Mat! come to the point now :) How to remove all users from the DNN 4.x  1) Step one Made all user as UNAUTHORIZE through the custom SP this SP effect the table on UserPortals and the Users you need to collect the user id from users and through sql query you need to update the UserPortal Authorization field true to false 2) Change admin and host Authorization manually to true 3) Go to Admin > Users > Delete all unauthorized users Now your all users will be deleted from the table And thanks once again for SABA ADIL :D Cheer up man! rocks Regards Rashid Imran Bilgrami http://www.bestvisualization.com 

Create Custom DNN Skin Objects

Dear Reader Today i got an article for the Developing and Implementing  DNN Skin Objects Click here to view or copy and past the URL  http://www.datasprings.com/help/dnn-tutorials/artmid/535/articleid/48/developing-and-implementing-dnn-skin-objects Regards Rashid Imran Bilgrami http://www.bestvisualization.com

Multi Language Website In DNN Or Content Localization in DNN

Dear Readers Before that when we create the Multi Language website in dnn we always create two portal but with DNN 5.x version you will use the language resource for creating multi language website website You are facing two major challenges to create Multi language website 1) Translation of the DNN controls in to local language 2) Translate your own pages navigation or menu in to multi languages 3) Translate your own custom content in to local language 4) Translate your custom modules in to the local languages Lets start with the first challange Challenge 1: Translation of the DNN controls in to local language  This is an easiest part, you can follow the steps achieve this challenge 1) Login with your host/Admin  account 2) Go to the Admin / Languages 3) Click on ADD Languages 4) Select the language that you need and Add it 5) You will see now two languages in your language section 6) With the list you will see ...

Display RSS feed Through ASP

Sub getRSS(NoOfResult,RssURL) Set xmlHttp = Server.CreateObject("MSXML2.XMLHTTP.4.0") xmlHttp.Open "Get", RssURL, false xmlHttp.Send() myXML = xmlHttp.ResponseText Set xmlResponse = Server.CreateObject("MSXML2.DomDocument.4.0") xmlResponse.async = false xmlResponse.LoadXml(myXML) Set xmlHttp = Nothing Set objLst = xmlResponse.getElementsByTagName("item") Set xmlResponse = Nothing intNoOfHeadlines = objLst.length -1 For i = 0 To (intNoOfHeadlines) Set     objHdl = objLst.item(i) for each child in objHdl.childNodes Select case lcase(child.nodeName)     case "title"           title = child.text     case "link"           link = child.text     case "description"           description = child.text      'You can also use the following: author,category,comments,enclosure,guid,pubDate,source End Select next    Count = Count+...

How to remove sugerCRM footer

Dear Readers if you need to remove the sugerCRM footer then follow this Open the file  include/MVC/Views/SugarView.php change the line var $options = array('show_header' => true, 'show_title' => true, 'show_subpanels' => true, 'show_search' => true, 'show_footer' => false, 'show_javascript' => true, 'view_print' => false,); 'show_footer' => false By default its is true  Regards  Rashid Imran Bilgrami  http://www.bestvisualization.com