Nytt fel
Nu lyckades jag lösa det men nu kom det fram ett nytt meddelande som jag inte riktigt förstår vad jag sk göra:
Server Error in '/' Application.
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'DotNetNuke.Framework.DefaultPage'.
Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Framework.DefaultPage" CodeFile="Default.aspx.vb" %>
Line 2: <%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Common.Controls" Assembly="DotNetNuke" %>
Line 3: <asp:literal id="skinDocType" runat="server"></asp:literal>
Source File: D:\Inetpub\gilbertgustafssonswwwroot\admin\Default.aspx Line: 1
Version Information: Microsoft .NET Framework Version:1.1.4322.2032; ASP.NET Version:1.1.4322.2032
hmm knapeigt kan kolla upp det senare under dagen kanske....
ZaimanMedlem sedan dec. 20014 239 inlägg ASP.NET 1.1 ??
Ska det var så?
Ingen aning
Ingen aning faktiskt. Sidan ligger på ett webbhotell. Finns det senare versioner?
/Robin
ZaimanMedlem sedan dec. 20014 239 inlägg Uj ja.. 2.0 och 3.5 finns.
Vilket webhotell har du?
Nu har jag kontaktat webhotellet och de har ökat till version 2.0 men nu är det ett nytt error och enligt dem skulle det vara något med koden.
Server Error in '/' Application.
--------------------------------------------------------------------------------
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load file or assembly 'DotNetNuke' or one of its dependencies. The system cannot find the file specified.
Source Error:
Line 1: <%@ Page Language="vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Framework.DefaultPage" CodeFile="Default.aspx.vb" %>
Line 2: <%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Common.Controls" Assembly="DotNetNuke" %>
Line 3: <asp:literal id="skinDocType" runat="server"></asp:literal>
Line 4: <html <%=xmlns%> <%=LanguageCode%>>
Source File: /admin/website/Default.aspx Line: 2
Assembly Load Trace: The following information can be helpful to determine why the assembly 'DotNetNuke' could not be loaded.
WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].
--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42
Forts.
Line2 skall egentligen vara röd och här är adressen direkt till sidan: http://www.gilbertgustafssons.se/admin/website/
ZaimanMedlem sedan dec. 20014 239 inlägg
robingustafsson skrev:
Parser Error
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load file or assembly 'DotNetNuke' or one of its dependencies. The system cannot find the file specified.
Säger ganska mycket de raderna... ;)
Nu har jag försökt se till att precis alla filer ligger uppe och då ändrade sig error-meddelandet till så som det såg ut innan. Och jag har inte flyttat den och jag har provat allt jag kan komma på men vet inte vad det kan bero på.
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 <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>
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 <customErrors> configuration tag to point to a custom error page URL.
<!-- Web.Config Configuration File -->
<configuration>
<system.web>
<customErrors mode="RemoteOnly" defaultRedirect="mycustompage.htm"/>
</system.web>
</configuration>
Så här är innehållet på web.config:
<?xml version="1.0"?>
<configuration>
<system.web>
<compilation debug="true">
</compilation>
<customErrors mode="Off"/>
\</system.web\>
</configuration>
Tacksam för svar
/Robin