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 Mike Lewis 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. 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...
  16. predamarcel

    Is $_POST writable and an acceptable practice?

    Hi, you can add the variables but is not a good practice. Better: create a copy of $_POST, add the keys which you want to the new variable and process it. $c_post = $_POST; // work with $c_post Regards ___ http://marcel.rdscv.ro/ ____
  17. predamarcel

    Form Action: mailto

    Hi, you should use as METHOD "GET", and the "subject" should be the name of one of the input fields <html dir="ltr"> <head> <meta http-equiv="Content-Language" content="en-us"> <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"> <title>Simple Form</title> </head> <body>...
  18. predamarcel

    sendmail &gt;&gt;&gt;No recipient addresses found in header

    dont use < >, just leave: .... To: tomail\@bla.com .... the same for `From' header Regards ___ http://marcel.rdscv.ro/ ____
  19. predamarcel

    Object Expected????

    Hmmm... Looks like you are trying to call a PHP function from Javascript. Just right-click on your browser-> ViewSource, and look for the insertrow2 function's definition. You will not find it. PM ___ http://marcel.rdscv.ro/ ____
  20. predamarcel

    Dynamic text in specific cell\s using javascript

    check I have created 2 arrays: cd_desc_array, and tip_desc_array also I have assigned ID=tip_des , ID=cd_des on two TDs. And I have change the name of the form from `form' => `formx' I guess that this was your problem, the name `form' for that form. It is not a good habit to set the names...

Part and Inventory Search

Back
Top