Cold fusion hosts

Hi
I know that website hosts that support coldfusion are usually
quite expensive. I have found one called 'godaddy' which provides
coldfusion support for around $6 per month (basic package is $3.99,
with cold fusion support $1.99 extra). Does anyone have any
experience with them? is it a little too cheap to be true??

> I know that website hosts that support coldfusion are
usually quite
> expensive.
> I have found one called 'godaddy' which provides
coldfusion support for
> around
> $6 per month (basic package is $3.99, with cold fusion
support $1.99
> extra).
> Does anyone have any experience with them? is it a
little too cheap to be
> true??
Stay away from GoDaddy. Everyone I've heard that uses them
has had problems with CF. It's an old version also. I have a
list
of hosts and what they offer at
http:///www.rgreathosts.com
Also, I use
http://www.gearhost.com which
has very reasonably
priced CF and it's up to date.

Similar Messages

  • How not to use Cold Fusion and Java

    Overview
    This write up is intended to give java developers that are
    developing ColdFusion applications some beneficial information:
    things that are not documented.
    Scenario
    The company builds enterprise class web application software
    for fortune 500 companies. It had purchased a CF 7 based product,
    had and existing proprietary J2EE based product, and needed to
    integrate the two while meeting a host of new requirements. These
    requirements were based on delivering a better user experience,
    faster / cheaper integration, increased flexibility /
    configuration, useablily, decreasing maintenance costs, the ability
    to deploy in either install or ASP models. An initiative was
    started to create a new framework that integrated the best of each
    technologies. Tactically, this meant that we were to build a hybrid
    CF and java application: one that used building blocks (decoupled /
    cohesive components) that would allow applications to be rapidly
    assembled, configured and deployed. This made sense on several
    levels, the team was composed of Java and CF developers, the CF
    rapid application development was very productive, there is great
    functionality delivered in the CF platform and initial performance
    tests showed no cause for alarm
    The agreed upon design, based on requirements, and analysis
    by both the CF and Java staff has us using CF in the presentation
    layer, using a CF based MVC, use of CF based web services. The MVC
    was deployed using CFC inheritance for model objects and views made
    use of CF custom tags. The internals of the application, used a
    rules engine, some proprietary java, ORM, and other J2EE
    technology. The initial performance of the system was reasonable.
    We pushed on with product implementation.
    Then it was time to load test the application, and tune it.
    Under load the response times were orders of magnitude slower,
    sometimes the pages even timed out.
    Armed with our profiler, oracle execution plans and we
    charged ahead addressing issue after issue. Note that we took
    meticulous care in tweaking the active thread pool and ensuring
    that our CF setup was tuned for our application. None of the
    observations here are a condemnation of the language; rather they
    are aspects that, when considered together, not conducive for
    building integrated java and CF frameworks that use a structured /
    OO programming practices. Further detail can be provided on
    request.
    CFC inheritance should be avoided - resolution of variable
    scope is expensive even if properly declared.
    Since CF creates a class per method under the covers call
    stacks become very large, especially if used in a loop. This is
    nominally exacerbated by CF calls necessary to set up for the
    method call (String.toUpper()).
    Nesting of loops and if statements should be kept to a
    minimum - the conditional for each lookup of logical operator like
    LT, GT are synchronized. Under load this results in thread waits.
    Jrun has as single thread pool - both http and web service
    requests use the same pool. Under load this leads to thread
    deadlock. There are work arounds, but they are painful.
    Recursion should be avoided - we had a few recursive routines
    and these had to be rewritten.
    Custom Tags - should be used sparingly - each custom tag
    makes a synchronized call to the license server - (This may be
    fixed in CF 8)
    Summary
    In the end we got the performance to reasonable numbers, but
    we ended up moving some code to java (Custom Tags) and getting rid
    of 'good programming' practices (Inheritance, loops, etc), mandated
    proper variable scoping for those things left over. We prototyped a
    sans cold fusion implementation and had an order of magnitude
    improvement in performance and number of requests served per
    second.
    The lesson? Use Coldfusion in its sweet spot: make a query,
    iterate over the results and format for display. Extensive use of
    structure programming techniques or OO CFCs should be avoided: they
    will work but under load - but are better as a prototype. Building
    frameworks in CF? Think twice, no three times, and, if you must, be
    minimalist.
    Text

    interesting aslbert123,
    Not that I doubt you, but could you answer some questions
    about your implementation that was so slow:
    1.) Did you put your CFCs in the application or server scope?
    2.) Were you initializing your CFCs, via CreateObject or
    <cfinvoke>, on every request?
    3.) Are you sure that you were properly Var'ing every
    variable in your methods? (people typically forget about query
    names and loop iterator variables)
    4.) Could you give examples of how your inheritence was set
    up?
    5.) For CustomTags, did you call them the old <cf_tag>
    way or the newer, better-performing <cfimport> way?
    6.) How did you connect CF to Java exactly?
    Thanks,
    Aaron

  • Email a form without Cold Fusion

    Hi everyone,
    I have a client whose hosting doesn't provide Cold Fusion. on
    his website, there is a form that the content must be emailed to
    him after customer submission. Is there anyway to do it without
    cold fusion, Cfmail command?
    thanks in advance.

    you can just use a regular mailto with a form, and it will
    send. However the
    formatting on the receiving end is somewhat of a pain in the
    "Shida" <[email protected]> wrote in message
    news:eo1cgi$s0o$[email protected]..
    > is there any way other than CF or ASP or PHP?
    > I have heard of some kinds of web forms, but I don't
    know about them
    > either.

  • Cold Fusion / developer edition

    hey guys
    sorry to ask you this but it has been hanging over my head
    for a long period of time.
    I have been unable to get my mind around the concept of "the
    developer edition of Cold Fusion". from what i have learnt , i can
    use it locally only. Does that mean that i wont be able to transfer
    my cold fusion files onto a webhosting that supports ColdFusion??
    Am i expected to present "my license to ColdFusion" to my web
    provider every time I upload a website onto a webhosting?
    Please someone explain to me what happens when i upload my
    coldfusion-based website onto a webhosting. Will it stop working or
    will my code get corrupted??
    Cheers
    Maros

    Hi Maros
    There are a few of things you will need to be aware of when
    you move to the
    server. First, be sure the mapping on the server is the same
    as it is
    locally, this especially concerns CFCs. In Dreamweaver if you
    drag a CFC
    function onto a page Dreamweaver will map the dot path to the
    CFC including
    the folder your site is in within the ColdFusion8\wwwroot
    folder, naturally
    this folder doesn't exist on your server since the entire
    site is directly
    in your root folder. Be sure to address this before going
    live.
    Also, make sure you move your database to the server and set
    up the DSN,
    using the exact same DSN name you used locally.
    Finally, make sure your host supports the same version of CF
    as you have
    locally as well as the database if you are using MySQL or SQL
    Server. If you
    are using Access, be sure your host server is a Windows
    sever.
    Doing this should make for a smooth transition.
    Lawrence Cramer *Adobe Community Ace*
    Cartweaver.com
    ASP, PHP, and ColdFusion Shopping Carts For Dreamweaver

  • Need to dial a phone number from Cold Fusion

    My boss asked me if there was any way that a phone number
    could be dialed from Cold Fusion. We have a website where at some
    point we want to just click a button and dial that phone number. My
    guess is that the conversation will then be carried through the
    computer's microphone and speakers and using the computer's modem.
    Let me know if there is a way, or what would be the easiest
    way to accomplish this, even if it has to be using VOIP, since
    that's an option for this project.
    Thanks!

    Is this an internal site or an public-facing site? If you are
    talking about using this tool in your intranet and you have a
    modern phone system in place, there may be an API to interfacing
    with your phone system. We use a TAPI interface to create a phone
    dialer so our callcenter agents can dial a phone number on their
    phone just by clicking on a link. I'm pretty sure there are a bunch
    of freeware/shareware TAPI COM objects you can use floating around
    the interwebs (If your phone system supports TAPI).
    If you are talking about a public-facing website, then I'm
    afraid I can't offer much advice other than to check out the Java
    Communications lead that Ted gave you.

  • How do you determine what version of PHP is on the cold fusion server

    I am trying to find out what version of PHP is on my cold
    fusion server, how do I do this? Does coldfusion come with
    PHP?

    In the C:\Windows folder, locate the file called php.ini and
    open it in Notepad.
    <?php phpinfo() ?>
    I answered it myself. Maybe it can help someone else.

  • Modifying cold fusion script not picked up by iis

    We are running coldfusion 7, using iis6 on windows 2003 server. I am not a cold fusion developer and this is the only coldfusion script we have created by a previous developer. I needed to make some simple modifications to the script, including a change in the title. After having restarted IIS the modified script is still not showing the new title. What do I need to do for iis to show the changes in the cfm file?

    It's in the CF Administrator, which is separate from the JRun Admin Console. You can often get to the CF Administrator with a URL like this:
    http://your_server/CFIDE/administrator/
    Dave Watts, CTO, Fig Leaf Software
    http://www.figleaf.com/
    http://training.figleaf.com/
    Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
    GSA Schedule, and provides the highest caliber vendor-authorized
    instruction at our training centers, online, or onsite.
    Read this before you post:
    http://forums.adobe.com/thread/607238

  • Cold Fusion in a generic thread pool and enabling JAVA don't mix

    I've got Cold Fusion MX installed on a server running Sun One 6.1. I ran into a problem trying to enable JAVA (for servlet support) which I had previous disabled because I didn't use it.
    Well, when I went to enable JAVA on the server last week, the service wouldn't restart and the error logs gave me no indication of the problem.
    Through a tedious trial-and-error process I've found that having Cold Fusion running under a generic thread pool while trying to have JAVA (the j2ee plugin) running under Sun One simply doesn't work (for whatever reason).
    Once I killed the pool, everything runs fine.
    Does anyone happen to know why this is? I keep CFMX under its own thread pool because there are certain elements to CFMX that aren't wholly stable and can result in CFMX crashing. If it crashes, the process keeps accepting requests, but never processes them. I'd like to keep the native thread pool free to keep accepting non-CFMX requests even when CFMX crashes.
    Thus the separate thread pool for CFMX.
    But now I can't run CFMX in a separate thread pool with JAVA enabled.
    Anyone have any insights into why this is?
    Thanks

    Two things. Firstly, it's better to use     private static final Object classLock = new Object();because that saves you worrying about whether any other code synchronises on it. Secondly, if you do decide to go for the delegation route then java.lang.reflect.Proxy may be a good way forward.

  • How to convert/download videos embedded with cold fusion?

    Does anyone know of a free video conversion software that will convert and download online videos embedded with cold fusion ("cfmid=?") format/extension?  I tried a few online sites and they do not support that format yet.   Please help.  Thank you so much!
    Judy

    Actually COLD FUSION was a hoax a few years ago. COLDFUSION is the app.
    If you need content from a web site, talk to the developer.
    fwiw - Since ColdFusion is an Adobe app, you should try asking your question on that forum. This one is here to primarily support Shake.
    Have fun.
    x

  • I'm unable to connect to database thru cold fusion

    I'm unable to connect to database thru cold fusion. it
    sometiems give me an error that your uname is undefined , soemtimes
    it gives ur index page not found so i created index page also but
    still im unable to connect to database n update my records..plz
    help me out..im a fresher in cold fusion

    I am having a similar problem having CFMX 7.02 verify my SQL
    Server 2005 Data Sources.
    I am using the sa account for CF to access the db's. But i
    get the following error:
    Connection verification failed for data source: myDatabase
    java.sql.SQLException: [Macromedia][SQLServer JDBC
    Driver]Error establishing socket. Connection refused: connect
    The root cause was that: java.sql.SQLException:
    [Macromedia][SQLServer JDBC Driver]Error establishing socket.
    Connection refused: connect
    Every role in SQL Server has the sa grantor Grant enabled. I
    can also login to SQL Server with the sa account w/o a hitch.
    I don't know what else to do. The server information is set
    to the ServerName port 1433, datasource name and database name are
    the same as the database name in sql server, and the username and
    password are set for the sa account.
    Thanks!

  • Cold Fusion Mac Compat?

    Can you run the latest Cold Fusion version in association
    with CS3 Web Premium for Mac on a Mac without a Windows
    shell?

    Scooter,
    I use a Macbook Pro (OS X 10.4.9) and run CFMX 7.0.2 (on top
    of JRun 4 and NOT as a standalone web server) with no issues. I
    also have CS 2.3 Premium on my machine. I will be getting CS3 in
    about a week or two when it releases but there should be no issues
    whatsoever with this configuration.

  • Xp pro config question with cold fusion(newbie)

    Hello,
    I'm a beginner and I want to learn studio mx 2004.In trying
    to learn Macromedia MX for windows ,I've gone thru the installation
    process in the manual for installing Cold Fusion for the server
    side of things.My question is, I'm not sure if IIS is mnadatory in
    order to use cold fusion.Is it a case of using one or the other or
    is the IIS service required to run Cold Fusion? Also im using cold
    fusion5 is cold fusion mx = to cold fusion 6.1?

    Thanks for answering. Is there any benefits to running both
    servers? I
    don't want to confuse myself with too many
    options.Essentially,I could
    learn Dreamweaver (my ultimate goal) by using either
    installation.
    No, while it is possible to run multiple versions of CF, it
    takes extra
    configurations to do so. I would say this is unnecessary for
    just
    learning. I would strongly suggest upgrading. CF 5 is the
    oldest and
    most limited version of CF still officially supported by
    Adobe. The
    latest version is 7.0.2. There is a huge, major, complete
    rewrite of CF
    and many other bug fixes and enhancements between CF 5.x and
    the current
    version.
    The current version and all versions of CF are free for
    download from
    Adobe for a personal development copy. If you do so now,
    before you
    start writing code, the upgrade install IIRC is quite
    painless and will
    use the configurations you have already chosen.

  • How to change web server from inbuilt Tomcat to IIS in already configured Cold Fusion 10

    how to change web server from inbuilt Tomcat to IIS in already configured Cold Fusion 10

    You just need to run the Web Server Configuration Tool to connect ColdFusion to IIS.  It can be found in the ColdFusion program group off of the Start menu.  Be sure to run it "As Administrator".
    -Carl V.

  • Flex/cold fusion wizard & Visual Query builder has a problem

    has anybody tried the cold fusion / flex application wizard in flex 3?
    to get there follow these menu choices:
    file     new     other     cold fusion wizards     coldfusion / flex application wizard
    I previously installed cf8 and the rds query viewer works fine.
    i simply choose from the following menus:
    window     other views...     Cold Fusion     RDS dataview
    i was initially prompted for the rds password which i entered.
    in the RDS Dataview, I can see the tables, columns, and data for all my existing datasources.
    Unfortunately, when I use the COld Fusion/Flex application wizard,
    I get to the page layout and design screen, add a page with the name artists, choose page type master,  and click the Edit master page button.
    Nothing happens when I click the Edit Master Page button.  I followed the cf/flex tutorial exactly but there is no query builder.
    I dont know if this is related but in the RDS query viewer, the Visual Query BUilder doesn't work.
    I think this may be the problem (the visual query builder has a problem)
    Unfortunately, how do I fix this problem

    already found the answer
    flex has to be run as administrator if using WIndows Vista
    simply shut down flex, right click the startup icon, choose run as administrator, and the visual query builder runs fine.
    Dont know why this occurs because you are always prompted for the rds password.
    anyway, problem solved.
    http://forums.adobe.com/message/228385#228385

  • Digital Signature - Cold Fusion

    we are in the process of implementing Digital Signature
    process with PKI technology complaint. Reports is geneated as a PDF
    format using cold fusion tools. Is there is any feature to
    implement digital signature process in Cold Fusion. since Cold
    Fusion is a Adobe Product ? How Can I take advantage of that ? Any
    suggestion/help is really appreciated.

    I am really interested about this topic. I am in the same
    condition of CF100. I have to build an application where the user
    have to sign a form with his digital signature. I hope that someone
    from Adobe can help us about this issue

Maybe you are looking for

  • 9iFS R2 on Windows 2000 repeated install failure - help !!

    Hi All, here is a desperate plea for help with 9iFS R2 on Windows 2000, service pack 2, the story so far .... 1) clean install of windows 2000 with service pack 2, network configured and working. 2) install Oracle 9i R2 database and configure tnsname

  • Blue Screen- display off at startup/ login or while working

    Hello, I am having issue with my HP probook 4510S, win 7 32 bit.  Display is getting lost suddenly and harddisk light stops flashing. sometime on hard boot it get started immediately and sometime again no display.. If I look at the action centre that

  • Problem displaying some pages since upgrade of leopard

    Hello everyone Is anyone experiencing difficulties after the new leopard upgrade. It all seemed to go well until I tried to read some of my pages. What is weird is that the pages are published and functionning well if accessed from the http..mydomain

  • Hosting iWeb entry pages on .Mac & video files on own server

    Hi I am trying to establish whether there is any real point in hosting a podcast on .Mac because of the bandwidth cost. Is there a point in publishing the podcast entry pages to .Mac, but hosting the video files on another server where I can get chea

  • Restoring data from Time Machine to a replacement secondary drive

    Hi all.  I have a Mac Pro with 4 drives installed - one as a system drive, the others for storing project data, music sample libraries etc.  They are all routinely backed up by Time Machine to a large external drive.  One of the library drives has fa