Search results

  1. T

    who's using my wireless and how to prevent it

    i have a wireless network set up at home with netgear mr 314 wireless router. how can i check if somebody else is using my network to access the internet? what's the easiest way of setting up a password that would prevent that? (airpot adim utility seems to be working only with the...
  2. T

    javascript screen.availWidth problem

    i need to position a javascript popup in the upper right corner of the screen, for which I am using screen.availWidth <script type = "text/javascript"> function examplespop(url){ var position = screen.availWidth-700; window.open(url, "Example Search", "width=700, height=900...
  3. T

    css kerining (letter-spacing) question

    i have a problem that i need to resolve with css. displaying some text from db, i get strings which represent verb stems and endings, i.e. something like lik|e (-ed, -ing) i.e. there's a vertical separator character which marks off the end of the verb stem in the first word, so that the...
  4. T

    PHP recipe for mysql db dictionary-like lookup?

    hey guys! sorry for the delay in responding, i was unexpectedly away for a few days. many thanks for your book tips and the code provided by btoth. i haven't tested it yet, but i'm looking forward to playing with it. (I will probably come back crying, when i can't figure things out, but...
  5. T

    PHP recipe for mysql db dictionary-like lookup?

    Hi there. I was wondering if you knew of any PHP recipe/tutorial out there that could teach somebody who doesn't know much PHP to use it to look up and display mySQL records on a web page. To be more precise, I want to be able to learn how to write a PHP script which will work like this...
  6. T

    mysqldump from terminal

    solved it! /usr/localhost/mysql/bin/mysqldump -u root --xml xmlprep
  7. T

    mysqldump from terminal

    i am trying to get the xml dump of a mysql database on my localhost. and i'm trying to get it through terminal. my db is ok, i can select and display records, it's all fine, but every time i do: mysqldump --xml xmlprep; I get: "You have an error in your SQL syntax. Check the manual...
  8. T

    XSL navigation

    figured it out... didn't have to do with the content of the head tag, but rather with the attribute of <div1>. and the secret is, of course, that you can insert attributes into literal result elements by placing it within {}
  9. T

    XSL navigation

    Hi. I am writing an xsl file for a TEI lite xml doc. The xml doc contains chapters of a book, something along the lines of: <body> <divGen type="toc"> <div1 type="chapter" n="1"> <head>Blah-blah</head> <p> text... text... text. </p> <p> text... text... text. </p> ... </div1> ...
  10. T

    CSS question

    thanks mdnky, that's very helpful.
  11. T

    CSS question

    I discovered a really cool page describing how to use css instead of frames, including fixed footers and headers. For the page, click here. The problem is, however, that if the content is shorter than in the example page, the content area does NOT stretch between the header and footer. The...
  12. T

    sendmail problem

    my provider does not allow smtp relay (actually, they do, but they charge you extra for it...) i've tried the smarthost now, but i don't think it's doing anything. messages sent to hotmail accounts and a couple of other domains still don't get delivered. does this mean i should actually...
  13. T

    sendmail problem

    hi guys. i have used the instructions from o'reilly mac dev center to activate sendmail -- i am really only using it as a server for my outgoing mail. but i am encountering the following problem. my mail will not be delivered to anybody with a hotmail account! i will get the message --...
  14. T

    safari margins question

    weird!!! i get the margin for the same link -- see attached -- what does that mean?
  15. T

    safari margins question

    this must be a simple one for one of you safari jocks... what's up with the margins that show up on safari? take the example of this link. if you open in it IE, you will see that the top image fits perfectly in the upper left corner, but if you open it in safari you will see a margin...
  16. T

    webhosting disaster -- please help with advice

    thanks guys... will look into those. tench
  17. T

    webhosting disaster -- please help with advice

    hey guys. the two websites that i'm in charge with are hosted by featureprice, which has turned out to be completely evil... and we're talking m$ kind of evil here. both of my sites are down, i'm getting no reply from tech support, weird charges are appearing on my credit card... and...
  18. T

    creating unicode encoded pdb's under osX

    hi guys i've recently discovered UReader (twinypalm.com/ureader.php) -- which is a Unicode enabled reader for Palm pdb documents. The problem is: I don't know how to create Unicode enabled pdb's. I've tried a freeware utility PorDiBible (http://pordible.ethelthefrog.net/), but that didn't...
  19. T

    $HOME/bin -- terminal question

    great!!! thanks a lot guys.
  20. T

    $HOME/bin -- terminal question

    hi! i have a shell script that i need to copy in $HOME/bin. Now, this is my first real encounter with the terminal. What is $HOME/bin and how do I accomplish this simple move? (the insturctions i'm following assume i know the basics...) Please help! yours, tench
Back
Top