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 neonep

  1. neonep

    mod_rewrite and mod_jk

    I want apache to rewrite my URL before forwarding to tomcat but I cannot get it to load mod_rewrite before mod_jk . As soon as it gets the request, it gets forwarded to tomcat and the URL becomes invalid. I have spent hours searching through forums and have tried everything I could find. I am...
  2. neonep

    ssh to server and change directories

    Hi everyone, For various debugging tasks, I regularly need to log into 3 different servers and look at 2 different log files on each. It would be awesome to have a script that would open gnome-terminal with multiple tabs ssh'ed to different servers and cd each tab to a directory of my choosing...
  3. neonep

    stop loading current page

    I tried using a setTimeOut which doesn't work either. The only thing that really works is if I put an alert() message up when they hit enter on the address bar. An alert will stay there until they press "ok" and will also NOT navigate away. I would still like it to work with the div popup though.
  4. neonep

    Is there a better way to code for IE 6???

    You could use firebug lite. Firebug works great with firefox. I believe the lite version ( for IE ) does support console logging etc.
  5. neonep

    Is there a better way to code for IE 6???

    Install "Microsoft Script Debugger" and enable error reporting on all javascript errors in IE's options
  6. neonep

    stop loading current page

    Hi everyone, I have a div on a page that I display as a popup ( it's NOT an external popup, just something inside the page that is shown or hidden as a popup ) when a button is clicked. I need to display the same div when a person tries exiting the page. Let's say someone types a new URL and...
  7. neonep

    rsync help

    I should add that right after the rsync, my script changes the permissions on the files. Is that the reason why rsync thinks that it's a new file? Is there a way to fix that?
  8. neonep

    rsync help

    Actually that didn't work. It still deletes the file and recreates it every time I run rsync. Does it have to do with the rsync version installed? Please let me know.
  9. neonep

    rsync help

    Is there a way to tell rsync not to download a file if it already exists in the local file system? Here's the command that I use. /usr/bin/rsync -Huzr --include=*.txt --exclude=* user@server::MODULE/myfiles/ . I am using rsync version 2.6.2. I thought that the "u" option makes it so that it...
  10. neonep

    com.sun.corba.se.internal.core

    When I compile my java files in eclipse, it complains saying "package com.sun.corba.se.internal.core does not exist". This error is obtained from the line "import com.sun.corba.se.internal.core.Request". I am fairly new to java and would like to request you to give me a link where I can...
  11. neonep

    parsing XML in C

    Linux OS
  12. neonep

    parsing XML in C

    So I have a file with data in XML format. Can you point me to a resource that shows how to parse the file and iterate through the xml extracting values? I need to write a C program to do this. I am a newbie at XML. Any help would be appreciated.
  13. neonep

    send message

    How do I send a message from a linux machine to another linux machine? I know that write and talk work with users on the same system. I want to send messages from one machine to another. Please help. P.S. Is there a way to send a message from a windows machine to a linux machine? I doubt there...
  14. neonep

    error code 231

    can anyone tell me what error code 231 means? Thanks.
  15. neonep

    padding doubles with 0

    int num = 32; fprintf ( file, "%6d", num ); writes " 32" into the file fprintf ( file, "%06d", num ); writes "000032" into the file How can I use similar padding to put 0's before digits of a double? So if I have double d = 32.5; fprintf ( file, "%4.2f", d ); yields " 32.5" I want it...

Part and Inventory Search

Back
Top