Is this something server side?  Cause I'm not familiar with this kind of
issue...:(  Sorry.

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Marlon Moyer
Sent: Saturday, November 13, 2004 1:04 AM
To: [EMAIL PROTECTED]
Subject: Re: intermittent domain...

I just ran DNSReports.com on your domain and there were quite a few
problems with it:

http://www.dnsreport.com/tools/dnsreport.ch?domain=mentalhealthaccessproject
.org

The biggest problem seems to be that you don't have an A record.



On Sat, 13 Nov 2004 16:45:39 +1100, Peter Tilbrook <[EMAIL PROTECTED]>
wrote:
>  
> 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="website1/index.cfm" addtoken="No"> 
>  
> 
>   
>  
> 
> <cfelseif LCase(CGI.SERVER_NAME) IS "www.mywebsite2.org" OR
> LCase(CGI.SERVER_NAME) IS "mywebsite2.org">
>  <cflocation url="website2/index.cfm" addtoken="No"> 
>  
> 
>   
>  
> 
> <cfelseif LCase(CGI.SERVER_NAME) IS "www.mywebsite3.org" OR
> LCase(CGI.SERVER_NAME) IS "mywebsite3.org">
>  <cflocation url="website3/index.cfm" 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 
>  
> 
> To: [EMAIL PROTECTED] 
>  
> 
> 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="www.domain1.com/business1"> 
> 
>             </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="http://www.mentalhealthaccessproject.org/mhap";> 
> 
>             </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 
> 
>   


-- 
Marlon
----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm



----------------------------------------------------------
To post, send email to [EMAIL PROTECTED]
To unsubscribe: 
   http://www.dfwcfug.org/form_MemberUnsubscribe.cfm
To subscribe: 
   http://www.dfwcfug.org/form_MemberRegistration.cfm


Reply via email to