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!

Recent content by predamarcel

  1. predamarcel

    Button text placement

    Hi Patrick Most likely the text on the button is left justified, but probable the button is centered in the grid's cell. Must have a look on http://www.tcl.tk/man/tcl/TkCmd/grid.htm , the -sticky option. Also, a piece of code will hel us. BR, Marcel ___ http://www.notnull.ro/log ____
  2. predamarcel

    Carp module oddities

    Hi Keith, It looks like a different config of the web server. Maybe the webserver is configured to show the fatal errors on the pages. Making errors visible to the world is a security risk. Not possible to access the error log file ? BR, Marcel ___ http://www.notnull.ro/log ____
  3. predamarcel

    search for a find with extension in any directory using TCL

    Hi Tony, What did you really try and was too slow ? A command like glob -directory <your_dir> *.txt should e OK BR, Marcel ___ http://www.notnull.ro/log ____
  4. predamarcel

    Multiple Submit Buttons

    Hi there, array_keys() always returns an array to. So, if you are sure that $_POST['action'] has always exactly one element you can do something like: $all_keys = array_keys($_POST['action']) switch ($all_keys[0]) { case 'AddItem': $CartAction = "AddItem"; break; case 'DeleteItem'...
  5. predamarcel

    Tcl: how to split string by blank lines

    Hi there, The split procedure will split by any of chars. So practically [split $x "\n\n"] is the same as [split $x "\n\n"] One idea will be to replace the "\n\n" sequence with a char that does not exists in your string a nd to use the split after. E.g. "\x00" is a good one. Let's assume that...
  6. predamarcel

    $1 - can it be 'reset to null' ?

    Hi there, The sortest way to reset all $N variable is to call for a match like: /.?/; This will ever be successful and all the matching vars are reset. BR, Marcel ___ http://www.notnull.ro/log ____
  7. predamarcel

    sort files by modification time

    hi, If ypu dont have a huge number of files, a command like: ls -ltr `find /path/to/dir -type f` should work. ___ http://marcel.rdscv.ro/ ____
  8. predamarcel

    Can't Assign - Cache Dirty

    Thank you very much. One question, if I'll set the cache Off (read and write) this probleme will not ocurre any more. Regards, Marcel ___ http://marcel.rdscv.ro/ ____
  9. predamarcel

    Can't Assign - Cache Dirty

    Which backup?! :) So, there are no chance to retrieve data from the disks ? Regards, Marcel ___ http://marcel.rdscv.ro/ ____
  10. predamarcel

    Can't Assign - Cache Dirty

    Hi, I'm new on the clarIIon. We have a clarrion disk array (cx series). We have reloacate it (with 4 HP-UX servers) two weeks ago. This morning the disk array was innacasible. After reebootine the server which own/mount the diskarray volumes, we found this in syslog file: ############## Jun 9...
  11. predamarcel

    shutdown, new on Clariion EMC

    Thanks a lot! Marcel ___ http://marcel.rdscv.ro/ ____
  12. predamarcel

    shutdown, new on Clariion EMC

    sorry, no X GUI, only command line access. So, I need a command. I'm sure that the Navisphere agent is running. l1000db1 # ps -ef | grep -i navi root 1767 1 0 May 22 ? 20:01 /opt/Navisphere/bin/naviagent -f /etc/Navisphere/agent.confi root 8031 7771 0 15:04:27 pts/tb...
  13. predamarcel

    shutdown, new on Clariion EMC

    a new question: how can I turn off write cache thru Navisphere ? which is the command ? Regards, Marcel ___ http://marcel.rdscv.ro/ ____
  14. predamarcel

    shutdown, new on Clariion EMC

    Thanks, Marcel ___ http://marcel.rdscv.ro/ ____
  15. predamarcel

    shutdown, new on Clariion EMC

    Hi, I'm new on Clariion EMC stuff. Next day our company should relocate a feew unix servers + a Clariion diskarray, (CX series I think). My question is: how can I do a proper shoutdown of the disk array? All that I know is that after servers shutdown I have to wait a feew minutes untill the...

Part and Inventory Search

Back
Top