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!

Recent content by TruthInSatire

  1. TruthInSatire

    CFLDAP and Read only access to pages

    It's been a while but it depends on how your forest and such is setup in AD. look at the contents of memberOf, CN, and SN. the member of is the full OU, for example one of my filters reads: !(memberOf=CN=MyDomain Do Not Display,CN=Users,DC=MyDomain,DC=net) Vegans are friends, not food...
  2. TruthInSatire

    GET method form manipulation

    <cfhttp url = "http://...?#cgi.queryString#" ...> no good? Vegans are friends, not food...
  3. TruthInSatire

    GET method form manipulation

    I'm sorry, I'm not understanding your question. you want to submit a form to a .net form handler? Why doesn't the following work for you? <form method = "get" action = "http://thissite.com/dosomething.aspx"> <input type = "text" name = "value1" /><br /> <input type = "text" name = "value2"...
  4. TruthInSatire

    session variables with mobile

    I'm not sure how facebook's mobile site works and have no interest in finding out. For all I know it's passing the session token in the url. Vegans are friends, not food...
  5. TruthInSatire

    session variables with mobile

    what happens if you go to http://headsplode.com/tekTest/step1.cfm on your mobile phone? I used your cfapplication tag and tested on my iPad with safari, atomic web browser, and terra. Also tested on my Droid X with the default browser. All work fine. Vegans are friends, not food...
  6. TruthInSatire

    session variables with mobile

    ok, well does it work in a PC browser? Vegans are friends, not food...
  7. TruthInSatire

    session variables with mobile

    You should look into using application.cfc. Application.cfm is SOOO 4 versions ago. Vegans are friends, not food...
  8. TruthInSatire

    session variables with mobile

    <cfapplication name="mySiteMobile" clientmanagement="Yes" <cfapplication name="myMainSite" clientmanagement="Yes" sessions persist across a single application, with a single name. Vegans are friends, not food...
  9. TruthInSatire

    One step closer to de-&quot;flashifying&quot; the web

    You're information is a bit off. Chrome will drop NATIVE support for H.264. Meaning any html5 video using that codec. Anything that does stream H.264 will get wrapped into a Flash player which is built into chrome so users can still see the video. Chrome has to do this because it doesn't have...
  10. TruthInSatire

    session variables with mobile

    are you using CF5? If not you should be using application.cfc do you have nested folders with other application.cfm files? make sure session management is set to yes in them as well. if you're using client variables, make sure cf has valid client management configured in the administrator...
  11. TruthInSatire

    How Do I Index a Variable During a CFloop?

    or you can avoid evaluate which has a lot of overhead and use structure syntax. ex. <cfset x = evaluate("form.fieldName" & i)> would be <cfset x = form["fieldName" & i]> or <cfset x = form["fieldName#i#"]> I prefer the first alternative syntactically; however, the second option is a...
  12. TruthInSatire

    microsoft word with image, image not showing..

    I know PDF has the same problem. We work within an intranet so our solution was to do something like <img src = "file://machineName/path/goes/here/test.jpg"> to get away from using https. HTH. Vegans are friends, not food...
  13. TruthInSatire

    Fetch message from another page

    according to bennadel.com http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/jsp/PageContext.html what are you trying to do? show hello world in a cfm page by including a jsp? you can use cfhttp if all else fails. Vegans are friends, not food...
  14. TruthInSatire

    cffileupload question

    Sadly I don't have 9 installed yet but try doing a cfcump of cffile and see what's available. the docs page doesn't provide a list of return variables such as cffile.serverfile. I would assume cffile.serverFile may be an array containing the file names. Let me know...
  15. TruthInSatire

    Do something based on selection from a list

    Actually, after moving setAjax() to a .js it's about the same, at least for this example. It's preference really. I've never been a fan of frameworks (although I do see jQuery's strengths and it's the popular choice for a reason, I dig that). Most of my clients run in a javascript free...

Part and Inventory Search

Back
Top