RE: See a blank page when I run a .cfm file

2003-08-19 Thread Stephenie Hamilton
If you cannot run any cf pages, then try uninstalling/reinstalling.


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting

Do you want complete ColdFusion Administrator access?
- CFX-Advanced VPS - 
http://www.cfxhosting.com/Plans/s_cfxadvancedVPS.cfm




-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 11:30 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3thre
adid=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Vernaillen Tim
Is your coldfusion server still running?? check your services

-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED]
Sent: maandag 18 augustus 2003 12:47
To: CF-Talk
Subject: See a blank page when I run a .cfm file


Can somebody please tell me how to fix this?

I have this strange problem. I'm running coldfusion MX
on my Win2k server and IIS 5.0. For some reason when I
run a .cfm file on my localhost:
http://localhost/test.cfm, all I see is a BLANK Page.
When I view the source, I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
Transitional//EN
HTMLHEAD
META http-equiv=Content-Type content=text/html;
charset=windows-1252

script LANGUAGE=JAVASCRIPT TYPE=text/javascript 

!--


function _CF_onError(form_object, input_object, object_value, error_message)
{
alert(error_message);
return false;   
}



function _CF_hasValue(obj, obj_type)
{
if (obj_type == TEXT || obj_type == PASSWORD)
{
if (obj.value.length == 0) 
return false;
else 
return true;
}
else if (obj_type == SELECT)
{
for (i=0; i  obj.length; i++)
{
if (obj.options[i].selected)
return true;
}

return false;   
}
else if (obj_type == SINGLE_VALUE_RADIO || obj_type == SINGLE_VALUE_CHECKBOX)
{

if (obj.checked)
return true;
else
return false;   
}
else if (obj_type == RADIO || obj_type == CHECKBOX)
{

for (i=0; i  obj.length; i++)
{
if (obj[i].checked)
return true;
}

return false;   
}
}


function  _CF_checkCFForm_1(_CF_this)

{

if  (!_CF_hasValue(_CF_this.Subject, TEXT )) 

{

if  (!_CF_onError(_CF_this, _CF_this.Subject, _CF_this.Subject.value, Error 
in Subject text.))

{

return false; 

}

}


return true;

}


//--

/script

/HEAD
BODY/BODY/HTML

I can't run cf administrator or call any ColdFusion
File. I don't know what's happenning, it was all
working last week. I've checked the IIS App Mappings,
and I see the .cfm, .cfc, .cfml and .jsp application
mappings for my default website.

I can run a .html and a .asp file, its just
coldfusion.

Can somebody tell me how to fix this problem. I'm just
stranded and don't know what to do.

Cheers
Allan

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. 
http://www.fusionauthority.com/signup.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Randell B Adkins
First of all if this is the FILE in which you are running
and can not view any output, might be cause there is no
output to be displayed.

You have nothing between your body tags.

Unless I missed something.




 [EMAIL PROTECTED] 08/18/03 07:02AM 
Is your coldfusion server still running?? check your services

-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: maandag 18 augustus 2003 12:47
To: CF-Talk
Subject: See a blank page when I run a .cfm file


Can somebody please tell me how to fix this?

I have this strange problem. I'm running coldfusion MX
on my Win2k server and IIS 5.0. For some reason when I
run a .cfm file on my localhost:
http://localhost/test.cfm, all I see is a BLANK Page.
When I view the source, I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
Transitional//EN
HTMLHEAD
META http-equiv=Content-Type content=text/html;
charset=windows-1252

script LANGUAGE=JAVASCRIPT TYPE=text/javascript 

!--


function _CF_onError(form_object, input_object, object_value,
error_message)
{
alert(error_message);
return false;   
}



function _CF_hasValue(obj, obj_type)
{
if (obj_type == TEXT || obj_type == PASSWORD)
{
if (obj.value.length == 0) 
return false;
else 
return true;
}
else if (obj_type == SELECT)
{
for (i=0; i  obj.length; i++)
{
if (obj.options[i].selected)
return true;
}

return false;   
}
else if (obj_type == SINGLE_VALUE_RADIO || obj_type ==
SINGLE_VALUE_CHECKBOX)
{

if (obj.checked)
return true;
else
return false;   
}
else if (obj_type == RADIO || obj_type == CHECKBOX)
{

for (i=0; i  obj.length; i++)
{
if (obj[i].checked)
return true;
}

return false;   
}
}


function  _CF_checkCFForm_1(_CF_this)

{

if  (!_CF_hasValue(_CF_this.Subject, TEXT )) 

{

if  (!_CF_onError(_CF_this, _CF_this.Subject,
_CF_this.Subject.value, Error in Subject text.))

{

return false; 

}

}


return true;

}


//--

/script

/HEAD
BODY/BODY/HTML

I can't run cf administrator or call any ColdFusion
File. I don't know what's happenning, it was all
working last week. I've checked the IIS App Mappings,
and I see the .cfm, .cfc, .cfml and .jsp application
mappings for my default website.

I can run a .html and a .asp file, its just
coldfusion.

Can somebody tell me how to fix this problem. I'm just
stranded and don't know what to do.

Cheers
Allan

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com 


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: See a blank page when I run a .cfm file

2003-08-18 Thread Randell B Adkins
I am sure you have this in the IIS Configuration for the
Default Website for Application Mappings:

Extension: .cfm
Executable Path: C:\CFusion\bin\iscf.dll
Versb: (all)


 [EMAIL PROTECTED] 08/18/03 07:27AM 
No, this is not the file I'm trying to execute. I see this code on
every coldfusion page. If I run the coldfusion administrator
(http://127.0.0.1/cfide/administrator/index.cfm), I see a blank page
and this code when I view the source. I see this code for each and every
coldfusion file I try to run on the browser. So I don't know what's
happenning. I have a strong feeling this is a IIS related problem, but
don't know how to fix it.

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Stephenie Hamilton
What version of CF?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 6:47 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


Can somebody please tell me how to fix this?

I have this strange problem. I'm running coldfusion MX
on my Win2k server and IIS 5.0. For some reason when I
run a .cfm file on my localhost:
http://localhost/test.cfm, all I see is a BLANK Page.
When I view the source, I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
Transitional//EN
HTMLHEAD
META http-equiv=Content-Type content=text/html; 
charset=windows-1252

script LANGUAGE=JAVASCRIPT TYPE=text/javascript 

!--


function _CF_onError(form_object, input_object, object_value,
error_message)
{
alert(error_message);
return false;   
}



function _CF_hasValue(obj, obj_type)
{
if (obj_type == TEXT || obj_type == PASSWORD)
{
if (obj.value.length == 0) 
return false;
else 
return true;
}
else if (obj_type == SELECT)
{
for (i=0; i  obj.length; i++)
{
if (obj.options[i].selected)
return true;
}

return false;   
}
else if (obj_type == SINGLE_VALUE_RADIO || obj_type ==
SINGLE_VALUE_CHECKBOX)
{

if (obj.checked)
return true;
else
return false;   
}
else if (obj_type == RADIO || obj_type == CHECKBOX)
{

for (i=0; i  obj.length; i++)
{
if (obj[i].checked)
return true;
}

return false;   
}
}


function  _CF_checkCFForm_1(_CF_this)

{

if  (!_CF_hasValue(_CF_this.Subject, TEXT )) 

{

if  (!_CF_onError(_CF_this, _CF_this.Subject,
_CF_this.Subject.value, Error in Subject text.))

{

return false; 

}

}


return true;

}


//--

/script

/HEAD
BODY/BODY/HTML

I can't run cf administrator or call any ColdFusion
File. I don't know what's happenning, it was all
working last week. I've checked the IIS App Mappings,
and I see the .cfm, .cfc, .cfml and .jsp application
mappings for my default website.

I can run a .html and a .asp file, its just
coldfusion.

Can somebody tell me how to fix this problem. I'm just stranded and 
don't know what to do.

Cheers
Allan

__

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.507 / Virus Database: 304 - Release Date: 8/4/2003
 

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Mike Kear
Sorry if this is a really dumb question, but in your .cfm template, you DO
have the !DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML around the output don't you?  So that your output of
#myname# is between the body tags?

As I said if it's a totally obvious question I'm sorry.



Cheers,
Michael Kear
Windsor, NSW, Australia
AFP Webworks.




-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 19 August 2003 1:32 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file

I was having this problem with CFMX with Updater 3 installed, I updated to
CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a
browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com


Re: See a blank page when I run a .cfm file

2003-08-18 Thread Randell B Adkins
We all understand that, but please do not send the email to the list
over and over.. some have tried to assist you. However you seem to have
a very
unique problem as none of us have experienced it previously.



 [EMAIL PROTECTED] 08/18/03 12:49PM 
I can't get to the ColdFusion Administrator, I have clearly mentioned
in my previous posts, I can't browse coldfusion pages. I just see a
blank page.

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Stephenie Hamilton
Have you followed this tech note
http://www.macromedia.com/support/coldfusion/ts/documents/java_lang_outo
fmemory.htm

?

Also, are you getting outofmemory errors in your cfusionmx/runtime/logs
files?

If you restart CF does the issue resolve itself? Is this happening only
on this page or multiple pages? How much RAM do you have in the server?


~~
Stephenie Hamilton
Macromedia Certified ColdFusion Professional
CFXHosting





-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 11:17 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threa
did=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.cfhosting.com


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Douglas.Knudsen
good god mon, layoff the send button will you?  Your message got through dude.


-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED]
Sent: Monday, August 18, 2003 11:30 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, 
I updated to CFMX 6.1 (Redsky) and still see a blank page when 
I run a .cfm file on a browser. This is what I'm trying to do:

.cfm file
-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I 
view the source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates 
back to 19 Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?cat
id=3threadid=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Tony Weeg
why do you keep sending the same message?

everyone gets the point...i think?

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] 
Sent: Monday, August 18, 2003 11:31 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 
Transitional//EN 
HTMLHEAD 
META http-equiv=Content-Type content=text/html; 
charset=windows-1252/HEAD 
BODY/BODY/HTML

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002. 

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threa
did=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..

~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. 
http://www.fusionauthority.com/ads.cfm


RE: See a blank page when I run a .cfm file

2003-08-18 Thread Brook Davies
Check the exception log. I got a blank white page when the neo-runtime.xml 
file was corrupted. The exception log should help you in the right direction..

Brook

At 01:41 PM 8/18/2003 -0400, you wrote:
why do you keep sending the same message?

everyone gets the point...i think?

tony weeg
uncertified advanced cold fusion developer
tony at navtrak dot net
www.navtrak.net
office 410.548.2337
fax 410.860.2337


-Original Message-
From: ColdFusion Programmer [mailto:[EMAIL PROTECTED]
Sent: Monday, August 18, 2003 11:31 AM
To: CF-Talk
Subject: See a blank page when I run a .cfm file


I was having this problem with CFMX with Updater 3 installed, I updated
to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file
on a browser. This is what I'm trying to do:

-
cfset myName = TestUser
This is a test cfoutput#myName#/cfoutput
--

When I run this file on the browser I see a blank page. When I view the
source I see this:

!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0
Transitional//EN

Just found this thread on the Macromedia Forums which dates back to 19
Dec 2002.

http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threa
did=517462highlight_key=ykeyword1=blank%20pagekeyword2=browser

The problem is still there..


~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Get the mailserver that powers this list at 
http://www.coolfusion.com