Recent content by Rossv1

  1. R

    ColdFusion MySQL drivers

    Thank you for fixing this. What I don't understand is WHY this keeps happening. I've had to report this exact problem with CF2 a number of times, each time the MySQL connector was incorrect. Once it gets changed, why is someone changing it again? You should never have to update the MySQL...
  2. R

    ColdFusion MySQL drivers

    I've had numerous issues with the MySQL drivers on multiple ColdFusion servers in the past 5 months. I've had to submit numerous tickets and have had significant downtime because of these issues. Even when I advised your tech of the issue during the last outage, it took 2 days for him to...
  3. R

    Trouble creating 3rd level domains

    I have a client who cannot create a third level domain (forums.theirsite.com). The resource 'Third level domain. (Mail Under Host Domain)' is included in the plan. Under plan Advanced Settings, I've set the max value for 3rd Level Domains to 12. Every time we try to set up a domain with...
  4. R

    British Pound (£) Display?

    Thanks for the reply. Unfortunately, it is user generated content that is being stored in the database.
  5. R

    British Pound (£) Display?

    I've got a site I'm working on that uses text drawn from a MYSQL database. When a user enters text that includes the British pound symbol '£', it is displayed as a 'ᆪ' My char set is: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> What am I doing wrong????
  6. R

    CF3 Reliability

    Arijeet, It's not just one site. ColdFusion is crashing several times a day. 3 times this evening I went to the site and jrun could not connect. Entering a ticket would be useless, because by the time you get to it, the CF server will most likely be back up, and that is what you will report...
  7. R

    CF3 Reliability

    Whats going on with CF3? For the past few weeks, my sites on that server seem to be unavailable more than they are available (not really, but it's pretty bad). Lots of 'cannot connect to jrun server' errors. How often is CF restarting itself? Can we please stabalize this server? Thanks...
  8. R

    Cf3

    Done. Thanks Ashkay
  9. R

    Cf3

    CF3 is REALLY slow. Also, the CFIDE directory is corrupted AGAIN! ( Ashkay just fixed this a few days ago!) Can someone check to see what the issue is? The server is barely responsive.
  10. R

    Connecting to MySQL table

    Correct. My local windows machine had tables named mySampleTable, while the remote (Jodohost/linux mysql server) was mysampletable. Thanks Stephen
  11. R

    Connecting to MySQL table

    That is exactly the issue. Thanks for the reply. For my getting-too-old-for-coding eyes, a table name like this: myFirstTable is much easier to read :) A habit I need to break, I know!
  12. R

    Connecting to MySQL table

    Solved My local database is not case dependent. Jodohost MySQL server IS case dependent.
  13. R

    CFML help, need to block spammers from hijacking my forms

    Not sure if you've resolved this yet, but here you go: <cfif cgi.remote_host NEQ cgi.server_name> <cflocation url="index.cfm?message=blah" addtoken="no"> <cfabort> </cfif> Depending on the server config, you may need to play with different CGI variables. Here is a list...
  14. R

    Connecting to MySQL table

    Sorry for the cross-post, but I'm really stumped here...: I've got a MySQL database created, CF DSN set up, etc. I can successfully connect to it with a simple query to SHOW TABLES; When I run this query, I see all of the tables in the database. When I try to query a table, I receive an...
  15. R

    Connecting to MySQL table

    I've got a MySQL database created. I can successfully connect to it with a simple query to SHOW TABLES; When I run this query, I see all of the tables in the database. When I try to query a table, I receive an error that the table does not exist (it does). I'm connecting via ColdFusion on...
Back
Top