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 SkipVought 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. erinql

    Hibernate Connection Pooling on 10g app serv

    I adopted a project that was built on Hibernate 2.1.1 and discovered that the hibernate.properties file did not specify a connection pooling manager, after our Open JDBC connections started climbing radically on the 10g Application Server. I found a good list of troubleshooting tips at...
  2. erinql

    Two javascript commands; only last one loads

    Hi gurus! Flash newbie here. I've got the following ActionScipt, which only loads the second window when on the server: on (release) { gotoAndStop("txt1"); getURL("javascript:openNewWindow('mov5.html','thewin','height=275,width=400,toolbar=no,scrollbars=no')")...
  3. erinql

    How can I identify who owns an IP?

    Hi all TCP/IP experts! I have built a script for a client that tracks the IP addresses of the visitors via the REMOTE_ADDR global, but I'm having a difficult time finding the right tool or online database to indentify who these IPs belong to. I've looked at ARIN and GeekTools, and can get some...
  4. erinql

    Using Pear.DB???

    I'm not sure about requiring PEAR for your database (Pervasive) but if php is installed and configured with Pear (run a phpinfo() script to find out) then you should be able to install PEAR from the command line such as: pear install <package> or, if php is not configured with pear, windows...
  5. erinql

    Simple onSubmit not verifying...

    Thanks Rick! Erin Quick-Laughlin DBA, PHP/MySQL programmer
  6. erinql

    Simple onSubmit not verifying...

    In this case, it's pretty much just the onSubmit that's not working - I would just use onBlur and validate for each field, but I'm not sure how to let people get out of the field without fulfilling it's requirement. So I decided to use onSubmit and do a collective function for all the...
  7. erinql

    Simple onSubmit not verifying...

    This is copied directly from a DevShed example, and created in a file called submit.php. <html> <head> <script> function printMessage() { alert(&quot;No, the answer is not &quot; + document.forms[0].answer.value + &quot;.\nEveryone knows the answer is 42.&quot;); return false...
  8. erinql

    Can't save after updating a placed file, or can't even update.

    I'm having a strange quark problem...sometimes when I update a placed file, it won't let me save the document, or sometimes won't even let me update the image and says &quot;file not found [-43]&quot; when I select the file it says is missing. I've been working around it by quitting out of Quark...
  9. erinql

    Making second set of radio buttons appear after checking first set

    Hi all! I'm modifying an employee db, and it needs 2 new fields: Type & Status. When radio button 'type' (Employee/Machine) is chosen, I need Status to show up without going back to the server. status(1/2/3) will have different text values according to type. (Either Hired/Active/Term or...
  10. erinql

    Overhead

    It sounds like you're using an signed tinyint for your column type, which has a max capacity of 127 positive values (255 unsigned). But I'm assuming that you have less than 127 users, and your auto_increment value has been corrupted to max value. You can verify this at the mysql prompt with...
  11. erinql

    PHP redirect function

    ---------- Also, using MySQL, after creating atable, is it possible to add columns/fields. In MS Access, you just go to design view and create the new column, but what is the syntax if it is possible in MySQL. Thank YOu ---------- To add a field, use ALTER TABLE. Lets say you create a table...
  12. erinql

    Moving focus from field to field

    I have a javascript that no longer works, and I'm not a JS programmer (yet). It's setup for 4 text fields for entering IP octets, and it's supposed to change focus after entering the 3rd character in each box. I'm not sure why it fails now. Also, I want to adjust the script so that when it...
  13. erinql

    Auto update with PHP/MySQL

    I'm not an expert in PHP or Cron jobs, but here's how I would do it: create a command-line executable php script with the following at the top: #!/usr/local/bin/php -q //modify if php is located elsewhere <? //put php script here to connect to db, insert new record and close connection...

Part and Inventory Search

Back
Top