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  |  

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


  Ads  
The best choice for your web site host, email hosting, and domain registration.
 


  Sponsors  

Meet Our Sponsors

Salaro -- Skins and more
OnyakTech
The best choice for your web site host, email hosting, and domain registration.
CrystalTech Web Hosting™
Webhost4life, specialists in DNN hosting
Mad Development is a full service interactive agency focusing on the merge of design, technology, e-commerce, and affiliate marketing by providing total website solutions.
 


DotNetNuke Forums
 
  Forum  General DotNetN...  Install It!  installation problem
Previous Previous
 
Next Next
New Post 5/12/2008 8:59 AM
User is offline Anthony Aragues
2 posts
10th Ranked


Re: installation problem 

I'm pretty sure I figured this out from looking at the error logs.

Many of the scripts don't match the case sentativity of the schema, most of them are conflicting on "ID" vs "Id"

So you either need to set you DB to be case-insensative, or modify the schema, scripts to match.

 
New Post 5/12/2008 10:59 AM
User is offline Anthony Aragues
2 posts
10th Ranked


Re: installation problem 

I've completely gone past all install errors, figured I'd share the solution:

1. Make sure you DB has collation set to "SQL_Latin_General_Cp1_CI_AS

That will solve the case sensitive issue with the tables/columns

2. Go through the sql files in the dataprovider folder to do a search and replace on all parameters that have mismatched case. The files that had mismatched case in params I found were

Schema

04.04.01

04.05.00

04.06.00

04.07.00

I found all of the errors by running the "Auto" installtion the other installs didn't seem to be providing the necessary logs. Once the auto installation ran, I wrote down which files failed, looked up their logs in the data providers and read the erros, it will tell you very plainly which parameters need to be fixed. Once you fix them in the sql files delete you db and redo the install.

 

 
New Post 5/21/2008 2:09 AM
User is offline axelvitali
2 posts
10th Ranked


Re: installation problem 

Hello all,
Having problems like everyone else, I let you know my case:
In my local computer at home (Windows XP) I´ve installed VS2005 professional, then SQL 2005 Express. Everything works fine.
Then I executed the DotNetNuke_04.08.02_StarterKit.vsi
I created a new web site on VS2005 and choose DotNetWeb Application.
In the App_Datat I created a DBname.mdf
Ctrl+F5 opens http://localhost:1146/websitename/Install/InstallWizard.aspx to set web site configuration in a few steps:
1) DotNetNuke Installation Wizard - Version 04.08.02
 Typical selected
 English selected
2) Checking File Permissions
 Test permission: Your site passed the permissions check.
3) Configure Database Connection
 - Selected DataBase=SQL Server 2005 (Express) File
 - Server=.\SQLExpress
 - Filename=DBname.mdf
 - Integrated security=checked
 - Run as db Owner=checked
 - Object Qualifier: (Empty)
 When test databaseconection=Connection Success

 Now I click on next

4) Run Database Installation Scripts
 This page has a javascript Error and stop loading.

What´s wrong? Any solution?

 
New Post 6/10/2008 12:11 AM
User is offline Declic Video
903 posts
declic-video-fx.com
7th Ranked


Re: installation problem 
Modified By Declic Video  on 6/10/2008 3:18:44 AM)

Hello,

I have the same kind of problem (no error 400), but when performing an upgrade from DNN 4.8.2 to DNN 4.8.3, I run the install http://www.mysite.com/install/install.aspx?mode=install (mode=upgrade give the same error) / I also tried Nina advice without success.
And then I have immediately the Dotnetnukeconfiguration error:

DotNetNuke Configuration Error

Domain Name "mydomain.com/Install" Does Not Exist In The Database

DotNetNuke supports multiple portals from a single database/codebase. It accomplishes this by converting the URL of the client browser Request to a valid PortalID in the Portals database table. The following steps describe the process:

  1. Web Server Processing
    • When a web server receives a Request from a client browser, it compares the file name extension on the target URL resource to its Application Extension Mappings defined in IIS.
    • Based on the corresponding match, IIS then sends the Request to the defined Executable Path ( aspnet_asapi.dll in the case of ASP.NET Requests ).
    • The aspnet_isapi.dll engine processes the Request in an ordered series of events beginning with Application_BeginRequest.
  2. Application_BeginRequest ( Common.Globals.asax.vb )
    • The Request URL is parsed based on the "/" character
    • A Domain Name is constructed using each of the relevant parsed URL segments.

      Examples:

      URL: http://www.domain.com/default.aspx = Domain Name: www.domain.com
      URL: http://xxx.xx.xxx.xx/default.aspx = Domain Name: xxx.xx.xxx.xx
      URL: http://localhost/DotNetNuke/default.aspx = Domain Name: localhost/DotNetNuke
      URL: http://www.domain.com/virtualdirectory/default.aspx = Domain Name: www.domain.com/virtualdirectory
      URL: http://www.domain.com/directory/default.aspx = Domain Name: www.domain.com/directory
    • Using the Domain Name, the application queries the database ( Portals table - PortalAlias field ) to locate a matching record.

      Note: If there are multiple URLs which correspond to the same portal then the PortalAlias field must contain each valid Domain Name in a comma seperated list.

      Example:

      URL: http://localhost/DotNetNuke/default.aspx
      URL: http://MACHINENAME/DotNetNuke/default.aspx
      URL: http://xxx.xx.xxx.xx/DotNetNuke/default.aspx
      PortalAlias: localhost/DotNetNuke,MACHINENAME/DotNetNuke,xxx.xx.xxx.xx/DotNetNuke

      Note: If you are installing the application to a remote server you must modify the PortalAlias field value for the default record in the Portals table according to the rules defined above.

 

 

Any advice ???

  1.  

 
New Post 7/22/2008 4:00 AM
User is offline Michael Sumerano
58 posts
10th Ranked


Re: installation problem 

I am experiencing the exact same issue: installing 4.8.2 fresh from the source copy.  I had created a new thread for it before realizing this thread is dealing with the *exact* problem we are having.  I might try the "upgrade" trick provided here in an earlier reply.

http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/107/threadid/243465/scope/posts/Default.aspx

One thing to note: there is very little difference between development.config and release.config.  I've done a diff on those files in the 4.8.2 version.  The only differences are that the release.config is set to auto-generate the validation key, debug mode=false, and the SqlDataProvider is set to have an object qualifier of "dnn_".  I'm thinking that for those of you using the development.config as your Web.config, the last difference is most likely the culprit of things not working.  It *would* work if during installation, you chose to create the database objects with a qualifier that matched what is in the development.config.

 
Previous Previous
 
Next Next
  Forum  General DotNetN...  Install It!  installation problem
 


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.

 


Venexus, Inc.
Need custom a custom DotNetNuke module? From module planning to deployment, including training and support, Venexus developers deliver end-to-end web solutions on time and on budget.
www.venexus.com
Bring2mind
Document Centric DNN Module Solutions
www.bring2mind.net
WEBPC™ DotNetNuke® sites for Small Business
WEBPC™ are internet consultants and web hosters catering to the small business market.
www.webpc.biz

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