|
What
is ColdFusion?
ColdFusion is a rapid
application development tool that enables the rapid creation of interactive,
dynamic and information-rich websites.
Back to top
Where
can I go to learn more about ColdFusion?
The following is
a limited list of resources available online and in print.
Back to top
How
do I use ColdFusion on my website?
You must purchase
the Silver Plan or higher to use Cold Fusion on your site. If you purchase
one of these plans, ColdFusion will be enabled automatically. When you
create your Cold Fusion pages, remember to use the .cfm extension.
Back to top
Do I need special software
to create ColdFusion pages?
No, you can create ColdFusion pages in
notepad. There are several products that will assist you in the
creation of your ColdFusion pages. ColdFusion Studio is the most
widely used product for creation of ColdFusion pages and is available
from Allaire at http://www.allaire.com/.
Back to top
Do you support Cold Fusion
4.0?
Yes. We currently support Cold Fusion 4.0
on the Gold, Platinum and InstAccount Plan. If you have ColdFusion
questions, please email coldfusion@buildersplanet.com
Back to top
Which ColdFusion tags
are not available?
CFContent, CFDirectory, CFFile, CFObject
& CFRegistry are disabled as security precautions.
Back to top
What ColdFusion Tags/Features
do you support?
We support the following ColdFusion 4.0
tags:
|
CFAbort
|
CFGridcolumn
|
CFLoop
|
CFSet
|
|
CFApplet
|
CFGridrow
|
CFMail
|
CFSetting
|
|
CFApplication
|
CFGridupdate
|
CFModule
|
CFSlider
|
|
CFAssociate
|
CFHeader
|
CFOutput
|
CFStoredproc
|
|
CFAuthenticate
|
CFHtmlhead
|
CFParam
|
CFSwitch/CFCase/
CFDefaultcase
|
|
CFBreak
|
CFHttp
|
CFPop
|
CFTable
|
|
CFCache
|
CFHttpparam
|
CFProcparam
|
CFTextinput
|
|
CFCol
|
CFifcfelsecfelseif
|
CFProcresult
|
CFThrow
|
|
CFCollection
|
CFInclude
|
CFQuery
|
CFTransaction
|
|
CFCookie
|
CFInput
|
CFReport
|
CFTree
|
|
CFError
|
CFInsert
|
CFSchedule
|
CFTreeitem
|
|
CFExit
|
CFLdap
|
CFScript
|
CFTry/CFCatch
|
|
CFForm
|
CFLocation
|
CFSearch
|
CFUpdate
|
|
CFGrid
|
CFLock
|
CFSelect
|
CFWddx
|
Back to top
Do you support Custom
CFX Tags?
We currently do not support Custom CFX
Tags other than the CFX_ONCR_CYBERCASH and our custom CF_Mail tag.
Back to top
Can I run ColdFusion
Scheduled Tasks?
We do allow ColdFusion
Scheduled Tasks. The
task may not run more than once per day, and must take 30 seconds or less
to complete. You may contact ColdFusion@buildersplanet.com
to request a scheduled task.
Back to top
How do I set up a ColdFusion DSN?
You can set up an
Access DSN using our Customer Control Panel
Back to top
Do you support Verity Collections?
Yes, we do support
verity collections. You may contact ColdFusion@buildersplanet.com
to request a verity collection.
Back to top
What mail server do I need to specify when using CFMAIL?
None. We set this
property in the ColdFusion Administrator so you do not need to include
it in your code.
Back to top
My Access Database is locked, how do I unlock it using
ColdFusion?
Create a CFQuery SELECT
statement that references a table that does not exist.
example:
<CFQUERY DATASOURCE=”myDSN”
NAME=”myConnection”>
SELECT * FROM TableDoesNotExist </CFQUERY>
|