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 strongm 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. khanza

    Query Call manager database?

    Figured out how to export to csv. Thanks, -Alex
  2. khanza

    Query Call manager database?

    I'm looking for a way to do a dump of the MAC address of the phones, the lines attached, and finally the calling search space for these lines. Why? I'm going to be setting up a bulk administer to take off the legacy second lines, and reconfiguring them to how the corp wants them. Which is a...
  3. khanza

    RUS having issues...

    Currently RUS is failing to work properly. Whenever I add a user to exchange, it takes up to 1.5-2 hours for them to get the SMTP info from RUS (smtp info found in user properties -> Email Addresses tab) It also takes a significant amount of time to replicate to the other administrative groups...
  4. khanza

    Cookies not saving -- Cookie module depreciated?

    Thank you _SO_ much. I can't believe it was so simple, I really appreciate it! :D khan
  5. khanza

    Cookies not saving -- Cookie module depreciated?

    Alright, I edited my code, just to leave out my passwords, and my domains. I realize this isn't the recommended way to do things, and I know (after I did the rest of the site like this) that there are far better ways to do it. But this is the last piece, and I'd like to make this work. Here's...
  6. khanza

    A code writer, but not a PYTHON Programmer

    The csv module? Couldn't you just use split()?
  7. khanza

    Python doesn't work

    Does the interpeter work? What distro are you running? I know in gentoo you have to do #!/usr/bin/env python then in slack you can do #!/usr/bin/python Give us the output of "ls -l /usr/bin | grep python" Hope this helps, khan
  8. khanza

    Cookies not saving -- Cookie module depreciated?

    Here's the cookie code that isn't saving -- cookie = Cookie.Cookie() cookie['username'] = u cookie['url'] = url cookie['username']['expires'] = 10000 cookie['url']['expires'] = 10000 cookie['username']['max-age'] = 10000 cookie['url']['max-age'] = 10000 cookie['username']['version'] = 1...
  9. khanza

    MySQL -- Editing existing data in a row

    Thank you very much -- That led me EXACTLY to what I needed.
  10. khanza

    MySQL -- Editing existing data in a row

    This is probably a really stupid question... I looked through ALTER table, and some tuts over at w3schools (my heros) but I can't seem to find a way to edit EXISTING data in an EXISTING row of a table.... Any ideas? Thanks, khan
  11. khanza

    External USB harddrive -- Partition Start / End OFF

    Here is what I get from partition magic.... =========================================================================================================== Disk Geometry Information for Disk 2: 3648 Cylinders, 255 Heads, 63 Sectors/Track System PartSect # Boot BCyl Head Sect FS...
  12. khanza

    Python telnet server -- Server not sending back output to client

    So I'm trying to make a telnet like application. So far, I've established a connection between the server and the client app, and I've used the subprocess module to pass commands from the client (sent to the server) to bash. Here's my server code - #! /usr/bin/env python import...
  13. khanza

    Router configuration, 2 routers, 2 computers

    I can go from a computer (192.5.5.2) through a router (e0=192.5.5.1 to s0 201.100.11.1) to another router (s1= 201.100.11.2 to e0 219.17.100.1) But I cannot ping a computer (219.17.100.2) on router2. I have checked and double checked my router rip on both routers. I have set clockrate on...
  14. khanza

    Javascript form validation

    Thanks baby jeffy -- I can't believe it was that simple.
  15. khanza

    Javascript form validation

    <html> <head> <script language="javascript"> function validate(formObj){ if(formObj.phone.value.length != 0) { document.register.submit() } else { alert("Please fill in your telephone number") } } </script> </head> <body> <form name="register" action="tekconfirm.php"...
  16. khanza

    Manipulating strings

    And this is a couple of static choices -- so there will always be numeric, and there will always be a dollar sign
  17. khanza

    Manipulating strings

    I just need the number from the rest of the string. Thanks for your reply! Khan
  18. khanza

    Manipulating strings

    I need to take something like this -- "I am worth $80.00" and turn it into two variables, "i am worth $" and "80.00" Or even better 3 "i am worth" "$" "80.00" Any help in the right direction would be greatly appreciated! khan
  19. khanza

    PHP + form issues

    After this script sends me an email with these people's info, I want it to automatically take them to a paypal pay site. Here's what I have -- <html> <?php if ($_POST['submit']){ $to = "myemail@email.com"; $subject = $_POST['name']; $body =...
  20. khanza

    PHP -- unexpected if....

    I forgot a ';' on line 6 -- Thanks guys Can I delete this post?

Part and Inventory Search

Back
Top