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 Chriss Miller 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: pcorchary
  • Order by date
  1. pcorchary

    How to get line-by-line output

    I've tried using flush (); ob_flush (); in my loop, and the correct results occur on Firefox, but not on IE. (Naturally, right ;-). Perhaps because I'm in a table when writing HTML - i'll try no table. Anyway, I understand that display model of web apps -- it's still a puzzlement to me that...
  2. pcorchary

    How to get line-by-line output

    What is different then about the output model of CGI (written in bash shell), from php then ... because CGI works perfectly on the output side...
  3. pcorchary

    How to get line-by-line output

    I'll FREELY admit I'm a newbie, and only a hacker-programmer. With that out of the way... I have a script that needs to iterate through a series of (33) steps, each taking 2-5 seconds. I've written this as a BASH CGI that outputs CSS/HTML, and it pushes one line of output per iteration to the...
  4. pcorchary

    PHP Script to post on-call rotation

    I am looking to have a config file listing staff on call with the week they are on-call (config file can be in any format, so long as it has on-call time, name, phone), and then a PHP script to scan the config and list the person or person's on-call based on the server date in the HTML output...
  5. pcorchary

    HELP: Scripting changes in Public Folders

    I'm looking for a way to script on the Outlook/Exchange CLIENT-side a move of messages in one public folder to another public folder. Ideally this script would have the ability to enter a date range, and a source and target Public FOlder, but i could deal with hard-coded. Basically we have a...
  6. pcorchary

    Expect and SSH help needed

    I need to run remote apps via ssh. Easily done. However I'm trying to automate this, and despite 15+ years in unix, I've never used expect before :-) (just sh/ksh and some perl) #!/usr/bin/expect # # for now, assume called with [host] [user] [passwd] spawn /usr/bin/ssh [lindex $argv 0] -l...
  7. pcorchary

    Mandrake 9.2 and USB Keybaord/Mouse

    White box PeeCees, mostly with ASUS or BioStar mobos and AthalonXP processors. Keyboards and mice are various Logitech products. There are numerous postings on the MandrakeClub about problems during installation, which I have also, but I'm completely unable to get any of 3 different systems to...
  8. pcorchary

    Mandrake 9.2 and USB Keybaord/Mouse

    I'm completely unable to get Mandrake 9.2 to recognize or use my USB keyboard or mouse and either of two different systems I've tried. Can anyone help at all? (I prefer MDK92, but RH8/9 both work perfectly on the same hardware. I've not tired MDK8x on this hardware, but I had good luck with USB...
  9. pcorchary

    Trapping a process crash

    Part of the problem may be that trap is for catching signals ... maybe your script is crashing on it's own, not from a signal? You can use trap with no signal#, or use 0 for shell exit, that way you can write a debug routine that is called.
  10. pcorchary

    NFS problem - Mandrake

    What specifically do you mean by "browsing" an NFS directory? If you have server A exporting a filesystem, and client B has it mounted, I'm assuming your saying the problem is on Client B ... what happens if you do an ls -la from Client B and then do the same on Server A - is the...
  11. pcorchary

    Access to xstart

    Some more detail would help us answer. - linux version - Xfree version - does X start on the VGA console when you type use xstart? - what remote start method are you using from Exceed? (XDMP, etc.) - does your site require SSH tunneling for X (in that is the case them all remote invocation for x...
  12. pcorchary

    NFS mount failure

    /etc/export resource filtering works just find on RH7.2 and Mandrake 8.1. What I'm having a problem with is NOT a function of that layer of NFS, because even doing: /share 192.168.*(insecure,rw) or /share *.XXXXX.com(insecure,rw) doesn't fix it ... there's something enforcing the reverse DNS...
  13. pcorchary

    NFS mount failure

    OK ... so I'm still having problems with this, and it is somehow tied to Red Hat 8.0!!! No matter what, I get: Sep 4 12:10:35 dco rpc.mountd: refused mount request from 192.168.164.129 (unassigned.corp.xxxxx.com) for /spare (/spare): no DNS forward lookup. As soon as I add the client IP to DNS...
  14. pcorchary

    NFS mount failure

    I need serious guru help :-) I've been doing Unix for 15+ years and Linux now for 3, and I can't figure this out ... Two boxes, A and B. Box A needs to NFS mount Server B. Box B does NOT have DNS or entry in /etc/hosts (and it won't at this point - it's being built). Box A and B can ping each...
  15. pcorchary

    DHCPCD Problem

    What kind of error do you get? Can you simply ping the box? If so, then is telnet running on the target, or is it blocked in services, or by a firewall (besides -- use SSH anyway, it's much more secure).
  16. pcorchary

    FTP access Suse 7.3

    Well ... your user account name needs to appear in the ftpusers file, that's one thing. Another might be if you have a firewall configured on that Suse server that is configured to block incoming FTP?
  17. pcorchary

    SIMPLE 'blog' for INTRANET Diary/Journal/Log

    I briefly looked at Coranto, and that looks pretty good ... I'll look more tomorrow. Wiki's are something that I've heard of, but never understood. Maybe kind of heavyweight for what i need? philc
  18. pcorchary

    SIMPLE 'blog' for INTRANET Diary/Journal/Log

    I'm looking for a really simple software that would allow for a departmental journal or periodic posting of information on an intranet page. It should display in a web browser (duh). Requirements: - open source - runs on linux/apache - php OK, perl preferred, NO DB - browser entry, NOT text...
  19. pcorchary

    difference in time for syslog cron script

    The log files do NOT get trimmed -- the rotate semi-regularly, but /vart/adm/messages in our environment are kept as messages.0, messages.1, etc. for at least 6 months. Recording that last line processed is an interesting thought. I also considered using /bin/logger to write a marker line into...
  20. pcorchary

    difference in time for syslog cron script

    I am in search of a portable (sh) method for differential times, that includes dates. Essentially I need an accurate way to determining what time it was "N" minutes ago ... The core problem is to scavange Solaris syslog /var/adm/messages for certain things, but only from the entries...

Part and Inventory Search

Back
Top