| |
::. ColdFusion FAQ's .::
Can I use J2EE Session Variables?
Do you support the CFX_IMAGE tag?
Do your ColdFusion servers support Verity?
Do you support Custom Tags in ColdFusion?
Do you support Flash Remoting?
Do you support ColdFusion Report Builder
How do I delete a users session cookies when he closes the browser?
How can I establish a database connection using Coldfusion in Dreamweaver?
What do I set as the "Destination" attribute for cffile?
Do you support the tag CFCONTENT?
Do you support CF Shopkart?
| Q: Can I use J2EE Session Variables? UP |
| A: Session Variables is enabled, but not J2EE Session Variables. |
| Q: Do you support the CFX_IMAGE tag? UP |
| A: Yes, the CFX_Image tag is supported. |
| Q: Do your ColdFusion servers support Verity? UP |
| A: Yes, we can setup a Verity Index. You'd just need to let us know the details, and your FTP password for verification. |
| Q: Do you support Custom Tags in ColdFusion? UP |
A: We do support custom tags, but not all .cfx custom tags, which may require additional server installs of .dll's, etc. If it is a commercially available tag, we'll consider installing it.
Standard .cfm custom tags, yes.
We can create a Custom Tags directory for your site. Just let us know the directory name. |
| Q: Do you support Flash Remoting? UP |
| A: Yes. We will need to enable it on your site. One thing to remember is to change the "localhost:8500" reference to just the IP address (or domain name if pointed to our servers) instead within the flash application. |
| Q: Do you support ColdFusion Report Builder? UP |
| A: The ColdFusion Report Builder uses RDS for the Query Builder. We have RDS disabled for security purposes as recommended by Macromedia. |
| Q: How do I delete a users session cookies when he closes the browser? UP |
A: On ColdFusion pages, you can use the following code to delete a users session cookies when he closes the browser: <!---Kill user session if user closes browser---> <cfif IsDefined("Cookie.CFID") AND IsDefined("Cookie.CFTOKEN")> <cfset Variables.cfid_local = Cookie.CFID> <cfset Variables.cftoken_local = Cookie.CFTOKEN> <cfcookie name="CFID" value="#Variables.cfid_local#"> <cfcookie name="CFTOKEN" value="#Variables.cftoken_local#"> </cfif> |
| Q: How can I establish a database connection using Coldfusion in Dreamweaver? UP |
A: If using MS Access:
-------------------
You'll want to create a local DSN on your machine and connect with your database locally in your development environment using the DataSource.
Then you'll want to create a DSN (through the control panel) on the server so your Coldfusion pages can interact with the database on the server.
If using MySQL:
---------------
You will want to create a local DataSource (DSN) and also create one on the server through the Control Panel.
That way, you can set your local DSN to use the FTP IP as the "MySQL server host", and on the server it will be set to use localhost for this, which will make your pages faster. |
| Q: What do I set as the "Destination" attribute for cffile? UP |
| A: For the "Destination" attribute, you should use the FULL path to the folder to which you wish the documents to be uploaded. |
| Q: Do you support the tag CFCONTENT? UP |
| A: Yes, we support CFCONTENT. |
| Q: Do you support CF Shopkart? UP |
| A: Yes, we support CF Shopkart on our coldfusion servers. |
|
|
 |