Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: lucidtech
  • Content: Threads
  • Order by date
  1. lucidtech

    cfquery is much slower on virtual dedicated server vs. shared host

    I am trying to move my site from a shared hosting account to a Virtual Dedicated server. Everything is working perfectly except that query response times are terrible on the new virtual dedicated server, which seems counter-intuitive to me. The servers are using two different database servers...
  2. lucidtech

    cfajax always returns 'null' result

    I have setup Coldfusion 8 on a linux server running CentOS. Installation is perfect with one exception... all my cfajax queries return a null value. I have tested this on my local server and it works great, have used CFINVOKE to test the code in the CFC and make sure it was error free, but for...
  3. lucidtech

    coldfusion 8 on linux box running centos keeps rebooting

    My Coldfusion8 server keeps rebooting itself. I'm running on a virutal dedicated server w centOS. Sometimes when it reboots I can catch a JVM Out Of Memory Error, have googled this for the last two days and have tried everything but still not working. Here are my coldfusion log files, they...
  4. lucidtech

    new coldfusion server on linux virtual dedicated server crashes

    I have Coldfusion 8 installed on a CentOS Virtual Dedicated Server. My system runs great after a reboot, then slowly as members sign on it gets slower and slower until it crashes. I'm guessing this is a memory leak, and after some research I put request limits on my datasources and also set...
  5. lucidtech

    coldfusion 8 on linux virtual ded server not running

    I have attempted several times to get coldfusion 8 trial setup on my virtual dedicated server with no luck whatsoever. I finally got the connector files setup correctly so I'm no longer getting a connector error when i start the cf server, but when I go to a cfm page I get a 500 error that...
  6. lucidtech

    error 404 template with query string?

    I have a custom 404 error document setup in my .htaccess file. I was wondering, is there a way to pass the original url typed in (the url that the browser attempted to visit but was not found) to the template that is loaded? Meaning, if I type in http://www.mydomain.com/bad_page.html in my...
  7. lucidtech

    default 404 error page not displaying cgi.query_string

    I used to run my site on a shared windows server running Coldfusion 8. I recently upgraded to a dedicated Linux box running CF 9. I want to use a custom 404 error page to 'fake' custom urls for members profiles, (ie. http://www.mysite.com/mydisplay would bring up a members profile who has that...
  8. lucidtech

    cache only images?

    I am running Coldfusion 8 and want to know if there is a way to client-side cache only images, so pages update everytime but my background images don't need to be reloaded every page refresh?
  9. lucidtech

    database connection errors on my site, hosting company is no help!

    I am intermittently getting this error on my CF8 website. It's on a shared hosting environment. I contacted my hosting company and they have nothing to say about it. Is this something wrong with their server setup or have I done something wrong? Please help me, I'm going to lose members on...
  10. lucidtech

    session variables with mobile

    I'm building my first mobile site (like the dumbed down facebook mobile version). Thing is, session variables only last for a page. After that they seem to be reset. How do I set the Application to store session variables for the site so that a mobile will remember them for longer than a...
  11. lucidtech

    as3 child clip help

    I'm new to AS3 and I'm trying to find an easier way to get a child element of a clip. AS2 equivelant : user_mc.btn_mc.btn AS3 I'm doing this: var user = this.getChildByName("user_mc"); var btnmc = user.getChildByName("btn_mc"); var btn = btnmc.getChildByName("btn"); Is there an easier syntax...
  12. lucidtech

    as2 to as3 conversion help

    I have the following code in AS2 : for(g=0; g<10; g++) { var curCard = attachMovie("Card Clip", String("card"+String(g)+"_mc"), 500000 + g); cur = eval("card"+String(g)+"_mc"); } How would I do this in AS3. I need to be able to create movie clips with dynamic names and then be able...
  13. lucidtech

    flash professional 8 to droid app

    Is there a way to program a Flash App in Professional 8, open it in CS5 and then compile it as a Droid app? I love the older setup, system and components. Otherwise I'll go to CS5 if necessary.
  14. lucidtech

    problem with query, or so says my host

    I have a query that pulls data from a table based on the last date/time a user viewed a page, in order to see which of your 'friends' are online. I currently have about 3000 members, the user_friends table that is being queried has 46,000 records total. This is what my hosting company has told...
  15. lucidtech

    simple chat best practices

    I'm playing around with building a simple chat room and I've read a bunch of tutorials... there seems to be some discrepancy in what the best practice is. Would I be better off storing the chat messages in an indexed table, or is it better to store the rooms chat messages in a string as a...
  16. lucidtech

    not a php developer, need some ini file help

    So I have a shared hosting account that I use Coldfusion for. Unfortunately my hosting company disables the cfexectute tag on shared hosting environments, and I'm trying to use ffmpeg to convert videos to flv on the fly. So, I built the upload and conversion script in php. It works great on...
  17. lucidtech

    CFQUERY help using GROUP BY

    I am trying to run a query where all messages are pulled form a users inbox. Messages are kept clean in the inbox by setting a 'mail_orig' column in the table to the date of the original message.. this way all correspondences between the two parties concerning this message can easily be...
  18. lucidtech

    creating table rows on the fly

    I am creating a table row and setting it's html to the html of another table row on the fly.. works great in Chrome and Firefox but I get an error in IE (go figure). Here's the code, I've set the line that is giving me the error in bold... var tbl = document.getElementById("all_messages")...
  19. lucidtech

    query of queries limit issue

    Whenever I run a query of a query and use 'LIMIT' I get an error. I know cfquery has a maxrows setting but I need to start a certain row as well and limit the results to 10 rows.
  20. lucidtech

    CF server seems to get bogged down after a while

    My Coldfusion server seems to get bogged down the longer it runs.. I'm guessing it has to do with my application.cfm file. Can anyone tell me what the issue may be? Am I storing too many variables? Below is the code (altered) from my Application.cfm file. <cfapplication name="myapp"...

Part and Inventory Search

Back
Top