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 Rhinorhino 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: redss
  • Content: Threads
  • Order by date
  1. redss

    which name resolution to use, DNS or WINS?

    In my LAN, I have a couple laptops that are connected to various ports at various times, so each laptop does not get the same IP. I want to be able to reach any of my laptops via machine name, not by IP. Do I need to configure a DNS server, or is it easier done by using WINS (netbios name...
  2. redss

    how to broadcast machine name from win2k?

    I have a 4 port router with a linux (knoppix) box running samba, and a win2k laptop. From a command prompt on my win2k laptop, I can type "ping knoppix", and the win2k DNS knows the IP of "knoppix", apparently from receiving NBNS packets from knoppix (maybe since its running samba?) How can I...
  3. redss

    DNS browser question

    If I type www.foobar.com into my browser, how does the browser resolve the IP address? Which of the following scenario is correct: a) My browser queries its DNS to get the IP address for foobar.com, then sends the http request to the IP address OR... b) my browser queries its DNS to get...
  4. redss

    can password be used for WEP?

    when I enabled WEP on my wireless router, it generated 4 keys from a phrase I entered. From my laptop, I had to enter in one of those 10 digit keys, which is impossible to memorize. Am I making this too difficult? It seems like all I should have to type in would be a simple password that I...
  5. redss

    how to cancel auto-refresh?

    I have a webpage that refreshes every minute using the tag <meta http-equiv="refresh" content="60"> I want button or link that the user can click to cancel the page from auto-refreshing. Any ideas on how to do that? Perhaps javascript using the onbeforeunload event?
  6. redss

    how to read UDF cd on different machine

    I copied files to a CDR in UDF format using EZ Cd creator, and have since gotten rid of that computer and CD burner. I tried installing roxio udf reader to my laptop but was unable to read the CD. What kind of CD drive is required to read UDF disks burned by adaptec/roxio or Nero?
  7. redss

    how to modify apache environment variables?

    How do I modify environment variables in the apache environment? Do I modify httpd.conf? I have apache 1.3.29.0.2-5 on Linux, and my problem is that my perl cgi script can't find their libraries when invoked thru apache, whereas the libraries are found when the script executed from a local...
  8. redss

    What makes the IP change for a cable modem?

    I have comcast cable internet, and I have had the same external IP address for months, with a 4-port hardware router behind my cable modem. I discovered that my IP address changed when I took the router out and plugged the computer direct to the cable modem. And it changed again when I put my...
  9. redss

    how to redirect a page

    My website accepts a username/password (using a perl cgi script) and redirects a user to an external website, and automatically logs the user in by sending the following headers: Content-type: text/html Location: https://www.mysite.com/handler.cgi?user=foo?password=bar As you can see, it is...
  10. redss

    HELP! Oracle 10g .NET ODAC driver broke microsoft's oracle driver

    I installed oracle's 10g .Net OCAD driver 10.1.0.4.0 (ODAC101040.exe) and that broke the .NET apps on my box that use microsoft's oracle driver (system.data.oracleclient). What can I do to make these drivers coexist on my box? I don't mind running a utility to switch the active driver between...
  11. redss

    XML Schema (xsd) question

    I have 3 elements, called a, b, and c. I want to use an &quot;all&quot; compositor so that elements a and b and c can occur in any order. I want element c to be able to occur multiple times, but the &quot;all&quot; compositor doesnt allow unbounded elements under it. Is there a workaround...
  12. redss

    regular expression question

    $txt =~ s/.*foo// ...will delete everthing up to and including &quot;foo&quot; How do you delete everything up to but NOT including the word foo?
  13. redss

    excess harddrive access when idle

    I've been noticing that often my computer harddrive is constantly being accessed when I've been away from the computer awhile (screensaver is active). Upon checking the task manager I see that within the top line, (&quot;system idle process&quot;), for every second that passes, the CPU time is...
  14. redss

    activestate not behaving like unix perl

    I am having trouble getting some one-line perl scripts to work in DOS (activestate) like they work in unix. examples that work in UNIX but not DOS: cat junk | perl -p -e 's/old/new/g;' perl -p -e 's/old/new/g;' foo Any ideas?
  15. redss

    settle a bet: is perl a script?

    I've got a little disagreement with a coworker, I'm trying to tell him that perl is not a true &quot;scripting language&quot; and the term &quot;perl interpretter&quot; is incorrect because as I understand it, perl compiles down to native code when executed, am I correct? Isn't it more...
  16. redss

    how to find out javac version

    how can I find out the version of my javoc compiler? &quot;-version&quot; is not a valid option for javac (like it is with java.exe)
  17. redss

    how to find size of menu control array

    I have a dynamically loaded menu object - how can I tell if a menu item is loaded? I.e. there might be 3 or 10 menu items, but I can't say if mnuOption(3) = nothing then... and also I can't seem to say get the number of menu items loaded (via &quot;load mnuOption(i)&quot;) with the UBOUND...
  18. redss

    VB to C# translators

    Are there any websites that will convert VB.NET code to C#? I've found expensive utilities but nothing free. However I've found websites that will go the other way (C# to VB) for free. (see http://authors.aspalliance.com/aldotnet/examples/translate.aspx)
  19. redss

    newbie javabean question

    I am learning to work with java, and downloaded a free whois javabean from www.ezjavabeans.com but all the zipfile had was a jar file and an example java file which has as its first line: import com.ezjavabeans.ezwhois.*; There are only html help files in the com/ezjavabeans/ezwhois folder...
  20. redss

    confused about references

    I am a bit confused about references and the import keyword. If I want to use a function somewhere from the .net class library, do I have to BOTH set up a reference and use the import statement? What is the difference? I am having trouble finding out how to reference extra functions I want...

Part and Inventory Search

Back
Top