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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by meriwether

  1. meriwether

    html file within cgi-bin

    well, i couldn't get it to work out, though it seems like in some cases it may. not quite sure why it did not in my case. i figured i'd wrap the html file into a cgi script and change the links that pointed to it... a little more work, but probably better off in the long haul... thanks for...
  2. meriwether

    html file within cgi-bin

    thank you, i will look into this and give it a shot. appreciate the help.
  3. meriwether

    html file within cgi-bin

    old server is linux on a raq3, not sure what version. new server is linux 2.4.21-9.0.1.ELsmp
  4. meriwether

    html file within cgi-bin

    i'm migrating a site from one server to another, it was in there and is referenced via links throughout the site, so i don't want to move it and have to change all the links that point to it. it worked on the old server, won't work on the new, and the httpd.conf files do not help me out...
  5. meriwether

    html file within cgi-bin

    I have a html file in the cgi-bin that won't server. cgi files server, but not this html file. how can i get this html page to server? i know it's possible, but no idea where to start. can't find much on this online! thanks for any assitance. it gives me a permission-like error; Premature...
  6. meriwether

    regex lastname o'neal or mc clury or doe

    /^(([a-zA-Z\s]+$)|([a-zA-Z\s]+('|-)+[a-zA-Z\s]+$))/ going w/ this, appears to work. allows: alpha-alpha alpha alpha alpha alpha 'alpha alpha' alpha alpha alp'ha (and similar) alph'a alpha (and similar) &quot; &quot;alpha (space alpha) < maybe better not to allow..but... will not allow: '...
  7. meriwether

    regex lastname o'neal or mc clury or doe

    my bad, it also accepts: asdf123asdf :( well, i'll keep working on it. any help always appreciated.
  8. meriwether

    regex lastname o'neal or mc clury or doe

    ok, this *seems* to be working. allows: mc clury clury o'neal but not 123 ' &quot; &quot; (space). /^(([a-zA-Z\s])|([a-zA-Z]x27[a-zA-Z]+$))/
  9. meriwether

    regex lastname o'neal or mc clury or doe

    dwarfthrower, /^[a-zA-Z\s\x27]+$/; still allows only a ' as a valid entry. going to try a combo of expressions, like any alpha w/ a ' or space, any alpha, or any alpha, or any alpha space alpha. if i get it right, i'll post it. thx tho for the attempt. i take it the x27 replaces the ' is...
  10. meriwether

    regex lastname o'neal or mc clury or doe

    trying to get my regex js to validate a last name field on a form. /^[a-zA-Z\s]+$/; this allows me to enter a alpha name (doe), or a alpha space alpha name (mc clury). i need to add ' for names such as o'neal but can't seem to get it. any clues? i've tried: /^[a-zA-Z\s']+$/; but this...
  11. meriwether

    actions - moving object to specific x/y

    i've got a ton of files i'm would like to open, move the upper left corner of the object to a speciic x/y coordinate, then save and close the files. i can't seem to figure out if it's possible to move an object to a specific x/y? also will need to resize each object (one ojbect per drawing) to...
  12. meriwether

    if statment within an if statment...nesting if statements

    thank you jeff. that totally solved my problem. much appreciated.
  13. meriwether

    if statment within an if statment...nesting if statements

    is is possible to nest if statments? it seems somewhat logical, but i cannot get this to work properly. here's a snippit of the code: // Phone Number Validation if(phone != &quot;Phone Number&quot;) { // phone # is optional if(!validatePhone(phone)) {...
  14. meriwether

    trim a string w/ js

    got it: foo2 = foo2.substr(0, foo2.length -1); thanks pete, your answer got the ball rolling. :)
  15. meriwether

    trim a string w/ js

    one other issue, actually there are values such as (127) chicago (127) so foo2.substr(0,2) will chop off the 7...

Part and Inventory Search

Back
Top