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 SkipVought 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. jdaniels

    Session problem

    I wasn't invoking 'session_start()' - and that was the problem! Thanks for your help :) Jon Daniels
  2. jdaniels

    Session problem

    Hi, I am using PHP4 on Win2000 with IIS and am unable to retrieve session variables. I can set them with: $_SESSION['key'] = $val; This sets the value in the session file but I cannot retrieve this value if, for example, I use this in another subsequent page: $thisVal = $_SESSION['key']...
  3. jdaniels

    Strange Apache / WinME DocumentRoot problem

    Followup: Actually I think that this has little to do with Apache - I had the server name the same as my machine name so typing http://servername went to a shared folder! Typing localhost does the trick. D'oh!
  4. jdaniels

    Strange Apache / WinME DocumentRoot problem

    Hi, I am running Apache 1.3.29 on Windows ME and previously have had no trouble with it, even having had it binded to JRun 3.1. But nowadays whenever I browse to the document root, it brings up a different directory in the browser. The DocumentRoot directove in httpd.conf points to...
  5. jdaniels

    Not to shift from CF but

    I'd suggest PHP4 - very easy to install, free, quite a powerful language, and reasonably easy to learn and use.
  6. jdaniels

    How to link to a database

    Regarding SQL Server / Database server: "SQL Server" is the name of Micrsoft's database server, as opposed to Oracle's or MySQL. Not very original of them, I know :)
  7. jdaniels

    Referencing a Table Cell in JavaScript

    Well, a cross-platform solution in JS tends to mean coding as many branches as there are plaforms, which is a bit of a dirty hack, but seems to be the standard. All this said, the table-based solution by 'theboyhope' looks good. I've never seen that ... Jon
  8. jdaniels

    Referencing a Table Cell in JavaScript

    Here's what you do: // in the javascript section... document.layers['myLayer'].innerHTML = &quot;Text in the layer&quot;; ib the HTML <layer ID=&quot;myLayer&quot;></layer> Points to remember are: a) a DIV or SPAN in MSIE is equivalent to a LAYER in NS b) given point (a) you have to...
  9. jdaniels

    Referencing a Table Cell in JavaScript

    Here's what you do: // in the javascript section... document.layers['myLayer'].innerHTML = &quot;Text in the layer&quot;; ib the HTML <layer ID=&quot;myLayer></layer> Points to remember are: a) a DIV or SPAN in MSIE is equivalent to a LAYER in NS b) given point (a) you have to reference...
  10. jdaniels

    Referencing a Table Cell in JavaScript

    I don't believe it can be done. Tables are part of an earlier HTML specification that was purely markup (ie display) and had no way of referencing arbitrary blocks of text. This is where DHTML is so useful - you can use DIV and SPAN to encapsulate a block of text, and write HTML to these blocks...
  11. jdaniels

    Getting voice events while recording

    Thanks for your input. I think what I will do is this: at the same time as I run the call script, I will run a monitoring script that kills the record process when the file reaches a certain size. As you say, it seems to be working some of the time, but not every time ... Thanks again Jon
  12. jdaniels

    Getting voice events while recording

    Hi, I have a Redhat machine which dials up to a Dynamode voice modem from a series of shell scripts included with the Big Brother monitoring app. The situation is this: I can dial out to a given number, and I am looking at one of two scenarios occurring; 1) the call goes in the normal way and...
  13. jdaniels

    Can't connect to Database server

    Here's an article detailing the same problem: http://www-tcsn.experts-exchange.com/Databases/Mysql/Q_20737391.html Jon
  14. jdaniels

    Can't connect to Database server

    A couple of things to check... 1) The mySql server is actually running (start the service if it is not). I think on Win2K you have to start it manually or set it to automatic and reboot 2) password is correct HTH, and apologies if you did this already Jon Daniels
  15. jdaniels

    CFMX java conflict

    Yup, I used CFMX earlier this year and found that it has become basically a java app server (they have built it on top of JRun I think), so you get alot of Java type errors and constraints. The best quick advice I can offer is to use underscores (maxheight_local) or second-word caps...
  16. jdaniels

    help with div's and form fields

    2 ways to do this... You could use Iframes. You have the first form in a DIv in the parent page, and when you hit the button execute some JS that calls some CF page (with the username as part of the querystring) in the iframe which is inside the second, previously hidden div. I did this for a...
  17. jdaniels

    positioning layers from window, not document

    Hi, I'm putting together a site which has a list of items, each of which has a mouseover event that pops up a layer at the position of the mouse cursor. This works fine until I scroll down the page. Then, when the mouse rolls over a link, the following scenario occurs: although the link may be...
  18. jdaniels

    positioning LAYERS according to document, not window

    Hi, I'm putting together a site which has a list of items, each of which has a mouseover event that pops up a layer at the position of the mouse cursor. This works fine until I scroll down the page. Then, when the mouse rolls over a link, the following scenario occurs: although the link may be...
  19. jdaniels

    CF 5 versus MX

    By and large I've had no problems migrating applications to MX. There are a few differences though, specifically: 1) SQL Debugging: I can't get this to work at all 2) Archiving: This useful tool (which, if it is on CF5, I can't find it) allows you to archive not only cfm files but ODBC...
  20. jdaniels

    CFFILE read of a served web page

    Yup, that did it! Thanks alot for your help. JD

Part and Inventory Search

Back
Top