Mitchel's Forums

Subject: DNN 4.5.5 installation error
Prev Next
You are not authorized to post a reply.

Page 1 of 212 > >>
AuthorMessages
Joe VargasUser is Offline
New Poster
New Poster
Posts:1

08/17/2007 4:08 PM  

Hello Mitchell.

I followed your step by step guide in thsi web site to do a local installation on my  XP Professional  SP2 machine using the starter kit. My database engine is SQL2005 Express Edition

When I run the installation file at http://localhost/dotnetnuke455/install/install.aspx I got the next error.

  Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: It is an error to use a section registered as allowDefinition='MachineToApplication' beyond application level.  This error can be caused by a virtual directory not being configured as an application in IIS.

Source Error:

<pre>Line 57:   </system.codedom>
Line 58:   <system.web><fontcolor="#ff0000">Line 59:     <machineKey 
&lt;/font>Line 60:       validationKey=&quot;F9D1A2D3E1D3E2F7B3D9F90FF3965ABDAC304902&quot; 
Line 61:       decryptionKey=&quot;F9D1A2D3E1D3E2F7B3D9F90FF3965ABDAC304902F8D923AC&quot;</pre>

Source File: c:\inetpub\wwwroot\dotnetnuke455\web.config    Line: 59
Thanks for your help. Joe

Server Error in '/' Application.

Configuration Error

 

Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

08/18/2007 1:35 PM  
Joe,

This error is caused by the DNN Web.Config file not being at the ROOT of the Virtual directory.

In your example, double check that you have an application name set for your "DotNetNuke455" virtual directory. Also, make sure that you do not have a web.config file in the root location on your system that is 1 folder above DNN.

For example if your DNN virtual directory is in C:\inetpub\wwwroot\dotnetnuke455, make sure you do NOT have a web.config file at c:\inetpub\wwwroot.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/01/2007 4:31 AM  
Hi Mithel & Guys, my problem is when i want to start the install process (http://mydomain.com/install/installwizard.aspx) Runtime Error appear into my browser, i mean the install process is not going on. the Error sound like this:-

Server Error in '/' Application.
Runtime Error
Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a tag within a "web.config" configuration file located in the root directory of the current web application. This tag should then have its "mode" attribute set to "Off".










Notes: The current error page you are seeing can be replaced by a custom error page by modifying the "defaultRedirect" attribute of the application's configuration tag to point to a custom error page URL.










Please somebody help me, it urgent for me, please help me...thanks in advance...
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/01/2007 12:34 PM  
If you change the customErrors mode setting to "Off" do you get a different error?

If you do not get a different error, ensure that your virtual directory is set to ASP.NET 2.0

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/01/2007 10:45 PM  

Thanks Mitchel...i already solve that problem, now i'm facing with new error, it call Compilation Error shown like below:-

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30512: Option Strict On disallows implicit conversions from 'Integer' to 'String'.

Source Error:

 
Line 16:         var ELEMENT_ID_PREFIX = "Progress_"; // ID prefix for progress bar elements
Line 17: var current = 0; // Last rendered progress bar element
Line 18: var pageNo = <%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%>;
Line 19: var initialAction = '<%=GetBaseDataBaseVersion()%>';
Line 20: var nextButtonID = 'wizInstall_StepNavigationTemplateContainerID_StepNextButton';

Source File: C:\Inetpub\vhosts\mydomain\install\InstallWizard.aspx    Line: 18

 

Please help me Mitchel..it urgent..thanks...

Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/01/2007 11:14 PM  
It looks like you will need to wrap the <%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%> portion with a int.Parse(). To do a specific conversion to integer.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/01/2007 11:23 PM  
please guide how to do it Mitchel...i don't know how to do..please.. thanks...i'm really need your help and attention...
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/01/2007 11:33 PM  
You can open the install wizard.aspx file and simply change this line:

var pageNo = <%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%>;

To This line, (I believe....)

var pageNo = int.parse(<%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%>);

I am not 100% sure if this will fix it but it is something to try. Have you modified the installation package at all? As it is very suprising to see an error like this in the wizard.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/01/2007 11:37 PM  

Thanks a lot Mitchel for your attention...i'll try it now...anything i will let know either it work or not...thanks again..wait for me...thanks..

hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/01/2007 11:45 PM  
It still the same..Mitchel...please give me another option..please...thanks..:-


Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30512: Option Strict On disallows implicit conversions from 'Integer' to 'String'.

Source Error:

Line 16: var ELEMENT_ID_PREFIX = "Progress_"; // ID prefix for progress bar elements
Line 17: var current = 0; // Last rendered progress bar element
Line 18: var pageNo = int.parse(<%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%>);
Line 19: var initialAction = '<%=GetBaseDataBaseVersion()%>';
Line 20: var nextButtonID = 'wizInstall_StepNavigationTemplateContainerID_StepNextButton';


Source File: C:\Inetpub\vhosts\mydomain\install\InstallWizard.aspx Line: 18
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/01/2007 11:57 PM  
Ok, so I read the error...try this

<%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex.ToString())%>;

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 12:10 AM  
wait..i'll try it..thanks...
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 12:16 AM  
it replace with new error:-

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The entry 'SiteSqlServer' has already been added.

Source Error:

Line 21:
Line 22:
Line 23: Line 24: name="SiteSqlServer"
Line 25: connectionString="Data Source=.\SQLExpress;Integrated Security=True;User Instance=True;AttachDBFilename=|DataDirectory|Database.mdf;"


Source File: C:\Inetpub\vhosts\mydomain\web.config Line: 23

Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.210
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/02/2007 12:37 AM  
The bood news is that we are making progress.

Be sure that in the section of your web.config that you do not have multiple definitions that are uncommented.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 3:22 AM  
still come with same problem:-

Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

Compiler Error Message: BC30512: Option Strict On disallows implicit conversions from 'Integer' to 'String'.

Source Error:

Line 16: var ELEMENT_ID_PREFIX = "Progress_"; // ID prefix for progress bar elements
Line 17: var current = 0; // Last rendered progress bar element
Line 18: var pageNo = <%=ClientAPI.GetSafeJSString(wizInstall.ActiveStepIndex)%>;
Line 19: var initialAction = '<%=GetBaseDataBaseVersion()%>';
Line 20: var nextButtonID = 'wizInstall_StepNavigationTemplateContainerID_StepNextButton';


Source File: C:\Inetpub\vhosts\mydomain\install\InstallWizard.aspx Line: 18

Are you still online Mitchel?..please help me..thanks...
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/02/2007 3:29 AM  
Line 18 is missing the .ToString() code as mentioned above.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 4:22 AM  
ok... i change it right now..thanks...
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 4:39 AM  
thanks god....thanks to you Mitchel....we almost succeed, this is following statement:-


DotNetNuke
DotNetNuke Error: - Version 04.05.05

DotNetNuke Configuration Error
Could not find a part of the path 'C:\Inetpub\vhosts\mydomain\Config\Backup_2007921639\web_.config'.Access to the path 'C:\Inetpub\vhosts\mydomain\web.config' is denied.

DotNetNuke has extensive file upload capabilities for content, modules, and skins. These features require custom security settings so that the application is able to create and remove files in your website.

Using Windows Explorer, browse to the root folder of the website ( C:\DotNetNuke by default ). Right-click the folder and select Sharing and Security from the popup menu ( please note that if you are using Windows XP you may need to Disable Simple File Sharing before these options are displayed ). Select the Security tab. Add the appropriate User Account and set the Permissions.

* If using Windows 2000 - IIS5
1. the [SERVER]\ASPNET User Account must have Read, Write, and Change Control of the virtual root of your website.

* If using Windows 2003 - IIS6
1. the NT AUTHORITY\NETWORK SERVICE User Account must have Read, Write, and Change Control of the virtual root of your website.



Image showing the security settings for the root folder of the website must be set to Read, Write and Change Control for the ASPNET or NT AUTHORITY/NETWORK SERVICE accounts. Return to Site

What should i do now, next step please...thanks..
Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/02/2007 4:52 AM  
Ok, you will need to make sure that the ASPNET account has full permissions to the ENTIRE DNN directory as it mentions in the error message.

I had this problem once before where the permissions were not properly copied to all sub folders, so when checking your permissions double check the sub folders as well, and ensure they are set to inherit permissions.

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 5:07 AM  

Finally Mitchel....thanks a lot Master Mitchel...your are my good teacher...done already....thanks again and again..and again...i appreciate all effort you gift...

See you...takecare yourself my Teacher...thanks...

Mitchel SellersUser is Offline
Site Admin/Owner
Guru
Guru
Posts:5644

09/02/2007 5:33 AM  
Great!! I am glad that you were able to get it installed!

Feel free to come back with any other questions you might have!

-Mitchel Sellers
MCITP, MCPD, MCTS
Director of Development
IowaComputerGurus Inc.

View Mitchel Sellers's profile on LinkedIn

3Essentials is my recommended Shared Hosting Provider

This site is hosted on a VPS from HostMySIte.com

Mosso is my recommended cloud computing provider. Use reference code REF-ICG to get $100 off your second month!

To get Guaranteed DNN Support check out our affordable DNN Technical Support Programs
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 6:26 AM  
Mitchel, are you still there? please reply..thanks..
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 6:49 AM  
still got some error...

After finishing my installation process this error show up:-

http://www.mydomain.com/Default.aspx?tabid=36&error=Object+reference+not+set+to+an+instance+of+an+object.&content=0

please help me...thanks..
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 9:23 AM  
Master Mitchel, Please help me...skype: hairi.com
hairi rahmanUser is Offline
New Poster
New Poster
Posts:22

09/02/2007 10:14 PM  
Posted By hairi.com on 09/02/2007 6:49 AM
still got some error...

After finishing my installation process this error show up:-

http://www.mydomain.com/Default.aspx?tabid=36&error=Object+reference+not+set+to+an+instance+of+an+object.&content=0

please help me...thanks..

 

Mitchel, i'm still waiting for your feedback, please help me about the matters...thanks...

You are not authorized to post a reply.
Page 1 of 212 > >>

Forums >Development Discussion >DotNetNuke > DNN 4.5.5 installation error



ActiveForums 3.7