hello,
my problem is that when i perform a search offline, the result page can be displayed correctly, BUT when i perform a search online i get this message: the page cannot be dispalyed. The page you are looking for cannot be displayed because the page address is incorrect. . BUT when i try to find the result page manually the page exits.
do u have any idea ?
please help me,
thanks in advance
Vaso
problems with result page
Page 1 of 17 Replies - 5337 Views - Last Post: 03 April 2007 - 06:02 PM
Replies To: problems with result page
#2
Re: problems with result page
Posted 14 September 2005 - 09:03 AM
What are you referring to when you say "offline" and "online" Do you have a copy of ColdFusion on your computer, and the script works fine there, but when you upload it and try it it doesn't work?
If you are trying to run a .cfm page and getting a "Page Cannot Be Displayed" error, usually there is something wrong with the ColdFusion server. It's either not running, or the connector is broken (to IIS or Apache).
Do you run these servers or are they through a web host?
If you are trying to run a .cfm page and getting a "Page Cannot Be Displayed" error, usually there is something wrong with the ColdFusion server. It's either not running, or the connector is broken (to IIS or Apache).
Do you run these servers or are they through a web host?
#3
Re: problems with result page
Posted 14 September 2005 - 09:12 AM
yes i have a copy of ColdFusion on my computer, and the script works fine there, but when I upload it and try it it doesn't work.
the servers is through a web host...
what do i have to do??
the servers is through a web host...
what do i have to do??
#4
Re: problems with result page
Posted 14 September 2005 - 09:14 AM
Is the path the same on your machine and the hosted account? and I hate to ask, but the host does have CF interpreters enabled, right?
#5
Re: problems with result page
Posted 14 September 2005 - 09:39 AM
'page address is incorrect' makes me think your looking at the wrong file path and not at the file you created.
#6
Re: problems with result page
Posted 18 November 2006 - 07:42 AM
It's also worth noting that some hosting companies disallow the use of certain ColdFusion tags, such as cfdirectory, cfcontent etc.
http://www.cfHow.com - ColdFusion Development Tips, Tricks and Solutions://http://www.cfHow.com - ColdFusion D...s and Solutions
http://www.cfHow.com - ColdFusion Development Tips, Tricks and Solutions://http://www.cfHow.com - ColdFusion D...s and Solutions
#7
Re: problems with result page
Posted 02 April 2007 - 09:00 AM
hi all.
I'm also having trouble with page cannot be displayed. Here's the deal.. im doing a cf guestbook, once a user inserts their info i have it sent to a checkguestbook page. The code i have is as follows
This is for a project thats due in next week. any tips or advice would be greatly welcome. I'm using coldfusion on the college's server. Thanks all
I'm also having trouble with page cannot be displayed. Here's the deal.. im doing a cf guestbook, once a user inserts their info i have it sent to a checkguestbook page. The code i have is as follows
<CFQUERY NAME="qryinsert_data" DATASOURCE="yougotserved"> INSERT INTO tblGuestbook (Guestname, Email, Regular, Comments, rating) VALUES (#Form.Guestname#, #Form.Email#, #Form.Regular#, #Form.Comments#, #Form.rating#) </CFQUERY> <cfinclude template="home.cfm">
This is for a project thats due in next week. any tips or advice would be greatly welcome. I'm using coldfusion on the college's server. Thanks all
#8
Re: problems with result page
Posted 03 April 2007 - 06:02 PM
Need to add quotes to your insert
<CFQUERY NAME="qryinsert_data" DATASOURCE="yougotserved">
INSERT INTO tblGuestbook (Guestname, Email, Regular, Comments, rating)
VALUES ('#Form.Guestname#', '#Form.Email#', '#Form.Regular#', '#Form.Comments#', '#Form.rating#')
</CFQUERY>
Page 1 of 1
|
|

New Topic/Question
Reply



MultiQuote






|