Can't submit a form.


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Can't submit a form.
# 15  
Old 02-11-2013
Quote:
Originally Posted by tip78
lolwut?
truss

strace

tusc -. trace UNIX system calls

Found after 5 seconds of heavy-duty Google use. "strace" and "truss" are tools used almost daily, "tusc" was news to me as i do not work on HP-Ux.

Google can be found at "www.google.com" with your favourite web browser.

Glad to be of help.

bakunin
# 16  
Old 02-11-2013
Quote:
Originally Posted by bakunin
truss

strace

tusc -. trace UNIX system calls

Found after 5 seconds of heavy-duty Google use. "strace" and "truss" are tools used almost daily, "tusc" was news to me as i do not work on HP-Ux.

Google can be found at "www.google.com" with your favourite web browser.

Glad to be of help.

bakunin

i know dude, thanks
but HOW they can help me here?
tip78
# 17  
Old 02-12-2013
They are very educational, and you can see exactly where it goes off the rails: where it gets the host, what host it is looking up, where it looks.
# 18  
Old 02-12-2013
Quote:
Originally Posted by DGPickett
They are very educational, and you can see exactly where it goes off the rails: where it gets the host, what host it is looking up, where it looks.
firebug in firefox shows me all this
tip78
# 19  
Old 02-12-2013
firebug tells you what firefox is willing to tell you. These strace tools work at a deeper level.
# 20  
Old 02-12-2013
hmm
i never used it for that
so what i should do then?
tip78
# 21  
Old 02-12-2013
You can trace your server side, too.

I turn on lots of friendly options faelo wall rall xall for fork args, environment, threads, a trace file, i/o full data. You can either pick a running process with -p or put a command on the command line. Sometimes it gets cranky, so I do this:
Code:
$ (
 sleep 2
 run_test_command
)& strace -faelo /tmp/this.tr -rall -wall -p $!

You trace from the end of sleep 2, watch the shell fire up your command, and on. When the bg proc dies, strace exits. It works in reverse for interactive:
Code:
$ strace -faelo /tmp/this.tr -rall -wall -p $$ & 
$ run_test_command


Last edited by DGPickett; 02-12-2013 at 04:05 PM..
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Trying to submit web form content to a shell script

Hi I was hoping some one could help me with a problem I have. I am trying to collect some information from a web form and save it to a text file. I found an example on this site that is sort of what I am trying to accomplish, the shell script bellow should echo the input back to the browser... (0 Replies)
Discussion started by: Paul Walker
0 Replies

2. Shell Programming and Scripting

Exec submit form in bash script

Hi All, I'm new in forum. Many congratulations to everyone for all work. I'm not an expert in bash script I've a problem with a sh file. The sh file run every t minuts and it read data from txt file and then compile form. Finally, the user, from the web browser click on send. The script... (0 Replies)
Discussion started by: Herbert
0 Replies

3. Programming

Html form to submit data to bash script

hi all, im going to design a web html form so users can input what username and password they want to make the ftp account, once they enter in a username and password they click on the submit button and it submits it to a bash script and then the bash script will run and finish of making the... (3 Replies)
Discussion started by: robertkwild
3 Replies

4. UNIX for Dummies Questions & Answers

How to submit form on an php webpage from command line?

Hello, i have page domain.com/form.php the form fields on form.php are named: name=ipaddress name=port and submit button is named: submit i want to ask how the linux command will look like to submit the form filled with: ipaddress: 127.0.0.1 port: 80 I tried various curl and... (5 Replies)
Discussion started by: postcd
5 Replies

5. Shell Programming and Scripting

Transpose Data form Different form

HI Guys, I have data in File A.txt RL03 RL03_A_1 RL03_B_1 RL03_C_1 RL03 -119.8 -119.5 -119.5 RL07 RL07_A_1 RL07_B_1 RL07_C_1 RL07 -119.3 -119.5 -119.5 RL15 RL15_A_1 RL15_C_1 RL15 -120.5 -119.4 RL16... (2 Replies)
Discussion started by: asavaliya
2 Replies

6. Shell Programming and Scripting

Using cURL to submit a post form

I am trying to write a shell script to use curl in order to automate downloading data from a website. The URL with the post form is here: http://try-db.org/de/InfoBySpecies.php . I have a list of about 1800 different species I want to check. For Example, choose the first species and use the... (2 Replies)
Discussion started by: hansvg
2 Replies

7. Shell Programming and Scripting

using wget to submit a form on linksys router

I'm trying to use wget to submit a form. I have tried to dig out what is actually being "posted" and where, using tamperdata (see below). http://ubuntuforums.org/attachment.php?attachmentid=109123&d=1239224127 Here is my wget command: wget --http-user=xyz --http-password=xyz... (1 Reply)
Discussion started by: mike909
1 Replies

8. Shell Programming and Scripting

PHP Help with Form Submit

Hi, I have a custom HTML form that has a couple radio buttons and a text field that requires a number. I'm not a php programmer and could use some help with putting together php code to calculate a total based on the radio button selection and the text field number. ... (3 Replies)
Discussion started by: nck
3 Replies

9. UNIX for Advanced & Expert Users

Changing Unix form to Microsoft Word form to be able to email it to someone.

Please someone I need information on how to change a Unix form/document into a microsoft word document in order to be emailed to another company. Please help ASAP. Thankyou :confused: (8 Replies)
Discussion started by: Cheraunm
8 Replies
Login or Register to Ask a Question