LL
Engaged
LL
Engaged
Activity
‎May 17, 2007
04:36 PM
That's correct.
The multi-server configuration includes the Instance Manager
and the Cluster Manager.
Creating and deploying ColdFusion as an EAR or WAR file does
not (J2EE Option)
Please see
About
multiserver configuration and
Installing
an EAR file or WAR files
... View more
‎May 11, 2007
08:46 AM
Try requesting a page with the built-in web server as a test
(
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000016.htm)
Also, (while connected to your web server) try enabling
*verbose connector logging and reviewing the logs (
http://www.adobe.com/go/tn_19364
and
http://www.adobe.com/go/tn_17990)
*Verbose connector logging is not intended to be used for any
extended length of time in a production environment
... View more
‎May 09, 2007
02:31 PM
Server scope sounds like it's what you are looking for.
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001148.htm
Run this:
<cfdump var="#server#">
... View more
‎May 08, 2007
05:05 PM
Exactly.
It makes it clear if you simply display the form data for
review:
<cfoutput>
#form.semester#
</cfoutput>
<cfinput type="hidden" name="semester"
value="Form.semester">
Then direct the user back to edit or forward to
confirm
... View more
‎May 08, 2007
04:56 PM
This TechNote may also help:
http://www.adobe.com/go/kb400539
... View more
‎May 08, 2007
04:32 PM
"Start New Column" forces a new column at the group break.
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001456.htm.
It may become clearer when you work with multi-column reports
and/or multipe groups.
... View more
‎Apr 20, 2007
05:05 PM
This Livedoc may help:
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000029.htm
JRun is the J2EE Application Server ColdFusion is running on.
The Sun JDK installs the JVM (Java Virtual Machine) which is
required by all J2EE Application Servers.
ColdFusion MX 7 has been tested on 1.4.2_13 or less of the
JDK
See "J2SDK/J2RE - 1.4" at
http://java.sun.com/products/archive/index.html
... View more
‎Apr 02, 2007
04:40 PM
You could check the known issues referenced in this SQL
Server Express Technote:
http://www.adobe.com/go/kb400255
... View more
‎Mar 30, 2007
05:00 PM
Also <cfreport format="PDF"...
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001466.htm
... View more
‎Mar 30, 2007
04:54 PM
We have seen this when Coldfusion is installed on a
multi-server configuration and the admin instance and notepad.exe
are not running as the same user.
... View more
‎Mar 30, 2007
04:45 PM
Thank you.
Issue # 67929 has been logged against this behavior.
... View more
‎Mar 30, 2007
04:08 PM
You can not install the 7.02
updater on 7.00
However, you
can install the 7.02
full installer
Please see "Otherwise, you have two options:" here:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4ac796d0#buy
... View more
‎Mar 30, 2007
04:02 PM
Relay Access Denied is a security restriction that is set by
the SMTP server. On the SMTP server you restrict relaying by IP,
domain, subnet etc... Try and contact your SMTP Server
Administrator to ensure that 'relaying' is allowed for the machine
that CF is on or try a different mail server.
... View more
‎Mar 22, 2007
12:50 PM
1 Upvote
A standard license for ColdFusion will remove the
Watermark
... View more
‎Mar 22, 2007
12:41 PM
He can connect to a Verity K2 Enterprise Server as long has
he has an Enterprise license of ColdFusion
He would choose the "Verity K2 Server" link under "Data &
Services"
... View more
‎Mar 19, 2007
05:04 PM
To confirm what version of the JDBC drivers you are using,
run this code:
<cfset jdbcDriver = CreateObject("java",
"macromedia.jdbc.sqlserver.SQLServerDriver")>
<cfoutput>
JDBC version =
#jdbcDriver.getMajorVersion()#.#jdbcDriver.getMinorVersion()#</p>
</cfoutput>
3.5 are the latest JDBC drivers available for ColdFusion MX
The Adobe drivers can be found here:
http://www.adobe.com/go/42dcb10a
The Microsoft JDBC Driver can be found
here
The TechNote for this can be found here:
http://www.adobe.com/go/ded4216b
... View more
‎Mar 19, 2007
04:38 PM
Here is a simple illustration with the extension hard-coded.
<cfquery name="getEmps" datasource="cfdocexamples">
SELECT firstname FROM EMPLOYEE
</cfquery>
<cfoutput query="getEmps">
<a
href="#trim(firstname)#.pdf">#Firstname#</a><br>
</cfoutput>
You say "
Most of these are pdf."
You will need to leverage ColdFusion's file and string
manipulation functions to identify the document extenstion and pass
them to the url accordingly
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000353.htm
for help with ColdFusion functions
... View more
‎Mar 19, 2007
04:14 PM
The JRun Admin server instance is the instance the JRun
Management Console runs on. The default port running on the
built-in-webserver is port 8000. This is independant of the
ColdFusion server instance which runs on the built-in-webserver
with a default port of 8300 in the multiple instance configuration
or port 8500 in the single server configuration. If you are seeing
both the JMC on port 8000 and CF Admin on port 8500 then you have
both ColdFusion with the integrated JRun installed and JRun
installed separately.
You can continue to run ColdFusion on the built-in webserver
for development or you can connect your ColdFusion installation to
another webserver such as IIS or Apache
Please see
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000016.htm
for more information about the built-in webserver.
Please see
http://livedocs.adobe.com/coldfusion/6.1/htmldocs/config11.htm
for more detail on configuring web servers.
... View more
‎Mar 19, 2007
03:59 PM
1. In the Windows clock System Date and Time Properties
panel, click on the Time Zone tab.
2. Choose a different Time Zone than the one you are
currently using and click the OK button to apply the settings.
3. Change the Time Zone back to your original Time Zone and
click OK to apply the settings.
4. Restart CFMX services.
... View more
‎Mar 19, 2007
03:32 PM
Try creating a simple report first and make sure you have the
data source created in the ColdFusion Administrator
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001476.htm
may help you get started
... View more
‎Mar 19, 2007
03:14 PM
The web server connector is part of the application server.
You will need to familiarize youself with how this is done in
Websphere.
This may be a good place to start:
Administering
Web Servers in Websphere
... View more
‎Mar 19, 2007
12:43 PM
There was a JDBC bug in eary versions of 6.1 that have been
fixed with later versions.
It was reported to be intermittent due to reserved words used
in the data.
The workaround for this is to wrap <cfquery> in
<cftry> block, and then ignore any database error. Of course,
you have to make sure that the SQL is correct and working.
Alternatively, you can put a "SELECT 1" at the end of the SQL, to
force a result set to be generated.
You could try updating your JDBC drivers also.
... View more
‎Mar 14, 2007
01:43 PM
Double-check your sessiontimemout
Try setting up a simple test application using something
similar to the example at
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000217.htm
... View more
‎Mar 14, 2007
01:24 PM
I'm not sure what you mean by "other Verity Search Engines"
ColdFusion MX 7 ships with an integrated version of Verity
5.5.
ColdFusion MX Enterprise supports connecting to a K2 Server
in a distributed configuration.
See
http://www.adobe.com/go/42cfdd4a
ColdFusion MX supports the use of Verity Spider (vspider)
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001781.htm
ColdFusion MX supports the use of several Verity Utilities
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001798.htm
... View more
‎Mar 14, 2007
01:10 PM
Support for ColdFusion 5 officially ended on January 1, 2007
-- see
www.adobe.com/support/programs/coldfusionent/?tab:contact=1#cf5policy
for more details.
... View more
‎Mar 14, 2007
01:05 PM
Convert the http response body to a query object
See
http://livedocs.adobe.com/coldfusion/7/htmldocs/00000272.htm
and
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001610.htm
... View more
‎Mar 14, 2007
06:37 AM
This may be a good place to start:
http://livedocs.adobe.com/coldfusion/7/htmldocs/00001330.htm
... View more
‎Mar 09, 2007
07:10 AM
You will need to identify what manfred.kidem.org is and
either remove it, disable it or assign it to another port. This
will not be accomplished via your router. The router is for
directing incoming and outgoing traffic, not for assigning port
bindings to your server. You can see this by shutting off your
router and running netstat again.
... View more