Reset the DNN Search Index
If you need to reset from scratch the DNN Search, for example if contain wrong link or removed link the simplest way is to using SQL (at your own risk as usual
) executing:
delete from searchword
delete from searchitem
After that you have to logged in your site with the Host account, go in the Search Admin Option the click on the re-index
That’s all
Thanks
Quick Add or Modify DNN SEO Redirector Entries
Hi,
if you are using to make same Redirect Actions, like 301, the DNN SEO Redirector you can notice that if you have to manage many entries, you can spend many time.
So to update quickly the best thing is to work directly Read more »
How to manage Tabs and Modules using SQL
If you have to update many parameters on the pages, and you are annoyed to go to each page and click settings, wait, update, …..
You can quickly update many info using SQL, managing some core tables
The following example are at your own risks, managing DNN by SQL is quick but not suggested. So pay attention, any errors may corrupt your installation.
Portals
This table contains the main info of all the portals f Read more »
Use IIF to show data only to Register User, using NoQuery in ListX
For example you need to create a ListX module, that is visible to All User Tab, with the following behaviour:
- The values get from the database are visible only to Registerd User
- For Non Registered (or user still not Logged In) you want to display the Register and Login link in the module
With ListX is very simple, just use the Read more »
StyleSheet in a ListX module
If you need to use your stylesheet in the ListX module is very simple, you just add at the top of the module the following line:
<link rel=”stylesheet” type=”text/css” href=”[PORTALPATH,System]skinYourSite.css” />
The file skinYourSite.css will be put in the path Read more »
Link to Login and Register Page on DNN
Hi,
if you need to add a quick link to Login and Register in your ListX or HTML modules, you can use
<a href=”javascript:__doPostBack(‘dnn$dnnLOGIN$cmdLogin’,”)”>Login</a>
<a href=”javascript:__doPostBack(‘dnn$dnnUSER$cmdRegister’,”)”>Register</a>
Bye
Comments (1)