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 bkrike 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: khanza
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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
  5. 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...
  6. 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...
  7. 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...
  8. 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"...
  9. 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
  10. 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 =...
  11. khanza

    PHP -- unexpected if....

    Here's my code - <html> <?php if ($_POST['submit']){ $to = "enduser@aol.com"; $subject = $_POST['name']; $body = $_POST['name'].",".$_POST['address'].",".$_POST['city'].",".$_POST['zip'].",".$_POST['phone'].",".$_POST['email'].",".$_POST['preference'].",".$_POST['pass'] if (mail($to...
  12. khanza

    PHP -- Sending mail + if statements.

    ok -- I know sending mail works on this particular server because I tested it using - This script <?php $to = "enduser@aol.com"; $subject = "Hi!"; $body = "Hi,\n\nHow are you?"; if (mail($to, $subject, $body)) { echo("<p>Message sent!</p>"); } else { echo("<p>Message delivery...
  13. khanza

    VLSM implementation questions

    I was talking to some people regarding VLSM and doing some reading from the cisco site.... So far I know what VLSM does, and I have been told that to implement it you must - 1 - Use a compatable routing protocol ( OSPF for example ) 2 - Just set up the PC's to have a different subnet masks...
  14. khanza

    2501 not holding configuration

    Whenever I config my router I do a 'copy run start' Then I reboot it, and it has no config.... What could cause this? Anyone know? Thanks, khan
  15. khanza

    XP kernel question

    I heard from a couple of quite reliable sources that the XP kernel does NOT support true multitasking. Meaning it cannot do more than one thing at once -- however it can split resources to give the appearance of multitasking.... Is this true? I've done some searching, but I havn't found much...
  16. khanza

    Cisco 2501 -- Hooking it up to my network.

    alright, so -- I found this cisco 2501 router, and I've decided to try to play with it. This is my problem - The back of this puppy has an AUX and a console port (for configging right?) 2 Serial ports (to communicate to other routers right?) 1 AUI Port (to transceive to an RJ-45 eth connection...
  17. khanza

    Step by Step confirmation?

    How do I pull off a step by step confirmation in windows xp? I tried with the f8 during bootup just after POST, but there wasn't any option.... Any ideas? Alex
  18. khanza

    Add on - Disabled.... Can't re-enable....

    Ok, so i goto a site and try to view a pdf document. XP's ie says that an add on is disabled and I need to enable it to view it.... So I click on this thing, and it takes me to: Tools > Manage Add ons But the radio buttons to re-enable the addon are greyed out. How can I enable this adobe...
  19. khanza

    href - Hypertext reference... Minus the hypertext....

    Well, I'm doing an intranet site for a local company, and it includes links to files on other servers..... I used the code <a href="\\servername\path\filename.doc">Click here</a> It doesn't work. When I hover my mouse over the link it shows the url at the bottom and on the links that don't...
  20. khanza

    Cisco 2500 series router, Startup issues.

    Ok, so I connected to the router, through my serial port into my router's "console" port. I hypertermial'ed in and this is the screenshots - <img src="http://img.photobucket.com/albums/v48/Pozican/top-router.jpg"> <img src="http://img.photobucket.com/albums/v48/Pozican/middle-router.jpg">...

Part and Inventory Search

Back
Top