Welcome to HostingForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

IIS serves empty page

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  Tracing IIS / OWA bottlenecks?  
Author Message
anonymous431

External


Since: Nov 13, 2003
Posts: 3



(Msg. 1) Posted: Tue Aug 10, 2004 12:39 pm
Post subject: IIS serves empty page
Archived from groups: microsoft>public>inetserver>iis (more info?)

I am running a website that was working until yeaterday
when it just disappeared I do not get any errors when I
try to browse the page it comes up with an empty page
any Ideas.

 >> Stay informed about: IIS serves empty page 
Back to top
Login to vote
user1772

External


Since: Jun 10, 2004
Posts: 1807



(Msg. 2) Posted: Tue Aug 10, 2004 8:17 pm
Post subject: Re: IIS serves empty page [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Tue, 10 Aug 2004 09:39:10 -0700, "Patrick"
<anonymous.RemoveThis@discussions.microsoft.com> wrote:

 >I am running a website that was working until yeaterday
 >when it just disappeared I do not get any errors when I
 >try to browse the page it comes up with an empty page
 >any Ideas.

Put something on the page.

Or give us enough details that we can help. Look at the source and
see what got sent to the browser. Look at the page from the server.
Try a Hello World version. If you can't figure it out and need to ask
us again, at least tell us what kind of page it is, and show us the
page code that is supposed to display. Post the log entry wehn the
page is requested.

For all we can tell, you are setting the font color to white and have
a white background...

Jeff<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: IIS serves empty page 
Back to top
Login to vote
anonymous77

External


Since: Oct 14, 2003
Posts: 468



(Msg. 3) Posted: Wed Aug 11, 2004 4:30 am
Post subject: Re: IIS serves empty page [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

This is the code I am tryijng to run

<cfinclude template="myglobals.cfm">

<!--- <!--- Are we forcing a certain application to be
used --->
<cfif isdefined("URL.SetApplication")>
  <cfoutput>
  <META HTTP-EQUIV="Refresh"
CONTENT="0;URL=#request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#">
  <font face="Arial,Helvetica,sans-serif"
color="000080" size="2"><em><strong>Please wait..
</strong></em>Loading #request.branding.product#.<br>
  <br>
  <font size="1"><a
href="#request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#">If your browser
does not support automatic redirection, click
here</a></font></font>
  </cfoutput>
  <cfabort>
</cfif> --->

<!--- Redirect user to the same page, but append the token
to the end if
CFID and CFTOKEN don't exist in the URL --->
<cfif not isdefined("url.fuseaction") AND not isdefined
("form.fuseaction")>
  <cfif cgi.query_string eq "">
   <cflocation
url="#Request.Website#/index.cfm?
FuseAction=hom.Home#Request.URLToken#" addtoken="No">
  <cfelse>
   <cflocation
url="#Request.Website#/index.cfm?#cgi.Query_String#"
addtoken="Yes">
  </cfif>
</cfif>

<!--- In case no fuseaction was given, I'll set up one to
use by default. --->
<cfparam name="attributes.fuseaction" default="hom.home">

<!--- Include Circuits if I'm the home app--->
<cftry>
  <cfif NOT IsDefined( 'request.Circuits' )>
  <cfinclude template="/hmapping/circuits.cfm">
  </cfif>
  <cfcatch type="MissingInclude">
   <cfsetting enablecfoutputonly="No">
   I couldn't find the file Circuits.cfm.
  <cfabort>
  </cfcatch>
</cftry>

<!--- Translate the fuseaction sent to me into a fully
qualified fuseaction --->
<cfparam name="faTranslated" default="FALSE"
type="boolean">
<cftry>
   <cfif NOT faTranslated AND ListLen(
attributes.fuseaction, '.' ) GT 1>
   <cfset attributes.fuseaction =
request.circuits[ListFirst( attributes.fuseaction, '.' )]
& '.' & ListLast( attributes.fuseaction, '.' )>
    <cfset faTranslated = TRUE>
   </cfif>
<cfcatch>
  <cfsetting enablecfoutputonly="No">
   I could not resolve the circuit
application prefix sent to me.
  <cfabort>
  </cfcatch>
</cftry>

<!--- Remove the first element of the
attributes.fuseaction so if we
  are nesting down, then the cfinclude's will be
including the second element
  of the fuseaction e.g.
  attributes.fuseaction = master.sub.sub2
 
  as they nest down, the includes will look like
 
  (Root folder) /master/index.cfm
  (Root folder/master) sub/index.cfm
  (Root folder/master/sub) sub2/index.cfm
   --->
 
<cfif ListLen( attributes.fuseaction, '.' ) GT 1>
 
<cfset attributes.fuseaction = ListDeleteAt(
attributes.fuseaction, 1, '.' )>
</cfif>

<!--- Peel off the first layer and determine whether to
delegate
the fuseaction. --->
<cfif ListLen( attributes.fuseaction, '.' ) GT 1>
  <cfsetting enablecfoutputonly="No">
<cfinclude template="#ListFirst(
attributes.fuseaction, '.' )#/index.cfm">
<cfelse>
  <!--- I'm going to get one (and only one)
fuseaction at a time.
  Fuseactions correspond to methods or messages in
OO languages. --->
<cfsetting enablecfoutputonly="No">
<cfswitch expression="#attributes.fuseaction#">
<cfdefaultcase>
   <cfoutput>
   I received a fuseaction called <FONT
COLOR="000066">"#attributes.fuseaction#"</FONT>
   that I don't have a handler for.</cfoutput>
  </cfdefaultcase>
</cfswitch>
</cfif>
<cfsetting enablecfoutputonly="No">

 >-----Original Message-----
 >On Tue, 10 Aug 2004 09:39:10 -0700, "Patrick"
 ><anonymous.TakeThisOut@discussions.microsoft.com> wrote:
 >
  >>I am running a website that was working until yeaterday
  >>when it just disappeared I do not get any errors when I
  >>try to browse the page it comes up with an empty page
  >>any Ideas.
 >
 >Put something on the page.
 >
 >Or give us enough details that we can help. Look at the
source and
 >see what got sent to the browser. Look at the page from
the server.
 >Try a Hello World version. If you can't figure it out
and need to ask
 >us again, at least tell us what kind of page it is, and
show us the
 >page code that is supposed to display. Post the log
entry wehn the
 >page is requested.
 >
 >For all we can tell, you are setting the font color to
white and have
 >a white background...
 >
 >Jeff
 >.
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS serves empty page 
Back to top
Login to vote
anonymous77

External


Since: Oct 14, 2003
Posts: 468



(Msg. 4) Posted: Wed Aug 11, 2004 8:13 am
Post subject: Re: IIS serves empty page [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The website is dependant on coldfusion
 >-----Original Message-----
 >On Tue, 10 Aug 2004 09:39:10 -0700, "Patrick"
 ><anonymous RemoveThis @discussions.microsoft.com> wrote:
 >
  >>I am running a website that was working until yeaterday
  >>when it just disappeared I do not get any errors when I
  >>try to browse the page it comes up with an empty page
  >>any Ideas.
 >
 >Put something on the page.
 >
 >Or give us enough details that we can help. Look at the
source and
 >see what got sent to the browser. Look at the page from
the server.
 >Try a Hello World version. If you can't figure it out
and need to ask
 >us again, at least tell us what kind of page it is, and
show us the
 >page code that is supposed to display. Post the log
entry wehn the
 >page is requested.
 >
 >For all we can tell, you are setting the font color to
white and have
 >a white background...
 >
 >Jeff
 >.
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS serves empty page 
Back to top
Login to vote
user1772

External


Since: Jun 10, 2004
Posts: 1807



(Msg. 5) Posted: Fri Aug 13, 2004 5:08 pm
Post subject: Re: IIS serves empty page [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 11 Aug 2004 05:13:30 -0700,
<anonymous.RemoveThis@discussions.microsoft.com> wrote:

 >The website is dependant on coldfusion

Then try this page to make sure IIS and ColdFusion are working
correctly:

<HTML>
<BODY>
<CFOUTPUT>
Hello #FirstName#
</CFOUTPUT>
</BODY>
</HTML>

Jeff


  >>-----Original Message-----
  >>On Tue, 10 Aug 2004 09:39:10 -0700, "Patrick"
  >><anonymous.RemoveThis@discussions.microsoft.com> wrote:
  >>
   >>>I am running a website that was working until yeaterday
   >>>when it just disappeared I do not get any errors when I
   >>>try to browse the page it comes up with an empty page
   >>>any Ideas.
  >>
  >>Put something on the page.
  >>
  >>Or give us enough details that we can help. Look at the
 >source and
  >>see what got sent to the browser. Look at the page from
 >the server.
  >>Try a Hello World version. If you can't figure it out
 >and need to ask
  >>us again, at least tell us what kind of page it is, and
 >show us the
  >>page code that is supposed to display. Post the log
 >entry wehn the
  >>page is requested.
  >>
  >>For all we can tell, you are setting the font color to
 >white and have
  >>a white background...
  >>
  >>Jeff
  >>.
  >><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS serves empty page 
Back to top
Login to vote
Display posts from previous:   
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]