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

HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesError message with Task Module from Clinton Patterson's Beginner's BlogError message with Task Module from Clinton Patterson's Beginner's Blog
Previous
 
Next
New Post
12/16/2014 9:59 AM
 

Having trouble with using the Task Module from Clinton Patterson's Beginner's Blog: http://www.dnnsoftware.com/Portals/0/... 

Found on page: http://www.dnnsoftware.com/community-...

Installs ok.

When I add it to a page I get a pink error bar with the inner details:

<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/x-ms-odc; charset=utf-8">
<meta name=ProgId content=ODC.Table>
<meta name=SourceType content=OLEDB>
<meta name=Catalog content="JIS_MySQL_Replications">
<meta name=Schema content=dbo>
<meta name=Table content="juwarran_MS">
<title>sumatra_sumatra_sql JIS_MySQL_Replications juwarran_MS</title>
<xml id=docprops><o:DocumentProperties
  xmlns:o="urn:schemas-microsoft-com:office:office"
  xmlns="http://www.w3.org/TR/REC-html40">
  <o:Name>sumatra_sumatra_sql JIS_MySQL_Replications juwarran_MS</o:Name>
 </o:DocumentProperties>
</xml><xml id=msodc><odc:OfficeDataConnection
  xmlns:odc="urn:schemas-microsoft-com:office:odc"
  xmlns="http://www.w3.org/TR/REC-html40">
  <odc:Connection odc:Type="OLEDB">
   <odc:ConnectionString>Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=True;Data Source=sumatra\sumatra_sql;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=CVOGELBACHER-13;Use Encryption for Data=False;Tag with column collation when possible=False;Initial Catalog=JIS_MySQL_Replications</odc:ConnectionString>
   <odc:CommandType>Table</odc:CommandType>
   <odc:CommandText>&quot;JIS_MySQL_Replications&quot;.&quot;dbo&quot;.&quot;juwarran_MS&quot;</odc:CommandText>
  </odc:Connection>
 </odc:OfficeDataConnection>
</xml>
<style>
<!--
    .ODCDataSource
    {
    behavior: url(dataconn.htc);
    }
-->
</style>
 
</head>

<body ='init()' scroll=no leftmargin=0 topmargin=0 rightmargin=0 style='border: 0px'>
<table style='border: solid 1px threedface; height: 100%; width: 100%' cellpadding=0 cellspacing=0 width='100%'>
  <tr>
    <td id=tdName style='font-family:arial; font-size:medium; padding: 3px; background-color: threedface'>
      &nbsp;
    </td>
     <td id=tdTableDropdown style='padding: 3px; background-color: threedface; vertical-align: top; padding-bottom: 3px'>

      &nbsp;
    </td>
  </tr>
  <tr>
    <td id=tdDesc colspan='2' style='border-bottom: 1px threedshadow solid; font-family: Arial; font-size: 1pt; padding: 2px; background-color: threedface'>

      &nbsp;
    </td>
  </tr>
  <tr>
    <td colspan='2' style='height: 100%; padding-bottom: 4px; border-top: 1px threedhighlight solid;'>
      <div id='pt' style='height: 100%' class='ODCDataSource'></div>
    </td>
  </tr>
</table>

 
<script language='javascript'>

function init() {
  var sName, sDescription;
  var i, j;
 
  try {
    sName = (location.href)
 
    i = sName.lastIndexOf(".")
    if (i>=0) { sName = sName.substring(1, i); }
 
    i = sName.lastIndexOf("/")
    if (i>=0) { sName = sName.substring(i+1, sName.length); }

    document.title = sName;
    document.getElementById("tdName").innerText = sName;

    sDescription = document.getElementById("docprops").innerHTML;
 
    i = sDescription.indexOf("escription>")
    if (i>=0) { j = sDescription.indexOf("escription>", i + 11); }

    if (i>=0 && j >= 0) {
      j = sDescription.lastIndexOf("</", j);

      if (j>=0) {
          sDescription = sDescription.substring(i+11, j);
        if (sDescription != "") {
            document.getElementById("tdDesc").style.fontSize="x-small";
          document.getElementById("tdDesc").innerHTML = sDescription;
          }
        }
      }
    }
  catch(e) {

    }
  }
</script>

</body>
 
</html>

 

 

Any suggestions?

 

Thanks!!

 

 

 
New Post
12/19/2014 8:38 AM
 

Charles,

It's tough to say what it could be. What skin are you using on the site? Is it the default skin or some different skin? I'm wondering if it may be a JS conflict of sorts. If it's not the default skin that ships with DNN then maybe try to switch the skin to the "Gravity" skin that ships with DNN and see if that works.

Also, what version of DNN are you running? Is it version 7?

 

 
New Post
12/19/2014 8:57 AM
 

Thanks for the reply!

I am running 07.03.02

And the skin for the page and the site is Gravity. It doesn't look like I installed any other skins on the site.

Any other ideas?

 
New Post
12/19/2014 8:57 AM
 

Thanks for the reply!

I am running 07.03.02

And the skin for the page and the site is Gravity. It doesn't look like I installed any other skins on the site.

Any other ideas?

 
New Post
12/19/2014 12:09 PM
 

Clarifying question here... did you download the zip file from the last page on the blog series and install that zip file into the system?

Reason I'm asking is to a.) make sure we're on the same page and b.) because that zip file contains all the project files. If you extract the components of that file and look inside it there will be an "Install" folder with the "MyFirstModule_00.00.01_Install.zip" in it. If you haven't you should use the install file to install zip file into the system. The rest are the project files that can be used in Visual Studio in case you want to open it up and extend or modify the code yourself.

 

 

 
Previous
 
Next
HomeHomeDevelopment and...Development and...Building ExtensionsBuilding ExtensionsModulesModulesError message with Task Module from Clinton Patterson's Beginner's BlogError message with Task Module from Clinton Patterson's Beginner's Blog


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