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. treyhunsucker

    Corrupt Registry Restored, can't log in

    Ok, so I somehow managed to corrupt the registry on my hp laptop, it's running xp pro I followed the steps from this site: http://forums.cclonline.com/showthread.php?t=1183 to do a "manual style" system restore from the recovery console Now when the pc boots up, whether it be safe or normal...
  2. treyhunsucker

    IP Issues

    So basically my system is a nice IBM server, with great specs, but a couple days ago I restarted it and now neither one of the onboard nic's work. 1 of them originally had a static ip, and the other one was disabled. I have since took the static off the 1st adapter and after booting up it does...
  3. treyhunsucker

    image distribution, error: no distribution points available

    hey guys, 1st day of working with sms, thank you for your patience. I need to reimage a pc, here are the details. There is already an image package setup for this model of pc, and I was told it worked in the past. I walked thru the wizard to create an operating system installation cd, but...
  4. treyhunsucker

    html drop down, data filled with mysql, space problem

    Hello, I have a html drop down box that pulls the data from a mysql database. Everything works but there is 1 small glitch. If the data has a space in it, ex. "Option 1", when pulling from mysql it shows up as "Option 1" in the drop down but when it's posted to the next processing page, it...
  5. treyhunsucker

    message rule in outlook that reads the txt attachment

    Hello, I would like to create a message rule in outlook 2003 that reads a txt attachment in an email and searches for a specific word. I've tried many different ways but can't get it to work, is this even possible?
  6. treyhunsucker

    Call Pilot Recording

    Hello All, I have installed a call pilot, along with the 'reporting for call center' software but I can't get the software to talk with the call pilot. The mysql database has information in it but when I try to pull the information the call pilot it shows an old date and fails. I can give...
  7. treyhunsucker

    mysql_fetch_array weird results

    Hello, This is a piece of code from my script: $result = mysql_query("SELECT complete.a2, dn_records.number FROM complete, dn_records WHERE complete.c3=dn_records.number AND dn_records.number='$data1'") or die(mysql_error()); while($row = mysql_fetch_array( $result )) { echo $row[0]...
  8. treyhunsucker

    change format of phone# only works once

    I am working on an HTML form that asks for 2 phone #'s and I like them to be in this format. (555)-555-5555 The below script is what I've currently been using and it works. I tried changing everything that said "preferred" to "alternate" and having the script in there twice but it didn't work...
  9. treyhunsucker

    insert range of numbers

    Hello, I can't seem to find any documentation on this. I would like to insert a range of numbers. Example: 1 thru 50 Instead of doing: insert into table set (data) values ('1'); insert into table set (data) values ('2'); insert into table set (data) values ('3'); and so on I would like to...
  10. treyhunsucker

    querying from 2 tables with strange results

    What I want is to run a query that select the complete.a2 field and echos the value, where dn_records.number='5553331111' Whats happening is all the values for complete.a2 are echoing back, even if dn_records.number isn't equal to '5553331111' I am getting same results using the below php...
  11. treyhunsucker

    Http Auth Logging System

    Hello, I am running a freebsd 6.2 with a mysql database with a php front end, and apache2 for web. I setup the main directory to be secured by a htpasswd file and it works well. What I would like to do is log what pages the user visits. I have done some research but I am not having any luck...
  12. treyhunsucker

    comparing string to a text file with if statement

    Hello, I am working on a script that will check to verify the md5 of a file hasn't changed. Here is what I have so far: #!/usr/bin/perl if ($md5 eq "@my_file") { print "Secure"; } else { print "Unsecure"; } $md5 = 'MD5 (/etc/pf.conf) = d813f6767fd31ce8cb075cad145da694'; open...
  13. treyhunsucker

    Mysql: Inserting large groups of data as a range

    I am currently building a database for reports and records and would like to be able to add in large amounts of data by specifying a range. Example: I want to insert data into unit1, unit2, unit3....all the way to unit100. I would like to be able to do something like...

Part and Inventory Search

Back
Top