|
Home > Archive > Microsoft Content Management Server > December 2004 > Secondary site with Windows Integrated Authentication
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Secondary site with Windows Integrated Authentication
|
|
|
| I am having a problem with the whole public site with anonymous access and
the secondary entry point with Windows Authentication issue. I have this set
up properly (I believe) with IIS and the second entry point using the same
file locations as the public site. I currently have guest access disabled on
the public site as I am still working on the templates etc. If I go the
public site, it gives me the default challenge and allows me to authenticate
and use the sytem just fine and I have create a posting for the "front page"
of the site.
When I go to the secondary entry point, it challenges for authentication
with the standard windows popup. I fill in the information and I am
immediately sent to the standard "Server Erro in '/' Application" page which
says the following:
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>
So I looked at the web.config page that is in the VS project that contains
the templates and turned off custom errors. Same error occures.
Which web.config do I need to work with and or how do I get the
authentication to work with this method?
Thanks!
| |
| Stefan [MSFT] 2004-12-29, 8:46 pm |
| Hi Marc,
I assume you did not change the template directory to be a web application
(needs to be done using IIS MMC).
In addition you need to create the "CMS" virtual directory inside(!) the
template directory (please compare with your other site). This virtual
directory is not allowed to be a web applicaiton (compare icon in both
websites).
Cheers,
Stefan.
"Marc" <Marc@discussions.microsoft.com> wrote in message
news:1F347658-33F5-431E-943E-5E45B0A10E9F@microsoft.com...
> I am having a problem with the whole public site with anonymous access and
> the secondary entry point with Windows Authentication issue. I have this
set
> up properly (I believe) with IIS and the second entry point using the same
> file locations as the public site. I currently have guest access disabled
on
> the public site as I am still working on the templates etc. If I go the
> public site, it gives me the default challenge and allows me to
authenticate
> and use the sytem just fine and I have create a posting for the "front
page"
> of the site.
>
> When I go to the secondary entry point, it challenges for authentication
> with the standard windows popup. I fill in the information and I am
> immediately sent to the standard "Server Erro in '/' Application" page
which
> says the following:
>
> 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>
>
> So I looked at the web.config page that is in the VS project that contains
> the templates and turned off custom errors. Same error occures.
>
> Which web.config do I need to work with and or how do I get the
> authentication to work with this method?
>
> Thanks!
| |
|
| Ok...I guess I am confused on how to make this second entry point work.
First is there a detailed description of how to do this somewhere on the web?
If not let me explain the set up I have and if you could give me a step by
step to sort this out I would greatly appreciate it.
First let me say that I am on 2003 and IIS6. I have my CMS site/VS Project
under IIS ->web sites folder ->default website. Under default website folder
I have the following virtual directories: _vit_bin, NR, MCMS and MySiteName.
Under the MySiteName virtual directory, I have virtual directories for
_vti_bin and CMS and then standard directories as follows: bin, Console,
Portal Templates, Project Templates, Shared User Controls.
So, I created a new website called "CMS Admin" under the websites folder and
pointed it to d:/inetpub/www. When I looked in the CMS Admin tree, I get all
of the standard folders that were in the default website directory including
MySiteName(but as a standard directory). I did not get the _vti_bin or MCMS
virtual directories. Under the MySiteName directory, I did not have have CMS
or _vti_bin virtual directories.
From here could you let me know what I need to do or have done wrong to make
this work?
Thanks!
"Stefan [MSFT]" wrote:
> Hi Marc,
>
> I assume you did not change the template directory to be a web application
> (needs to be done using IIS MMC).
> In addition you need to create the "CMS" virtual directory inside(!) the
> template directory (please compare with your other site). This virtual
> directory is not allowed to be a web applicaiton (compare icon in both
> websites).
>
> Cheers,
> Stefan.
>
> "Marc" <Marc@discussions.microsoft.com> wrote in message
> news:1F347658-33F5-431E-943E-5E45B0A10E9F@microsoft.com...
> set
> on
> authenticate
> page"
> which
> custom
> however,
> viewable
> "web.config"
> application's
> defaultRedirect="mycustompage.htm"/>
>
>
>
| |
| Stefan [MSFT] 2004-12-30, 7:50 am |
| Hi Marc,
first of all you need to configre the new web site as MCMS web entry point
using the SCA.
After this you need to change the template project folder in a web
application using IIS MMC.
In addition you need to create the "CMS" virtual directory inside the
template project web application and ensure that it points to the "IIS_CMS"
folder and ensure that the virtual directory is NOT a web application.
That's all.
Cheers,
Stefan
"Marc" <Marc@discussions.microsoft.com> wrote in message
news:4105C6D5-8A23-4F14-A23E-AD18D6A4F99A@microsoft.com...
> Ok...I guess I am confused on how to make this second entry point work.
> First is there a detailed description of how to do this somewhere on the
web?
> If not let me explain the set up I have and if you could give me a step
by
> step to sort this out I would greatly appreciate it.
>
> First let me say that I am on 2003 and IIS6. I have my CMS site/VS
Project
> under IIS ->web sites folder ->default website. Under default website
folder
> I have the following virtual directories: _vit_bin, NR, MCMS and
MySiteName.
>
> Under the MySiteName virtual directory, I have virtual directories for
> _vti_bin and CMS and then standard directories as follows: bin, Console,
> Portal Templates, Project Templates, Shared User Controls.
>
> So, I created a new website called "CMS Admin" under the websites folder
and
> pointed it to d:/inetpub/www. When I looked in the CMS Admin tree, I get
all
> of the standard folders that were in the default website directory
including
> MySiteName(but as a standard directory). I did not get the _vti_bin or
MCMS
> virtual directories. Under the MySiteName directory, I did not have have
CMS
> or _vti_bin virtual directories.
>
> From here could you let me know what I need to do or have done wrong to
make[vbcol=seagreen]
> this work?
>
> Thanks!
>
> "Stefan [MSFT]" wrote:
>
application[vbcol=seagreen]
and[vbcol=seagreen]
this[vbcol=seagreen]
same[vbcol=seagreen]
disabled[vbcol=seagreen]
the[vbcol=seagreen]
authentication[vbcol=seagreen]
application[vbcol=seagreen]
attribute[vbcol=seagreen]
custom[vbcol=seagreen]
contains[vbcol=seagreen]
| |
|
| Stefan,
Thanks for your help with this so far. I think I have it almost there as of
now. I sorted out the web application issue for the site folder as well as
the template folders. I am now getting the following error when trying to
access an assembly in the bin:
Server Error in '/KeepItMovingDallas/Portal Templates' 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: File or assembly name RenderPHServerControl, or one of
its dependencies, was not found.
Source Error:
Line 1: <%@ Register TagPrefix="slg"
Namespace="RenderPlaceholderServerControl" Assembly="RenderPHServerControl" %>
Line 2: <%@ Control Language="c#" AutoEventWireup="false"
Codebehind="PortalLeftNavigation.ascx.cs"
Inherits="KeepItMovingDallas.Portal_Templates.User_Controls.PortalLeftNavigation1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
Line 3: <%@ Register TagPrefix="uc1" TagName="DefaultConsole"
Src="../../Console/DefaultConsole.ascx" %>
Source File: D:\inetpub\wwwroot\KeepItMovingDallas\Po
rtal
Templates\UserControls\PortalLeftNavigat
ion.ascx Line: 1
Assembly Load Trace: The following information can be helpful to determine
why the assembly 'RenderPHServerControl' could not be loaded.
=== Pre-bind state information ===
LOG: DisplayName = RenderPHServerControl
(Partial)
LOG: Appbase = file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal Templates
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: RenderPHServerControl
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl/RenderPHServerControl.EXE.
--------------------------------------------------------------------------------
I am olny getting this from the secondary entry point. I tried converting
the bin folder in that website into a web application and no luck. I think
this last thing will have me sorted. Sorry for the confusion on this issue.
IIS is not my strong point but im learning 
Thanks!
"Marc" wrote:
> I am having a problem with the whole public site with anonymous access and
> the secondary entry point with Windows Authentication issue. I have this set
> up properly (I believe) with IIS and the second entry point using the same
> file locations as the public site. I currently have guest access disabled on
> the public site as I am still working on the templates etc. If I go the
> public site, it gives me the default challenge and allows me to authenticate
> and use the sytem just fine and I have create a posting for the "front page"
> of the site.
>
> When I go to the secondary entry point, it challenges for authentication
> with the standard windows popup. I fill in the information and I am
> immediately sent to the standard "Server Erro in '/' Application" page which
> says the following:
>
> 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>
>
> So I looked at the web.config page that is in the VS project that contains
> the templates and turned off custom errors. Same error occures.
>
> Which web.config do I need to work with and or how do I get the
> authentication to work with this method?
>
> Thanks!
| |
|
| Stefan,
Thanks for your help with this so far. I think I have it almost there as of
now. I sorted out the web application issue for the site folder as well as
the template folders. I am now getting the following error when trying to
access an assembly in the bin:
Server Error in '/KeepItMovingDallas/Portal Templates' 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: File or assembly name RenderPHServerControl, or one of
its dependencies, was not found.
Source Error:
Line 1: <%@ Register TagPrefix="slg"
Namespace="RenderPlaceholderServerControl" Assembly="RenderPHServerControl" %>
Line 2: <%@ Control Language="c#" AutoEventWireup="false"
Codebehind="PortalLeftNavigation.ascx.cs"
Inherits="KeepItMovingDallas.Portal_Templates.User_Controls.PortalLeftNavigation1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
Line 3: <%@ Register TagPrefix="uc1" TagName="DefaultConsole"
Src="../../Console/DefaultConsole.ascx" %>
Source File: D:\inetpub\wwwroot\KeepItMovingDallas\Po
rtal
Templates\UserControls\PortalLeftNavigat
ion.ascx Line: 1
Assembly Load Trace: The following information can be helpful to determine
why the assembly 'RenderPHServerControl' could not be loaded.
=== Pre-bind state information ===
LOG: DisplayName = RenderPHServerControl
(Partial)
LOG: Appbase = file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal Templates
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===
LOG: Policy not being applied to reference at this time (private, custom,
partial, or location-based assembly bind).
LOG: Post-policy reference: RenderPHServerControl
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl/RenderPHServerControl.DLL.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
Files/keepitmovingdallas_portal
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl.EXE.
LOG: Attempting download of new URL
file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates/bin/RenderPHServerControl/RenderPHServerControl.EXE.
--------------------------------------------------------------------------------
I am olny getting this from the secondary entry point. I tried converting
the bin folder in that website into a web application and no luck. I think
this last thing will have me sorted. Sorry for the confusion on this issue.
IIS is not my strong point but im learning 
Thanks!
"Stefan [MSFT]" wrote:
> Hi Marc,
>
> first of all you need to configre the new web site as MCMS web entry point
> using the SCA.
> After this you need to change the template project folder in a web
> application using IIS MMC.
> In addition you need to create the "CMS" virtual directory inside the
> template project web application and ensure that it points to the "IIS_CMS"
> folder and ensure that the virtual directory is NOT a web application.
>
> That's all.
>
> Cheers,
> Stefan
>
>
> "Marc" <Marc@discussions.microsoft.com> wrote in message
> news:4105C6D5-8A23-4F14-A23E-AD18D6A4F99A@microsoft.com...
> web?
> by
> Project
> folder
> MySiteName.
> and
> all
> including
> MCMS
> CMS
> make
> application
> and
> this
> same
> disabled
> the
> authentication
> application
> attribute
> custom
> contains
>
>
>
| |
| Stefan [MSFT] 2004-12-30, 5:52 pm |
| Hi Marc,
please check if the file exists in the following directory - which should be
the case:
D:\inetpub\wwwroot\KeepItMovingDallas\Po
rtal
Templates\bin\RenderPHServerControl.DLL
Cheers,
Stefan.
"Marc" <Marc@discussions.microsoft.com> wrote in message
news:673E9A85-916F-41C6-A096-6267B3FEB2DC@microsoft.com...
> Stefan,
>
> Thanks for your help with this so far. I think I have it almost there as
of
> now. I sorted out the web application issue for the site folder as well
as
> the template folders. I am now getting the following error when trying to
> access an assembly in the bin:
>
> Server Error in '/KeepItMovingDallas/Portal Templates' 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: File or assembly name RenderPHServerControl, or one
of
> its dependencies, was not found.
>
> Source Error:
>
>
> Line 1: <%@ Register TagPrefix="slg"
> Namespace="RenderPlaceholderServerControl"
Assembly="RenderPHServerControl" %>
> Line 2: <%@ Control Language="c#" AutoEventWireup="false"
> Codebehind="PortalLeftNavigation.ascx.cs"
>
Inherits="KeepItMovingDallas.Portal_Templates.User_Controls.PortalLeftNaviga
tion1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
> Line 3: <%@ Register TagPrefix="uc1" TagName="DefaultConsole"
> Src="../../Console/DefaultConsole.ascx" %>
>
>
> Source File: D:\inetpub\wwwroot\KeepItMovingDallas\Po
rtal
> Templates\UserControls\PortalLeftNavigat
ion.ascx Line: 1
>
> Assembly Load Trace: The following information can be helpful to determine
> why the assembly 'RenderPHServerControl' could not be loaded.
>
>
> === Pre-bind state information ===
> LOG: DisplayName = RenderPHServerControl
> (Partial)
> LOG: Appbase = file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
Templates
> LOG: Initial PrivatePath = bin
> Calling assembly : (Unknown).
> ===
>
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: RenderPHServerControl
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
>
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
>
templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl/RenderPHServerControl.EXE.
>
>
>
>
> --------------------------------------------------------------------------
------
>
> I am olny getting this from the secondary entry point. I tried converting
> the bin folder in that website into a web application and no luck. I
think
> this last thing will have me sorted. Sorry for the confusion on this
issue.[vbcol=seagreen]
> IIS is not my strong point but im learning 
>
> Thanks!
>
>
>
> "Marc" wrote:
>
and[vbcol=seagreen]
this set[vbcol=seagreen]
same[vbcol=seagreen]
disabled on[vbcol=seagreen]
authenticate[vbcol=seagreen]
page"[vbcol=seagreen]
which[vbcol=seagreen]
custom[vbcol=seagreen]
application[vbcol=seagreen]
however,[vbcol=seagreen]
viewable[vbcol=seagreen]
"web.config"[vbcol=seagreen]
attribute[vbcol=seagreen]
application's[vbcol=seagreen]
defaultRedirect="mycustompage.htm"/>[vbcol=seagreen]
contains[vbcol=seagreen]
| |
|
| Nevermind...got it all sorted out. Thanks for the help on this!
"Marc" wrote:
[vbcol=seagreen]
> Stefan,
>
> Thanks for your help with this so far. I think I have it almost there as of
> now. I sorted out the web application issue for the site folder as well as
> the template folders. I am now getting the following error when trying to
> access an assembly in the bin:
>
> Server Error in '/KeepItMovingDallas/Portal Templates' 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: File or assembly name RenderPHServerControl, or one of
> its dependencies, was not found.
>
> Source Error:
>
>
> Line 1: <%@ Register TagPrefix="slg"
> Namespace="RenderPlaceholderServerControl" Assembly="RenderPHServerControl" %>
> Line 2: <%@ Control Language="c#" AutoEventWireup="false"
> Codebehind="PortalLeftNavigation.ascx.cs"
> Inherits="KeepItMovingDallas.Portal_Templates.User_Controls.PortalLeftNavigation1" TargetSchema="http://schemas.microsoft.com/intellisense/ie5"%>
> Line 3: <%@ Register TagPrefix="uc1" TagName="DefaultConsole"
> Src="../../Console/DefaultConsole.ascx" %>
>
>
> Source File: D:\inetpub\wwwroot\KeepItMovingDallas\Po
rtal
> Templates\UserControls\PortalLeftNavigat
ion.ascx Line: 1
>
> Assembly Load Trace: The following information can be helpful to determine
> why the assembly 'RenderPHServerControl' could not be loaded.
>
>
> === Pre-bind state information ===
> LOG: DisplayName = RenderPHServerControl
> (Partial)
> LOG: Appbase = file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal Templates
> LOG: Initial PrivatePath = bin
> Calling assembly : (Unknown).
> ===
>
> LOG: Policy not being applied to reference at this time (private, custom,
> partial, or location-based assembly bind).
> LOG: Post-policy reference: RenderPHServerControl
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl/RenderPHServerControl.DLL.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///C:/WINNT/Microsoft.NET/Framework/v1.1.4322/Temporary ASP.NET
> Files/keepitmovingdallas_portal
> templates/6597d305/928e3f47/RenderPHServerControl/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl.EXE.
> LOG: Attempting download of new URL
> file:///D:/inetpub/wwwroot/KeepItMovingDallas/Portal
> Templates/bin/RenderPHServerControl/RenderPHServerControl.EXE.
>
>
>
>
> --------------------------------------------------------------------------------
>
> I am olny getting this from the secondary entry point. I tried converting
> the bin folder in that website into a web application and no luck. I think
> this last thing will have me sorted. Sorry for the confusion on this issue.
> IIS is not my strong point but im learning 
>
> Thanks!
>
>
>
> "Stefan [MSFT]" wrote:
>
|
|
|
|
|