Small width layout Medium width layout Maximum width layout Small text Medium text Large text
     Search
Downloads Downloads Directory Directory Forums Forums Forge Forge Blogs Blogs        Marketplace Marketplace Careers Program Careers
Community › Forums Register  |  

  Need Help?  
Professional technical support for DotNetNuke is available from DotNetNuke Corporation.
 


  Ads  
Biz Modules provides professional business modules and solutions for DotNetNuke
 


  Sponsors  

Meet Our Sponsors

eUKhost.com is commited to offer exceptional UK Windows Web Hosting solutions with quality 24x7 technical support.Our plans support ASP.Net, ASP, ASP.NET Ajax extensions, XML, MSSQL, MySQL, PHP,DNN, multiple domains and Shared SSL as standard.
SmarterTools
The Official Microsoft ASP.NET Website
Portal Webhosting - Hosting For Developers
Red-Gate Software
MaximumASP
 


DotNetNuke Forums
 
  Forum  DotNetNuke® Pro...  Help Module [Le...  How I got the Help module (2.0.4) to work !
Previous Previous
 
Next Next
New Post 12/17/2006 11:05 AM
User is offline Declic Video
902 posts
declic-video-fx.com
7th Ranked


How I got the Help module (2.0.4) to work ! 
Modified By Philip Beadle  on 1/16/2007 9:02:38 PM)

Hello,

Following JonRobertson advice, I have made this new post to try helping new user with the HELP Module V2.0.4.
I had many problem in the past to have a HELP module V2.0.4 fully functionnal (and it seems that I am not the only one). So, I carefully read all threads here and I have prepared this small guide to help you. Proceed as follows and everything will work as it should (my Help module is fully functionnal after one day of test). I hope it can help other people having similar problems:

1- If you have already installed the HELP module and it is not working, delete it (same way than uninstalling any module)
2- Access your database (generally, your provider gives you the possibility to access your database using a web tool). Run the following command :
drop procedure dbo.helpxxxx
(replace xxx with all the procedure which have not been deleted by the process at step 1)
3- Download the latest version of Help module (today 2.0.4)
4- Install the HELP module as usual (you may have error messages).
5- To correct the error messages you had before, you must install one sp by typing the following command in your portal (log as HOST, choose the 'sql' menu, and tick the box "run as script" - do not forget the two carriage return at the end of the command):

CREATE PROCEDURE {databaseOwner}[{objectQualifier}Help_SearchTutorials]

@Search nvarchar(100)

AS

SELECT    
  {databaseOwner}{objectQualifier}Help_Tutorials.TutorialGUID,
  {databaseOwner}{objectQualifier}Help_Tutorials.TutorialID,
  {databaseOwner}{objectQualifier}Help_Tutorials.Title,
  {databaseOwner}{objectQualifier}Help_Tutorials.ProductImage,
  {databaseOwner}{objectQualifier}Help_Tutorials.Featured,
  {databaseOwner}{objectQualifier}Help_Tutorials.KeyWords,
  {databaseOwner}{objectQualifier}Help_Tutorials.DownloadName,
  {databaseOwner}{objectQualifier}Help_Tutorials.ShortDesc,
  {databaseOwner}{objectQualifier}Help_Tutorials.Archive,
  {databaseOwner}{objectQualifier}Help_Tutorials.Description,
        0 AS ViewOrder
FROM {databaseOwner}{objectQualifier}Help_Tutorials
WHERE   ({databaseOwner}{objectQualifier}Help_Tutorials.Title LIKE N'%' + @Search + '%')

OR
  ({databaseOwner}{objectQualifier}Help_Tutorials.KeyWords LIKE N'%' + @Search + '%') OR
        ({databaseOwner}{objectQualifier}Help_Tutorials.ShortDesc LIKE N'%' + @Search +

'%') OR
  ({databaseOwner}{objectQualifier}Help_Tutorials.Description LIKE N'%' + @Search + '%')

GO

 

6- Finally, alter one procedure to have the buttons up/down correctly shown in your category module. Type the following in your portal (log as HOST, click on "sql" menu, and tick the box "run as script" - do not forget the two carriage return at the end of the text):

ALTER PROCEDURE {databaseOwner}[{objectQualifier}Help_ListCategoryActiveByParent]

@ModuleID int,
@ParentID int
 
AS
SELECT   [CategoryID],
   [CategoryGUID],
   [Name],
   [Description],
   [Image],
   [KeyWords],
   [ModuleID],
   [Order],
   [Level],
   [Parent],
   [Visible],
   [Deleted]

FROM   {databaseOwner}{objectQualifier}Help_Category

WHERE  [Parent] = @ModuleID AND [ModuleID] = @ParentID
AND   [Deleted] <> 1
AND   [Visible] <> 0

ORDER BY [Level] ASC,
   [Parent] ASC,
   [Order] ASC
  
GO

 

7- Finally, you should verify that your help module is linked to the correct category. To do so, open the settings in your help module (not the category module), and verify that the "set the category module" is not empty. UPDATE (even if you did not make any changes). Then, you should have a fully functionnal HELP module.

Hope it can help some of you,
Déclic Vidéo FX

 
New Post 12/17/2006 12:11 PM
User is offline Hugues Pirotte
2 posts
sbsfinance.org.x.seekdotnet.com/
10th Ranked


Re: How I got the Help module (2.0.4) to work ! 
Many thanks for your time in trying to solve this case. It helped a lot, even for a rookie like me.
 
New Post 12/17/2006 8:34 PM
User is offline Jon
84 posts
10th Ranked


Re: How I got the Help module (2.0.4) to work ! 
It helped me too.  Even though I had read all of the posts, I didn't have the step by step summary that Declic Video created.

We REALLY need this post stickied until DNN 3/4 users have access to a version that no longer has these issues.
 
New Post 12/29/2006 11:19 PM
User is offline Mario Lopez
6 posts
10th Ranked


Re: How I got the Help module (2.0.4) to work ! 
Great Help.  I was actually changing everything from the database end to make it work. 
 
New Post 1/16/2007 5:03 PM
User is offline Philip Beadle
1094 posts
www.philipbeadle.net
6th Ranked








Re: How I got the Help module (2.0.4) to work ! 
Thanx for the distillation :)  A new version is now in release tracking and will be released shortly.  It addresses all issues raised in these forums.
Philip Beadle (DNN Core Team)
My Blog
My DNN Blog
TDD DNN Module Template
 
Previous Previous
 
Next Next
  Forum  DotNetNuke® Pro...  Help Module [Le...  How I got the Help module (2.0.4) to work !
 


Forum Policy

These Discussion Forums are dedicated to the discussion of the DotNetNuke Web Application Framework.

For the benefit of the community and to protect the integrity of the project, please observe the following posting guidelines:

1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DotNetNuke.
2. Discussion or promotion of DotNetNuke product releases under a different brand name are strictly prohibited.
3. No Flaming or Trolling.
4. No Profanity, Racism, or Prejudice.
5. Site Moderators have the final word on approving/removing a thread or post or comment.
6. English language posting only, please.

 


Web Valley
Website design, Database development
www.webvalley.com
UK DotNetNuke CMS installation, hosting & support
UK based installation, branding, customising, integration, hosting, training, support and maintenance services for DotNetNuke
www.deburca.co.uk
Need Help with your DotNetNuke website?
Jango Studios offers exclusive DotNetNuke Skin Design, Module Development, Web Marketing and Web Hosting.
www.jangostudios.net

DotNetNuke Corporation   Terms Of Use  Privacy Statement
DotNetNuke®, DNN®, and the DotNetNuke logo are trademarks of DotNetNuke Corporation
Hosted by MaximumASP