Giter VIP home page Giter VIP logo

cs-dotnetnuke's People

Watchers

 avatar

cs-dotnetnuke's Issues

Enter one-line summary

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 23 Jan 2007 at 9:37

CS_Website project build error

What steps will reproduce the problem?
1. In VS 2005 solution browser window, right click the CS_Website project
and click Build. I then got an error message in the error list window says
"server tags are not well-formed", the file that generated that error is
under <CS_Website>\DesktopModules\Blog\EditEntry.aspx


What version of the product are you using? On what operating system?
latest pull from the svn repos. I believe it's 4.4.0. I was doing it on
windows XP SP2


Please provide any additional information below.
I also noticed that some of the modules such as Blog, Forum and Search that
were originally written in VB.NET did not have corresponding .vb code
behind file included. This would cause an error message "could not find
code file ..." when editing the aspx file in VS 2005

I removed Blog, Forum and Search module directory manually and removed
their definition via the portal. Things still seem to be working but I'm
not sure if I should do that.

Thank you.


Original issue reported on code.google.com by [email protected] on 31 Oct 2007 at 9:31

upgrade error for VB4.3.7 to CS4.4.0


1. start with base install of 4.3.7 VB
2. switch site to CS 4.4.0
3. upgrade..... 

errors occured !!

It completes and will produce the login screen but when you look at the 
data behind the portals didnt get moved and userinfo

this is running on xp sp2

Original issue reported on code.google.com by [email protected] on 13 Mar 2008 at 2:49

Attachments:

[4.4.0] Save function error in Config.cs

What steps will reproduce the problem?
1. after install finished, occurs "stack overflow"
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?
CS-DotNetNuke 4.4.0

Please provide any additional information below.

The function body of two Save() functions should be swapped in  
CS_Library\DotNetNuke\Common\Utilities\Config.cs as follows:


        public static string Save(XmlDocument xmlDoc)
        {
            return Save( xmlDoc, "web.config" );
        }

        public static string Save(XmlDocument xmlDoc, string filename)
        {
            try
            {
                // save the config file
                XmlTextWriter writer = new XmlTextWriter
(Globals.ApplicationMapPath + "\\" + filename, null);
                writer.Formatting = Formatting.Indented;
                xmlDoc.WriteTo(writer);
                writer.Flush();
                writer.Close();
                return "";
            }
            catch (Exception exc)
            {
                // the file may be read-only or the file permissions may 
not be set properly
                return exc.Message;
            }
        }











Original issue reported on code.google.com by [email protected] on 11 Feb 2007 at 11:20

[4.4.0] Globals.cs with incorrect version string

What steps will reproduce the problem?
1. Open DotNetNuke site will execute repeated install procedure
2.
3.

What is the expected output? What do you see instead?
install once

What version of the product are you using? On what operating system?
4.4.0

Please provide any additional information below.

The version string (glbAppVersion) in 
CS_Library\DotNetNuke\Common\Globals.cs should be "04.04.00" instead 
of "04.04.40"




Original issue reported on code.google.com by [email protected] on 11 Feb 2007 at 11:14

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.