Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsHelpHelpHelp module will not installHelp module will not install
Previous
 
Next
New Post
12/11/2006 1:41 AM
 

Hello Déclic (and whom ever it may concern)

Usually when you install a DNN module in your app it creates several tables and stored procedures in the app DB. The help module is no exception and while installing it some SQL scripts are performed and create new tables and new stored procedures that later on enable to operate the module.

The error that you and I encountered indicates that a specific stored procedure called : dbo.[Help_SearchTutorials]

was not created due to a SQL syntax error in it, thus you need to create it manually, in order to do that you have to reach the DB via some editor (I use the SQL Server Management Studio Express) and copy to it the SP syntax as it is written in the error massage, then correct it (as I mention in my last post by adding the + signs) and execute the query.

This will create your missing SP and you will be able to keep on working with the help module (note that after that there is no need to reinstall the module).

 
New Post
12/12/2006 1:13 PM
 
yairt wrote

{...} thus you need to create the procedure manually, in order to do that you have to reach the DB via some editor {...} and copy to it the SP syntax as it is written in the error message, then correct it (as I mention in my last post by adding the + signs) and execute the query.

This will create your missing SP and you will be able to keep on working with the help module (note that after that there is no need to reinstall the module).

That's just PERFECT yairt. It solves my problem. Sorry, I did not read completely and correctly your post, everything was clear.
So, for dummies like me, I summarize: open your database (any web interface provide a tool called new SQL query or equivalent), and just copy and paste the following code into this new sql query. It will create the adequate procedure (and no need to re-install anything, the help module just works !):

CREATE PROCEDURE dbo.[Help_SearchTutorials] @Search nvarchar(100) AS SELECT dbo.Help_Tutorials.TutorialGUID, dbo.Help_Tutorials.TutorialID, dbo.Help_Tutorials.Title, dbo.Help_Tutorials.ProductImage, dbo.Help_Tutorials.Featured, dbo.Help_Tutorials.KeyWords, dbo.Help_Tutorials.DownloadName, dbo.Help_Tutorials.ShortDesc, dbo.Help_Tutorials.Archive, dbo.Help_Tutorials.Description, 0 AS ViewOrder FROM dbo.Help_Tutorials WHERE (dbo.Help_Tutorials.Title LIKE N'%' + @Search + '%') OR (dbo.Help_Tutorials.KeyWords LIKE N'%' + @Search + '%') OR (dbo.Help_Tutorials.ShortDesc LIKE N'%' + @Search + '%') OR (dbo.Help_Tutorials.Description LIKE N'%' + @Search + '%')

Déclic Vidéo FX

 
New Post
12/12/2006 5:25 PM
 

Thats right.  The syntax error is caused be me not saving the sql file in UTF-8 format which makes the + not show in te resulting executed SQL thus causing the error.

Glad you got it sorted out.


Philip Beadle - Employee
 
New Post
12/15/2006 9:13 AM
 

yairt,

Did you solved your problem concerning your "error message" ?? Did you encounter other problems after the manual creation of the procedure ?... Are we sure that the help module is compatible with DNN 4.3.7 ???

Déclic Vidéo FX

 
New Post
12/17/2006 5:39 PM
 
The Help Module 2.0.4 is compatible with both DNN 3.x.x and DNN 4.x.x.  New release is now packaged and going through the release prcess. This new version is only compatible with DNN 4.3.x and above.

Philip Beadle - Employee
 
Previous
 
Next
HomeHomeDNN Open Source...DNN Open Source...Module ForumsModule ForumsHelpHelpHelp module will not installHelp module will not install


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, 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 DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out