YAFLogo

surieux
  • surieux
  • 78.8% (Friendly)
  • YAF Lover Topic Starter
15 years ago
Hello,

Looking to DNN module as a model for writing my own 'module', and having some problems with board and rank not created when respecting the order of calls in DNN modules, I finally discovered this comment:

namespace yaf_dnn

{

// TODO: forum setup

///

/// Summary description for DotNetNukeModule.

///

public partial class DotNetNukeModule : PortalModuleBase, IActionable

The TODO seems to signal that YAF install is not covered by this code ?

Should my code automatically redirect to install ? How to test for 'not installed ?

I will look in code but some help could avoid some search....

Many thanks

CS

Sponsor
Boskone
15 years ago
I may be wrong but I believe YAF will check the db version against it's own version and if they are different it will redirect itself to the /install/default.aspx.

Normally if I upgrade or install YAF I run the install/default.aspx before I go to the forum.

As for the TODO comment, It may just be an old comment.


Boskone - A DotNetNuke user.

RDSCC 

surieux
  • surieux
  • 78.8% (Friendly)
  • YAF Lover Topic Starter
15 years ago
Thanks for answer,

I finally get it running, my problem was in the redirect which does not specify default.aspx but rely on IIS allowing default.aspx as a default document for install folder.

Now I think it is a bug.

CS