I have my server behind a VPN Router (Netgear).  I’m running Windows Server 2003 with ColdFusion MX 6.1.  I have about 5 sites running on it right now, and www.mentalhealthaccessproject.org is the only one having this problem.  The router directs any HTTP requests to this server.   

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Peter Tilbrook
Sent: Friday, November 12, 2004 11:46 PM
To: [EMAIL PROTECTED]
Subject: RE: intermittent domain...

 

I agree with Daniel. Security aside (firewall) even consider hosting on a different port? There could be some sort of conflict going on. Let us know (within reason) what web server, ports, ColdFusion version, etc you are running.

 

As an example I am running Blackstone (ColdFusion 7 beta 2) through Macromedia Jrun 4 SP2, through different ports. On top of this I am running Macromedia Flash Communication Server 1.5 and Flex 1.5 with no problems.

 

If you are having these problems either locally (development machine) or connecting to a production server than, well, we all love complications don't we?

 

Regards,

 

Peter Tilbrook
ColdGen Internet Solutions
Manager, ACT and Region ColdFusion Users Group
4/73 Tharwa Road
Queanbeyan, NSW, 2620
AUSTRALIA

     WWW 1: http://www.coldgen.com/
     WWW 2: http://www.actcfug.com/
Telephone: +61-2-6284-2727
   Mobile: +61-0439-401-823
   E-mail: [EMAIL PROTECTED] 

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Elmore
Sent: Saturday, 13 November 2004 4:26 PM
To: [EMAIL PROTECTED]
Subject: RE: intermittent domain...

If you use host headers with url redirection, then you don’t need any of that CF code. But I don’t think this is solve the problem. Are you sure this is not a local problem? I can access your sites fine, have you tested this from different computers? If it is local, what DNS resolver are you using in your TCP/IP settings?

 

- Daniel Elmore

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ron Mast
Sent: Friday, November 12, 2004 7:23 PM
To: [EMAIL PROTECTED]
Subject: RE: intermittent domain...

 

I’m doing what you suggested Joe, but I’m still having the same issue.  This time I tried pinging a few times and finally got a good ping and then the site came up.  I’m now using Joe’s code. 

 

Help!  This is a paying customer…L

 


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joe Kelly
Sent: Friday, November 12, 2004 6:00 PM
To: [EMAIL PROTECTED]
Subject: Re: intermittent domain...

 

I did this a few years ago in a shared hosting environment, but I used CGI.SERVER_NAME instead.

 

<cfif LCase(CGI.SERVER_NAME) IS "www.mywebsite1.com" OR  LCase(CGI.SERVER_NAME) IS "mywebsite1.com" OR  LCase(CGI.SERVER_NAME) IS "www.mywebsite1.net" OR  LCase(CGI.SERVER_NAME) IS "mywebsite1.net">
 <cflocation url="" addtoken="No">

 

<cfelseif LCase(CGI.SERVER_NAME) IS "www.mywebsite2.org" OR LCase(CGI.SERVER_NAME) IS "mywebsite2.org">
 <cflocation url="" addtoken="No">

 

<cfelseif LCase(CGI.SERVER_NAME) IS "www.mywebsite3.org" OR LCase(CGI.SERVER_NAME) IS "mywebsite3.org">
 <cflocation url="" addtoken="No">

 

<cfelse>
 <cflocation url="">
http://www.mydefaultwebsite.net" addtoken="No">
</cfif>

 

 

This worked great for me, maybe it'll work for you, and then your other problem will be moot.

 

Good Luck,

Joe Kelly

 

----- Original Message -----

From: Ron Mast

Sent: Friday, November 12, 2004 5:35 PM

Subject: intermittent domain...

 

Hi all,

I have a domain www.mentalhealthaccessproject.org and I’m serving it.  The index.cfm file looks like this:

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

 

<html>

<head>

            <title>POINTER</title>

</head>

 

<body>

 

<cfset website = getToken(cgi.host, 2, ".")>

<cfswitch _expression_="#website#">

            <cfcase value="localwebsites">

                        <cflocation url="">

            </cfcase>

            <cfcase value="windyhillstable">

                        <cflocation url="" www.domain2.com/business2">

            </cfcase>

            <cfcase value="amydolin">

                        <cflocation url="" www.domain3.com/business3">

            </cfcase>         

            <cfcase value="janussigns">

                        <cflocation url="" www.domain4.com/business4">

            </cfcase>         

            <cfcase value="mentalhealthaccessproject">

                        <cflocation url="">

            </cfcase>                                 

</cfswitch>

 

</body>

</html>

 

When I try to bring up the site typing in the address www.mentalhealthaccessproject.org the dreaded page cannot be displayed error pops up.  Then I will proceed to ping the www.mentalhealthaccessproject.org and I get a good ping.  After the good ping, the site then comes up without a problem.  Charter is my ISP, and they’re telling me I need to update my doc root.  Does anyone have a clue to what this is? 

 

Any help would be greatly appreciated.

 

Ron

www.localwebsites.biz

 

Reply via email to