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: *

  1. imstillatwork

    Cycling Through words in an input field

    Hello, On a lot of sites with a search form, there is a default value in the input field that has an example search term, and when you click the input, the default disappears. I need to do that, but with a twist... I need to cycle through a list of words so that they fade in / out until you...
  2. imstillatwork

    Hey!

    Cool to see the same old crew here on the MVP list. that is all. been a while. :) Kevin http://www.lot-o-nothin.com/cfml/
  3. imstillatwork

    alternative to cfftp?

    Been a while...A little off topic, but there is a lotta smart people here.. We are having MAJOR cfftp issues. downloading 20mb + files and downloading over then 200 files. I have been looking for an ftp client program that can run on the server ad has these features: 1) scheduled transfers 2)...
  4. imstillatwork

    CFEXECUTE and locked files...

    Hey-o Been awhile, but I need your help (anyone?) I'm cfexecuting ffmpeg to convert video to .flv for a project. works great, but for some reason, the file specified in cfexectute for output is locked even after cfexecute is done. The .flv file is also locked. can't delete, rename, etc... i...
  5. imstillatwork

    Finaly!! Latest Project Launched!

    http://www.watg.com/ Full on custom CMS (totally customizable) A set of front end CFC's / functions that allow extremely rapid, extremely custom front end development. To much to tell now, but it's officially launched. Project Management and Design by electroglyph.com - I was contracted for...
  6. imstillatwork

    Improving QoQ Speed?

    Is there any way to improve a QoQ speed? I am taking an initial MySQL result that contains a wddx string in on field, taking that wddx and making it into a query so we can search, sort, filter on the wddx values as if they are now column names. the main query is fast (< .02 seconds), building...
  7. imstillatwork

    cfinput required based on other field data?

    I don't use cfform much, but the admin section of this project it makes sense to do so in a few places... I am hoping it is possible to bind 2 fields in a way that one is required ONLY IF the other has content... fields are a cfinput type="file" and a cfinput type="text" I want the text...
  8. imstillatwork

    Strange Query of Queries Error

    Hell...o the code i am using works perfect on our dev server (MX7, mysql 4.1) but not on our crystaltech server... mx7, mysql 4.1x here is the error Query Of Queries runtime error. Query Of Queries runtime error. Unsupported Cast Excpetion: Casting to type "NULL" is unsupported. The error...
  9. imstillatwork

    MORE ColdFusion 8 Goodness

    I just found another feature in CF8 that I'm sure many here will enjoy. CFLOCATION now supports a new attribute: 'statuscode' NO MORE manually writing proper redirects using cfheader! <cflocation url="www.te-tips.com" statuscode="302"> any of the 300 codes are valid, as we are redirecting...
  10. imstillatwork

    convert PHP array dump to CFML

    I'm working with a database that is used by a PHP app. In several fields, PHP arrays are stored in a format sort of like what WDDX does, but not xml based. I need to convert that the something I can work with in CFML. Here is an example: a:6:{ s:4:"name"; s:12:"clinic_name1"...
  11. imstillatwork

    PHP arrays in CFML?

    Has anyone seen a function or tag that will take a PHP array saved in a DB and convert it to a CFML array? here is an example...
  12. imstillatwork

    CASE in SELECT for aliases?

    a table has clinic_name, name_f, and name_l If the clinic_name is blank, I want to use 'name_f name_l' instead. I want to sort by this also, so can I write a CASE statement that will check if the clinic_name is null or blank and assign the alias accordingly? Like this? (doesn't work, and I...
  13. imstillatwork

    Related Selects? HA!

    Beta CF8 free hosting at hostmysite.com (free beta hosting until CF8 is no longer beta) Anyways... http://h127301.cf8beta.com/index.cfm for some quick examples including related selects. Potentially unlimited numbers of related selects also! The image manipulation is DEAD EASY. nifty little...
  14. imstillatwork

    user domains and session data

    Today I wanted to add a few features to a project. Users log on at www.domain.com/logon/ And manage their blog at www.domain.com/members/ Their blog actually lives at usename.domain.com I need to access a logged on users session from their blog url. the session is set at the generic...
  15. imstillatwork

    Joining and excluding results?

    Not sure how to word this, but I'll try to exlpain it as well as I can. First lets start with the tables. Three of them. two objects and a link/join table to join the two objects together (two objects being pages and items) Pages table: pageID, page details.. Items table: ItemID, item...
  16. imstillatwork

    Sample Genealogy Databases?

    My boss landed a job that will involve user created family tree info...I know nothing about family trees or even where to begin with a database. I've researched but have not yet found database schemas or examples. I am hoping to find a sample database and sample queries for common actions. I...
  17. imstillatwork

    Sorting and grouping

    There is no way to sort each group of results differently in a single query is there? That probably does not make sense, here's what I'm doing: select category.title,category.sortContentBy,content.title from category left join content on content.category_id = category.id...
  18. imstillatwork

    How do they do it???

    Blogspot.com for example. each user gets a subdomain, that's easy. now it also appears that each blog entry is saved as HTML, I would assume for less web application server load / less DB action. I like that, also easy to do. My curiosity is with how they store the users files. a url...
  19. imstillatwork

    datasource.cfc Admin API error

    I don't know how many of you are using the CFMX admin api, but I'm having a problem with it. The originaldsn argument of setOther (or setMSAccess)is giving me troubles. I am passing a hidden form field called originalDSNName and a text field called dsnName Your supposed to pass the original...
  20. imstillatwork

    Query to CREATE DATABASE fails.

    I'm trying to create a new MYSQL database using the following query.. <cfquery datasource="#mydshere..#"> CREATE DATABASE IF NOT EXISTS my_test </cfquery> If failes saying I don't have access to that DB. The user name being used has CREATE privelages, I've checked that a million times. How...

Part and Inventory Search

Back
Top